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

修改

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