|
|
@@ -9,17 +9,17 @@ public class OutOrderNewSignBo {
|
|
|
private String name;
|
|
|
@Excel(name = "部门")
|
|
|
private String depName;
|
|
|
- @Excel(name = "新客户签单数")
|
|
|
+ @Excel(name = "新客户签单数",isStatistics = true)
|
|
|
private String newCounts;
|
|
|
- @Excel(name = "新客户签单金额")
|
|
|
+ @Excel(name = "新客户签单金额",isStatistics = true)
|
|
|
private BigDecimal newAmount;
|
|
|
@Excel(name = "新客户签单数占比", percentage = 1,scale = 2)
|
|
|
private String newCountProportion;
|
|
|
@Excel(name = "新客户签单金额占比", percentage = 1,scale = 2)
|
|
|
private String newAmountProportion;
|
|
|
- @Excel(name = "旧客户签单数")
|
|
|
+ @Excel(name = "旧客户签单数",isStatistics = true)
|
|
|
private String counts;
|
|
|
- @Excel(name = "旧客户签单金额")
|
|
|
+ @Excel(name = "旧客户签单金额",isStatistics = true)
|
|
|
private BigDecimal amount;
|
|
|
@Excel(name = "旧客户签单数占比",percentage = 1,scale = 2)
|
|
|
private String countProportion;
|