1 #821
|
@ -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) {
|
func (m *Mongo) GetMomentListByStatus(ctx *gin.Context, status int64, limit, offset int) ([]*dbstruct.Moment, error) {
|
||||||
list := make([]*dbstruct.Moment, 0)
|
list := make([]*dbstruct.Moment, 0)
|
||||||
col := m.getColMoment()
|
col := m.getColMoment()
|
||||||
|
// 这个接口是用来查审核任务的前置接口,所以必须要把删除的也查出来
|
||||||
query := qmgo.M{
|
query := qmgo.M{
|
||||||
"status": status,
|
"status": status,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue