Commit d51deb04 authored by 王向伟's avatar 王向伟

shouldAt添加默认值

parent 9742a1e8
......@@ -110,13 +110,17 @@ public class Repayment {
//java时间戳13位
String shouldAt = DateUtil.format(new Date(dueTime * 1000), DateUtil.DATE_FORMAT_1);
repayment.setShouldAt(shouldAt);
}else {
repayment.setShouldAt("");
}
Long repayTime = repaymentPlanItem.getRepayTime();
if (repayTime != null) {
if (repayTime != null && repayTime > 0) {
//java时间戳13位
String repaymentReceivedAt = DateUtil.format(new Date(repayTime * 1000), DateUtil.DATE_FORMAT_1);
repayment.setRepaymentReceivedAt(repaymentReceivedAt);
}else {
repayment.setRepaymentReceivedAt("");
}
Integer repaymentStatus = repaymentPlanItem.getRepaymentStatus();
......
......@@ -53,7 +53,7 @@ public class OrderServiceImpl implements IOrderService {
flowNode.setName("渠道用户信息导入");
flowNode.setStatus(1);
flowNode.setNode("IMPORT_INFO");
flowNode.setRemark("");
flowNode.setRemark("进件成功");
flowNodeList.add(0, flowNode);
}
......
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