|
|
@@ -9,6 +9,10 @@ public class OutOrderNewSignBo {
|
|
|
private String name;
|
|
|
@Excel(name = "部门")
|
|
|
private String depName;
|
|
|
+ @Excel(name = "总签单数",isStatistics = true)
|
|
|
+ private String allCounts;
|
|
|
+ @Excel(name = "总签单金额",isStatistics = true)
|
|
|
+ private BigDecimal allAmount;
|
|
|
@Excel(name = "新客户签单数",isStatistics = true)
|
|
|
private String newCounts;
|
|
|
@Excel(name = "新客户签单金额",isStatistics = true)
|
|
|
@@ -26,6 +30,22 @@ public class OutOrderNewSignBo {
|
|
|
@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;
|
|
|
}
|