by Robin at 20240425

This commit is contained in:
Leufolium 2024-04-25 17:20:35 +08:00
parent 197fb8e87e
commit 8f574d73fb
1 changed files with 3 additions and 3 deletions

View File

@ -4705,13 +4705,13 @@ func (m *Mongo) CreateZoneThirdPartnerHis(ctx *gin.Context, zone_third_partner *
// 动态创建频次
func (m *Mongo) GetZoneMomentCreateTimes(ctx *gin.Context, mid int64) (momentCreateTimes *dbstruct.ZoneMomentCreateTimes, err error) {
col := m.getColZoneMomentCreateTimes()
momentCreateTimesInstance := dbstruct.ZoneMomentCreateTimes{}
err = col.Find(ctx, qmgo.M{"_id": mid}).One(&momentCreateTimes)
momentCreateTimes = &dbstruct.ZoneMomentCreateTimes{}
err = col.Find(ctx, qmgo.M{"_id": mid}).One(momentCreateTimes)
if err == qmgo.ErrNoSuchDocuments {
err = nil
return nil, err
}
return &momentCreateTimesInstance, err
return momentCreateTimes, err
}
func (m *Mongo) GetAndUpdateZoneMomentCreateTimes(ctx *gin.Context, mid int64, cType int64) (momentCreateTimes *dbstruct.ZoneMomentCreateTimes, err error) {