1 Star 0 Fork 0

gabbble/app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
applflytekkeyinfomodel.go 697 Bytes
一键复制 编辑 原始数据 按行查看 历史
haozhiyuan0204 提交于 2023-11-08 12:14 +08:00 . modify
package mysql
import "github.com/zeromicro/go-zero/core/stores/sqlx"
var _ AppLflytekKeyInfoModel = (*customAppLflytekKeyInfoModel)(nil)
type (
// AppLflytekKeyInfoModel is an interface to be customized, add more methods here,
// and implement the added methods in customAppLflytekKeyInfoModel.
AppLflytekKeyInfoModel interface {
appLflytekKeyInfoModel
}
customAppLflytekKeyInfoModel struct {
*defaultAppLflytekKeyInfoModel
}
)
// NewAppLflytekKeyInfoModel returns a model for the database table.
func NewAppLflytekKeyInfoModel(conn sqlx.SqlConn) AppLflytekKeyInfoModel {
return &customAppLflytekKeyInfoModel{
defaultAppLflytekKeyInfoModel: newAppLflytekKeyInfoModel(conn),
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gabbble/app.git
git@gitee.com:gabbble/app.git
gabbble
app
app
9a5bcbd7ccf5

搜索帮助