Browse Source

update

master
shenjiachi 1 month ago
parent
commit
c74cfffaf0
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      app/hdl/financial_center/hdl_withdraw.go
  2. +2
    -2
      app/md/financial_center/md_withdraw.go
  3. +1
    -1
      go.mod

+ 1
- 1
app/hdl/financial_center/hdl_withdraw.go View File

@@ -31,7 +31,7 @@ func GetWithdrawSetting(c *gin.Context) {
if setting == nil {
now := time.Now()
m := model.FinWithdrawSetting{
FrequencySet: "",
FrequencySet: 0,
WithdrawType: 0,
VipLevelLimit: 0,
IsRealName: 0,


+ 2
- 2
app/md/financial_center/md_withdraw.go View File

@@ -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:是)


+ 1
- 1
go.mod View File

@@ -33,7 +33,7 @@ require (
)

require (
code.fnuoos.com/EggPlanet/egg_models.git v0.2.1-0.20241125064737-27042dbc26da
code.fnuoos.com/EggPlanet/egg_models.git v0.2.1-0.20241125075604-63fa853aeb33
code.fnuoos.com/EggPlanet/egg_system_rules.git v0.0.4-0.20241125064517-f490fbb9b9a0
code.fnuoos.com/go_rely_warehouse/zyos_go_es.git v1.0.1-0.20241118083738-0f22da9ba0be
code.fnuoos.com/go_rely_warehouse/zyos_go_mq.git v0.0.5


Loading…
Cancel
Save