diff --git a/rule/happy_orchard/happy_orchard_give_water.go b/rule/happy_orchard/happy_orchard_give_water.go index 1ff4fa5..add82c7 100644 --- a/rule/happy_orchard/happy_orchard_give_water.go +++ b/rule/happy_orchard/happy_orchard_give_water.go @@ -46,13 +46,14 @@ func HappyOrchardGiveWater(eg *xorm.Engine, masterId string, uid int, isMultiple if residueWatchAdNum < 0 { residueWatchAdNum = zhios_order_relate_utils.StrToInt(videoRewardSystem.RewardTotalNum) } - _, err2 := eg.Insert(&models.HappyOrchardUserWatchRecords{ + UserWatchRecords = &models.HappyOrchardUserWatchRecords{ Uid: uid, NextWatchAdDate: now.Add(time.Hour * time.Duration(zhios_order_relate_utils.StrToInt(videoRewardSystem.EachRoundHour))), ResidueWatchAdNum: zhios_order_relate_utils.StrToInt(videoRewardSystem.RewardTotalNum) - 1, CreateAt: now, UpdateAt: now, - }) + } + _, err2 := eg.Insert(UserWatchRecords) if err2 != nil { return err2 }