浏览代码

update

master
shenjiachi 1 天前
父节点
当前提交
97ee26e003
共有 5 个文件被更改,包括 22 次插入3 次删除
  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 查看文件

@@ -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 查看文件

@@ -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 查看文件

@@ -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 查看文件

@@ -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 查看文件

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


正在加载...
取消
保存