From 9b9bbf3c491fbe7f202eb794d2741339ee10a7df Mon Sep 17 00:00:00 2001 From: shenjiachi Date: Mon, 25 Nov 2024 16:10:46 +0800 Subject: [PATCH] update --- src/model/fin_withdraw_setting.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)"`