|
@@ -1,19 +1,31 @@
|
|
|
package com.goafanti.order.bo;
|
|
package com.goafanti.order.bo;
|
|
|
|
|
|
|
|
|
|
+import com.goafanti.common.utils.excel.Excel;
|
|
|
|
|
+
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
public class OutSignStatistics {
|
|
public class OutSignStatistics {
|
|
|
|
|
|
|
|
private String id;
|
|
private String id;
|
|
|
|
|
+ @Excel(name = "营销员")
|
|
|
private String name;
|
|
private String name;
|
|
|
|
|
+ @Excel(name = "签单客户",width = 8,defaultValue="0")
|
|
|
private Integer userCount;
|
|
private Integer userCount;
|
|
|
|
|
+ @Excel(name = "签单个数",width = 8,defaultValue="0")
|
|
|
private Integer orderCount;
|
|
private Integer orderCount;
|
|
|
|
|
+ @Excel(name = "签单总金额",defaultValue="0")
|
|
|
private BigDecimal totalAmount;
|
|
private BigDecimal totalAmount;
|
|
|
|
|
+ @Excel(name = "新签数",width = 8,defaultValue="0")
|
|
|
private Integer newSignNumber;
|
|
private Integer newSignNumber;
|
|
|
- private Integer repeatSignNumber;
|
|
|
|
|
- private Integer channelSignNumber;
|
|
|
|
|
|
|
+ @Excel(name = "新签率",width = 8,percentage=1 ,defaultValue="0")
|
|
|
private BigDecimal newRatio;
|
|
private BigDecimal newRatio;
|
|
|
|
|
+ @Excel(name = "复购数",width = 8,defaultValue="0")
|
|
|
|
|
+ private Integer repeatSignNumber;
|
|
|
|
|
+ @Excel(name = "复购率",width = 8,percentage=1 ,defaultValue="0")
|
|
|
private BigDecimal repeatRatio;
|
|
private BigDecimal repeatRatio;
|
|
|
|
|
+ @Excel(name = "渠道签单数",width = 8,defaultValue="0")
|
|
|
|
|
+ private Integer channelSignNumber;
|
|
|
|
|
+ @Excel(name = "渠道签单率",width = 8,percentage=1 ,defaultValue="0")
|
|
|
private BigDecimal channelRatio;
|
|
private BigDecimal channelRatio;
|
|
|
|
|
|
|
|
public Integer getUserCount() {
|
|
public Integer getUserCount() {
|