|
|
@@ -9,23 +9,43 @@ public class OutOrderNewSignBo {
|
|
|
private String name;
|
|
|
@Excel(name = "部门")
|
|
|
private String depName;
|
|
|
- @Excel(name = "新客户签单数")
|
|
|
+ @Excel(name = "总签单数",isStatistics = true)
|
|
|
+ private String allCounts;
|
|
|
+ @Excel(name = "总签单金额",isStatistics = true)
|
|
|
+ private BigDecimal allAmount;
|
|
|
+ @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;
|
|
|
@Excel(name = "旧客户签单金额占比", percentage = 1,scale = 2)
|
|
|
private String amountProportion;
|
|
|
|
|
|
+ public String getAllCounts() {
|
|
|
+ return allCounts;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAllCounts(String allCounts) {
|
|
|
+ this.allCounts = allCounts;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getAllAmount() {
|
|
|
+ return allAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAllAmount(BigDecimal allAmount) {
|
|
|
+ this.allAmount = allAmount;
|
|
|
+ }
|
|
|
+
|
|
|
public String getDepName() {
|
|
|
return depName;
|
|
|
}
|