swagger配置 数据库初始化结构调整
This commit is contained in:
9
QMPlusServer/model/modelInterface/interface.go
Normal file
9
QMPlusServer/model/modelInterface/interface.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package modelInterface
|
||||
|
||||
// 因为我也不确定项目要不要多人维护 所以定义了CURD接口 凡是对数据库进行简单CURD操作 请实现此接口 默认首位返回 error
|
||||
type CURD interface {
|
||||
Create() (error, interface{})
|
||||
Updata() (error, interface{})
|
||||
Read() (error, interface{})
|
||||
Delete() (error, interface{})
|
||||
}
|
Reference in New Issue
Block a user