This commit is contained in:
Robin 2024-11-21 17:44:53 +08:00
parent 213d7b891c
commit 3e7cdc9712
1 changed files with 1 additions and 0 deletions

View File

@ -1651,6 +1651,7 @@ func (m *Mongo) GetMomentList(ctx *gin.Context, req *momentproto.OpListReq) ([]*
func (m *Mongo) GetMomentListByStatus(ctx *gin.Context, status int64, limit, offset int) ([]*dbstruct.Moment, error) {
list := make([]*dbstruct.Moment, 0)
col := m.getColMoment()
// 这个接口是用来查审核任务的前置接口,所以必须要把删除的也查出来
query := qmgo.M{
"status": status,
}