矫正金额

master
wanghb 1 year ago
parent d50b04e8a9
commit 16c4c29328

@ -107,7 +107,7 @@ public class ContractInvestmentController {
public ResultEntity<Double> totalInvestAmount(@ApiParam("流程ID") @RequestParam String flowId, public ResultEntity<Double> totalInvestAmount(@ApiParam("流程ID") @RequestParam String flowId,
@ApiParam("总投资额度") @RequestParam Double totalInvest) { @ApiParam("总投资额度") @RequestParam Double totalInvest) {
//金额不低于100万 //金额不低于100万
if (10000000 > totalInvest) { if (1000000 > totalInvest) {
return new ResultEntity(HttpStatus.BAD_REQUEST, "金额不能低于100万"); return new ResultEntity(HttpStatus.BAD_REQUEST, "金额不能低于100万");
} }
//查询估值 //查询估值

Loading…
Cancel
Save