2 Star 0 Fork 0

BOBO/创想视频核心服务

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base_new.go 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
zhouyp 提交于 2024-07-16 14:51 . init:初始化内框代码
package base
import (
"context"
"gitee.com/bobo-rs/innovideo-services/framework/model"
)
type (
// tblBaseModel 数据表继承基础查询Model接口
tblBaseModel interface {
ListAndTotal(ctx context.Context, in model.CommonListAndTotalInput, pointer interface{}, total *int) error
Scan(ctx context.Context, where, pointer interface{}) error
ScanOmitEmpty(ctx context.Context, where, pointer interface{}) error
Total(ctx context.Context, where interface{}) (int, error)
TotalPri(ctx context.Context, id ...uint) (int, error)
Exists(ctx context.Context, where interface{}) (bool, error)
ExistsPri(ctx context.Context, id uint) (bool, error)
Update(ctx context.Context, where, data interface{}) error
UpdatePri(ctx context.Context, id uint, column string, value interface{}) error
Delete(ctx context.Context, where interface{}) error
DeletePri(ctx context.Context, id uint) error
Save(ctx context.Context, data interface{}) error
DetailPri(ctx context.Context, id uint, pointer interface{}) error
}
// TblBaseService 数据表基础查询操作
TblBaseService struct {
tblBaseModel
Table string
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bobo-rs/innovideo-services.git
git@gitee.com:bobo-rs/innovideo-services.git
bobo-rs
innovideo-services
创想视频核心服务
v1.0.7

搜索帮助