|
|
@@ -2,7 +2,7 @@ package md |
|
|
|
|
|
|
|
type GetWithdrawSettingResp struct { |
|
|
|
Id int64 `json:"id"` |
|
|
|
FrequencySet string `json:"frequency_set"` // 频率设置 |
|
|
|
FrequencySet int `json:"frequency_set"` // 频率设置(0:日 1:周 2:月 3:年) |
|
|
|
WithdrawType int `json:"withdraw_type"` // 提现方式(1:支付宝 2:微信) |
|
|
|
VipLevelLimit int `json:"vip_level_limit"` // 提现等级限制 |
|
|
|
IsRealName int `json:"is_real_name"` // 是否实名(0:否 1:是) |
|
|
@@ -19,7 +19,7 @@ type GetWithdrawSettingResp struct { |
|
|
|
|
|
|
|
type UpdateWithdrawSettingReq struct { |
|
|
|
Id int64 `json:"id,required"` |
|
|
|
FrequencySet string `json:"frequency_set"` // 频率设置 |
|
|
|
FrequencySet int `json:"frequency_set"` // 频率设置(0:日 1:周 2:月 3:年) |
|
|
|
WithdrawType int `json:"withdraw_type"` // 提现方式(1:支付宝 2:微信) |
|
|
|
VipLevelLimit int `json:"vip_level_limit"` // 提现等级限制 |
|
|
|
IsRealName int `json:"is_real_name"` // 是否实名(0:否 1:是) |
|
|
|