Merge pull request 'by Robin at 20240207;' (#111) from feat-20240117-001-Robin into test
Reviewed-on: #111
This commit is contained in:
commit
cc576a5228
|
@ -2791,6 +2791,7 @@ func (m *Mongo) GetAlignedImageAuditTaskList(ctx *gin.Context, req *alignedaudit
|
||||||
list := make([]*dbstruct.ImageAuditTask, 0)
|
list := make([]*dbstruct.ImageAuditTask, 0)
|
||||||
col := m.getColImageAuditTask()
|
col := m.getColImageAuditTask()
|
||||||
query := qmgo.M{
|
query := qmgo.M{
|
||||||
|
"is_aligned": consts.ImageAuditIsAligned_Yes,
|
||||||
"del_flag": 0,
|
"del_flag": 0,
|
||||||
}
|
}
|
||||||
if req.RouteUrl != nil {
|
if req.RouteUrl != nil {
|
||||||
|
@ -2826,6 +2827,7 @@ func (m *Mongo) GetAlignedTextAuditTaskList(ctx *gin.Context, req *alignedauditt
|
||||||
list := make([]*dbstruct.TextAuditTask, 0)
|
list := make([]*dbstruct.TextAuditTask, 0)
|
||||||
col := m.getColTextAuditTask()
|
col := m.getColTextAuditTask()
|
||||||
query := qmgo.M{
|
query := qmgo.M{
|
||||||
|
"is_aligned": consts.ImageAuditIsAligned_Yes,
|
||||||
"del_flag": 0,
|
"del_flag": 0,
|
||||||
}
|
}
|
||||||
if req.RouteUrl != nil {
|
if req.RouteUrl != nil {
|
||||||
|
|
Loading…
Reference in New Issue