You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
324 B
9 lines
324 B
package model
|
|
|
|
// 因为我也不确定项目要不要多人维护 所以定义了CURD接口 凡是对数据库进行简单CURD操作 请实现此接口 默认首位返回 error
|
|
type CURD interface {
|
|
Create() (error, interface{})
|
|
Updata() (error, interface{})
|
|
Read() (error, interface{})
|
|
Delete() (error, interface{})
|
|
}
|