swagger配置 数据库初始化结构调整

This commit is contained in:
pixelqm
2019-09-02 18:58:51 +08:00
parent f6a0b05ece
commit 50cac8f02d
9 changed files with 76 additions and 24 deletions

View 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{})
}