代码拉取完成,页面将自动刷新
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
}
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。