From 446e2e250e2072e376cec0b4e099cdb1aaa84ac0 Mon Sep 17 00:00:00 2001 From: shenjiachi Date: Wed, 11 Dec 2024 15:02:38 +0800 Subject: [PATCH] update --- src/model/fin_withdraw_setting.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/model/fin_withdraw_setting.go b/src/model/fin_withdraw_setting.go index 2266bf0..36a1d1a 100644 --- a/src/model/fin_withdraw_setting.go +++ b/src/model/fin_withdraw_setting.go @@ -17,6 +17,7 @@ type FinWithdrawSetting struct { PendingOrdersIsCanApply int `json:"pending_orders_is_can_apply" xorm:"not null comment('存在待处理记录是否允许再次申请提现(0:禁止,1:允许)') TINYINT(1)"` ConditionIsOpen int `json:"condition_is_open" xorm:"not null comment('提现条件是否开启(0:关闭, 1:开启)') TINYINT(1)"` FirstWithdrawSet string `json:"first_withdraw_set" xorm:"not null comment('首次提现设置') TEXT"` + Tips string `json:"tips" xorm:"not null comment('提示') TEXT"` CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('申请时间') TIMESTAMP"` UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('处理时间') TIMESTAMP"` }