Selaa lähdekoodia

update

master
shenjiachi 1 päivä sitten
vanhempi
commit
97ee26e003
5 muutettua tiedostoa jossa 22 lisäystä ja 3 poistoa
  1. +4
    -0
      app/hdl/hdl_points_center.go
  2. +4
    -0
      app/hdl/hdl_wallet.go
  3. +5
    -1
      docs/docs.go
  4. +5
    -1
      docs/swagger.json
  5. +4
    -1
      docs/swagger.yaml

+ 4
- 0
app/hdl/hdl_points_center.go Näytä tiedosto

@@ -471,6 +471,10 @@ func ExchangeEnergy(c *gin.Context) {
e.OutErr(c, e.ERR_BALANCE_NOT_ENOUGH, nil)
return
}
if utils.StrToFloat64(req.EnergyAmount) <= 0 {
e.OutErr(c, 400, e.NewErr(400, "请输入能量值"))
return
}

// 5. 调用降价公式
err, calcPriceReductionFormula := egg_energy.CalcPriceReductionFormula(req.EnergyAmount, eggEnergyCoreData, utils.IntToStr(user.Level), *setting)


+ 4
- 0
app/hdl/hdl_wallet.go Näytä tiedosto

@@ -167,6 +167,10 @@ func WithdrawApply(c *gin.Context) {
e.OutErr(c, err1.Code, err1.Error())
return
}
if utils.StrToFloat64(req.Amount) <= 0 {
e.OutErr(c, 400, e.NewErr(400, "请输入金额"))
return
}
user := svc.GetUser(c)
var userId, openId string
var kind int


+ 5
- 1
docs/docs.go Näytä tiedosto

@@ -5692,7 +5692,11 @@ const docTemplate = `{
"type": "string"
},
"total_egg_energy": {
"description": "总蛋蛋能量",
"description": "总蛋蛋能量 (个人+团队+预估)",
"type": "string"
},
"total_egg_energy_value": {
"description": "总蛋蛋能量价值",
"type": "string"
}
}


+ 5
- 1
docs/swagger.json Näytä tiedosto

@@ -5686,7 +5686,11 @@
"type": "string"
},
"total_egg_energy": {
"description": "总蛋蛋能量",
"description": "总蛋蛋能量 (个人+团队+预估)",
"type": "string"
},
"total_egg_energy_value": {
"description": "总蛋蛋能量价值",
"type": "string"
}
}


+ 4
- 1
docs/swagger.yaml Näytä tiedosto

@@ -892,7 +892,10 @@ definitions:
description: 总蛋蛋积分
type: string
total_egg_energy:
description: 总蛋蛋能量
description: 总蛋蛋能量 (个人+团队+预估)
type: string
total_egg_energy_value:
description: 总蛋蛋能量价值
type: string
type: object
md.HomePageWatchAdRuleResp:


Ladataan…
Peruuta
Tallenna