mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-04 13:46:37 +08:00
feat: 机器定时删除终端操作记录
This commit is contained in:
@@ -20,3 +20,11 @@ func (m *machineTermOpRepoImpl) GetPageList(condition *entity.MachineTermOp, pag
|
||||
qd := gormx.NewQuery(condition).WithCondModel(condition).WithOrderBy(orderBy...)
|
||||
return gormx.PageQuery(qd, pageParam, toEntity)
|
||||
}
|
||||
|
||||
// 根据条件获取记录列表
|
||||
func (m *machineTermOpRepoImpl) SelectByQuery(cond *entity.MachineTermOpQuery) ([]*entity.MachineTermOp, error) {
|
||||
qd := gormx.NewQuery(m.GetModel()).Le("create_time", cond.StartCreateTime)
|
||||
var res []*entity.MachineTermOp
|
||||
err := gormx.ListByQueryCond(qd, &res)
|
||||
return res, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user