|
@@ -2,24 +2,46 @@ package com.goafanti.order.bo;
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
|
|
+import com.goafanti.common.utils.Excel.Excel;
|
|
|
|
|
+
|
|
|
public class OutArrearsDunListBo {
|
|
public class OutArrearsDunListBo {
|
|
|
private String id;
|
|
private String id;
|
|
|
|
|
+ @Excel(name = "合同编号")
|
|
|
private String contractNo;
|
|
private String contractNo;
|
|
|
|
|
+ @Excel(name = "订单编号")
|
|
|
private String orderNo;
|
|
private String orderNo;
|
|
|
|
|
+ @Excel(name = "客户名称")
|
|
|
private String userName;
|
|
private String userName;
|
|
|
|
|
+ @Excel(name = "订单负责人")
|
|
|
private String salesmanName;
|
|
private String salesmanName;
|
|
|
- private Integer projectStatus;
|
|
|
|
|
|
|
+ @Excel(name = "订单部门")
|
|
|
|
|
+ private String depName;
|
|
|
|
|
+ @Excel(name = "订单状态",readConverterExp = "0=待签单,1=签单待审,2=签单审核通过,3=签单审核拒绝,4=已结项,5=已驳回,6=退单中,7=已退单")
|
|
|
|
|
+ private Integer orderStatus;
|
|
|
|
|
+ @Excel(name = "项目状态",readConverterExp = "0=项目待提交,1=项目已提交,2=项目评审,"
|
|
|
|
|
+ + "3=项目立项,4=项目公示,5=项目抽查,6=项目备案,7=项目下证,8=项目验收,9=项目拨款")
|
|
|
|
|
+ private Integer projectStatus;
|
|
|
|
|
+ private String projectStatusName;
|
|
|
|
|
+ @Excel(name = "签单金额(万元)")
|
|
|
private BigDecimal totalAmount;
|
|
private BigDecimal totalAmount;
|
|
|
|
|
+ @Excel(name = "已收款(万元)")
|
|
|
|
|
+ private BigDecimal settlementAmount;
|
|
|
|
|
+ @Excel(name = "结算状态",readConverterExp = "0=首付待付请,1=尾款待付清,2=已付请,3=部分退款,4=全部退款")
|
|
|
private Integer liquidationStatus;
|
|
private Integer liquidationStatus;
|
|
|
- private BigDecimal settlementAmount;
|
|
|
|
|
|
|
+ @Excel(name = "催收科目",readConverterExp = "0=按时触发应收款")
|
|
|
|
|
+ private Integer type;
|
|
|
|
|
+ @Excel(name = "欠款催收")
|
|
|
|
|
+ private BigDecimal orderArrears;
|
|
|
|
|
+ @Excel(name = "合同编号")
|
|
|
private BigDecimal orderReceivables;
|
|
private BigDecimal orderReceivables;
|
|
|
- private BigDecimal orderArrears;
|
|
|
|
|
- private Integer orderStatus;
|
|
|
|
|
- private String startDate;
|
|
|
|
|
- private Integer type;
|
|
|
|
|
- private String depName;
|
|
|
|
|
- private String signDate;
|
|
|
|
|
- private Integer dunStatus;
|
|
|
|
|
|
|
+ @Excel(name = "催款状态",readConverterExp = "0=未启动,1=催款中,2=已完成,3=已暂停")
|
|
|
|
|
+ private Integer dunStatus;
|
|
|
|
|
+ @Excel(name = "催款启动时间")
|
|
|
|
|
+ private String startDate;
|
|
|
|
|
+ @Excel(name = "下单时间")
|
|
|
|
|
+ private String signDate;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
public String getId() {
|
|
public String getId() {
|
|
|
return id;
|
|
return id;
|
|
|
}
|
|
}
|
|
@@ -122,6 +144,12 @@ public class OutArrearsDunListBo {
|
|
|
public void setType(Integer type) {
|
|
public void setType(Integer type) {
|
|
|
this.type = type;
|
|
this.type = type;
|
|
|
}
|
|
}
|
|
|
|
|
+ public String getProjectStatusName() {
|
|
|
|
|
+ return projectStatusName;
|
|
|
|
|
+ }
|
|
|
|
|
+ public void setProjectStatusName(String projectStatusName) {
|
|
|
|
|
+ this.projectStatusName = projectStatusName;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|