| | |
| | | if(ObjectUtil.isEmpty(mallMoneyFlow)){ |
| | | return new FebsResponse().fail().message("系统繁忙,请刷新后重试"); |
| | | } |
| | | if(1 != mallMoneyFlow.getStatus()){ |
| | | return new FebsResponse().fail().message("当前状态不是提现中"); |
| | | } |
| | | mallMoneyFlow.setStatus(2); |
| | | mallMoneyFlowMapper.insert(mallMoneyFlow); |
| | | mallMoneyFlowMapper.updateById(mallMoneyFlow); |
| | | return new FebsResponse().success(); |
| | | } |
| | | |
| | |
| | | if(ObjectUtil.isEmpty(mallMoneyFlow)){ |
| | | return new FebsResponse().fail().message("系统繁忙,请刷新后重试"); |
| | | } |
| | | if(1 != mallMoneyFlow.getStatus()){ |
| | | return new FebsResponse().fail().message("当前状态不是提现中"); |
| | | } |
| | | mallMoneyFlow.setStatus(3); |
| | | mallMoneyFlowMapper.insert(mallMoneyFlow); |
| | | mallMoneyFlowMapper.updateById(mallMoneyFlow); |
| | | return new FebsResponse().success(); |
| | | } |
| | | |