Commit 9942e54d authored by yangyang's avatar yangyang

fix(业务开通):fixed Bug-16289

parent 53bfc8d6
...@@ -231,7 +231,10 @@ public class JyjcOpeningApplicationServiceImpl extends BaseService<JyjcOpeningAp ...@@ -231,7 +231,10 @@ public class JyjcOpeningApplicationServiceImpl extends BaseService<JyjcOpeningAp
return false; return false;
} }
UpdateWrapper<JyjcOpeningApplication> updateWrapper = new UpdateWrapper<>(); UpdateWrapper<JyjcOpeningApplication> updateWrapper = new UpdateWrapper<>();
updateWrapper.set("status", FlowStatusEnum.TO_BE_DISCARD.getCode()).set("status_name", FlowStatusEnum.TO_BE_DISCARD.getName()).in("SEQUENCE_NBR", ids); updateWrapper.set("status", FlowStatusEnum.TO_BE_DISCARD.getCode())
.set("status_name", FlowStatusEnum.TO_BE_DISCARD.getName())
.set("remark", "到期作废")
.in("SEQUENCE_NBR", ids);
return this.update(updateWrapper); return this.update(updateWrapper);
} }
......
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