|
@@ -21,9 +21,26 @@ import java.util.Set;
|
|
public class PaymentCollectionVO extends PaymentCollection {
|
|
public class PaymentCollectionVO extends PaymentCollection {
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
@Excel(name = "项目名称")
|
|
@Excel(name = "项目名称")
|
|
private String itemName;
|
|
private String itemName;
|
|
|
|
|
|
|
|
+ @Excel(name = "事业部流水号")
|
|
|
|
+ private String businessNo;
|
|
|
|
+
|
|
|
|
+ @Excel(name = "项目类型")
|
|
|
|
+ private String cateName;
|
|
|
|
+
|
|
|
|
+ @Excel(name = "业务来源")
|
|
|
|
+ private String businessSource;
|
|
|
|
+ @Excel(name = "委托单位")
|
|
|
|
+ private String clientUnit;
|
|
|
|
+ @Excel(name = "客户名字")
|
|
|
|
+ private String clientName;
|
|
|
|
+ @Excel(name = "客户经理")
|
|
|
|
+ private String clientManager;
|
|
|
|
+ @Excel(name = "负责人")
|
|
|
|
+ private String skiller;
|
|
/**
|
|
/**
|
|
* 回款名称
|
|
* 回款名称
|
|
*/
|
|
*/
|
|
@@ -34,7 +51,7 @@ public class PaymentCollectionVO extends PaymentCollection {
|
|
* 回款金额
|
|
* 回款金额
|
|
*/
|
|
*/
|
|
@Excel(name = "回款金额")
|
|
@Excel(name = "回款金额")
|
|
- private Double amount;
|
|
|
|
|
|
+ private Double claimAmount;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 回款日期
|
|
* 回款日期
|
|
@@ -42,6 +59,18 @@ public class PaymentCollectionVO extends PaymentCollection {
|
|
@Excel(name = "回款日期")
|
|
@Excel(name = "回款日期")
|
|
private LocalDate paymentDate;
|
|
private LocalDate paymentDate;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 认领人
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "认领人")
|
|
|
|
+ private String claimUser;
|
|
|
|
+
|
|
|
|
+ @Excel(name = "付款方")
|
|
|
|
+ private String payer;
|
|
|
|
+
|
|
|
|
+ @Excel(name = "到账时间", dateFormat = "yyyy-MM-dd")
|
|
|
|
+ private Date payDatetime;
|
|
|
|
+
|
|
private Set<Long> userIds;
|
|
private Set<Long> userIds;
|
|
|
|
|
|
private Integer year;
|
|
private Integer year;
|