1 #827
|
@ -1653,7 +1653,8 @@ func (m *Mongo) GetMomentListByStatus(ctx *gin.Context, status int64, limit, off
|
||||||
col := m.getColMoment()
|
col := m.getColMoment()
|
||||||
// 这个接口是用来查审核任务的前置接口,所以必须要把删除的也查出来
|
// 这个接口是用来查审核任务的前置接口,所以必须要把删除的也查出来
|
||||||
query := qmgo.M{
|
query := qmgo.M{
|
||||||
"status": status,
|
"status": status,
|
||||||
|
"del_flag": 0,
|
||||||
}
|
}
|
||||||
err := col.Find(ctx, query).Sort("-ut").Skip(int64(offset)).Limit(int64(limit)).All(&list)
|
err := col.Find(ctx, query).Sort("-ut").Skip(int64(offset)).Limit(int64(limit)).All(&list)
|
||||||
if err == qmgo.ErrNoSuchDocuments {
|
if err == qmgo.ErrNoSuchDocuments {
|
||||||
|
|
Loading…
Reference in New Issue