1 #821

Merged
chenhao merged 1 commits from BUG-20241119 into test 2024-11-21 17:45:16 +08:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 3e7cdc9712 - Show all commits

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,
}