diff --git a/src/model/fin_withdraw_setting.go b/src/model/fin_withdraw_setting.go index 4e2a4cf..75560b6 100644 --- a/src/model/fin_withdraw_setting.go +++ b/src/model/fin_withdraw_setting.go @@ -2,7 +2,7 @@ package model type FinWithdrawSetting struct { Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"` - FrequencySet int `json:"frequency_set" xorm:"not null comment('频率设置(0:日 1:周 2:月 3:年)') TINYINT(3)"` + FrequencySet string `json:"frequency_set" xorm:"not null comment('频率设置') TEXT"` WithdrawType int `json:"withdraw_type" xorm:"not null default 1 comment('提现方式(1:支付宝 2:微信)') TINYINT(1)"` VipLevelLimit int `json:"vip_level_limit" xorm:"not null default 0 comment('提现等级限制') INT(11)"` IsRealName int `json:"is_real_name" xorm:"not null default 0 comment('是否实名(0:否 1:是)') TINYINT(1)"`