Commit 0069a6cf authored by 吴琼's avatar 吴琼

修改

parent fcf2fcda
......@@ -29,6 +29,10 @@ public class BaitRepaymentPlan {
* 订单名称
*/
private String orderName;
/**
* 订单日期
*/
private String orderTime;
/**
*订单金额
*/
......@@ -59,6 +63,7 @@ public class BaitRepaymentPlan {
repayment.setOrderAmount(repaymentPlanItem.getOrderAmount());
repayment.setRepayTermDesc(repaymentPlanItem.getRepayTermDesc());
repayment.setStatusDesc(repaymentPlanItem.getStatusDesc());
repayment.setOrderTime(repaymentPlanItem.getOrderTime());
List<BaitRepayPlan> plans = repaymentPlanItem.getPlans();
repayment.setBaitRepayPlanList(plans);
return repayment;
......
......@@ -3,6 +3,7 @@ package cn.quantgroup.customer.model.order;
import lombok.Data;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.Date;
import java.util.List;
......@@ -17,7 +18,7 @@ public class BaitRepaymentPlanItem {
private String repayTermDesc;
private Integer status;
private String statusDesc;
private Date orderTime;
private String orderTime;
private Integer orderType;
private String orderTypeDesc;
private List<BaitRepayPlan> plans;
......
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