From 1f1b3d2101e4f817b19b48b633c217c75130aaa4 Mon Sep 17 00:00:00 2001 From: shenjiachi Date: Sat, 21 Dec 2024 19:28:43 +0800 Subject: [PATCH] update --- src/model/egg_energy_team_assistance.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/model/egg_energy_team_assistance.go b/src/model/egg_energy_team_assistance.go index 30f0a70..0724a9c 100644 --- a/src/model/egg_energy_team_assistance.go +++ b/src/model/egg_energy_team_assistance.go @@ -6,6 +6,7 @@ type EggEnergyTeamAssistance struct { AssistedNum int `json:"assisted_num" xorm:"not null default 0 comment('助力人数') INT(11)"` AssistedTimes int `json:"assisted_times" xorm:"not null default 0 comment('助力次数') INT(11)"` RewardScore string `json:"reward_score" xorm:"not null default 0.00000000 comment('奖励积分数量') DECIMAL(20,8)"` + SignId int64 `json:"sign_id" xorm:"not null default 0 comment('签到id') BIGINT(20)"` Date string `json:"date" xorm:"not null default '0000-00-00' comment('日期') CHAR(50)"` CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"` UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`