Commit 3187369b authored by LSL's avatar LSL

还款限制

parent 129fe717
......@@ -53,6 +53,8 @@ public class BackedCommand extends AbstractCommand {
public JsonResult execute() {
String request = RuntimeContextHolder.currentRuntimeContext().getRequestBody();
BackedRequest backedRequest = JSONObject.parseObject(request, BackedRequest.class);
ArrayList<BackedDetail> list = backedRequest.getList();
Assert.isFalse(list == null || list.size()==0, "还款数据异常!");
//查询还款编号
RepayModel repayModel = loanRepayComponent.getByBackedNo(backedRequest.getBackedNo());
Assert.isFalse(repayModel != null, "还款单已存在!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment