|
|
@@ -2,20 +2,22 @@ package com.goafanti.order.bo;
|
|
|
|
|
|
import com.goafanti.common.utils.excel.Excel;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
public class OutSignSummary {
|
|
|
|
|
|
private String id;
|
|
|
@Excel(name = "客户名称")
|
|
|
private String nickname;
|
|
|
- @Excel(name = "签单次数")
|
|
|
+ @Excel(name = "签单次数",width = 8)
|
|
|
private Integer signNumber;
|
|
|
- @Excel(name = "签单金额")
|
|
|
- private String signAmount;
|
|
|
- @Excel(name = "首次签单时间")
|
|
|
+ @Excel(name = "签单金额",width = 10,scale = 6)
|
|
|
+ private BigDecimal signAmount;
|
|
|
+ @Excel(name = "首次签单时间",width = 8)
|
|
|
private String firstSigningTime;
|
|
|
- @Excel(name = "最新签单时间")
|
|
|
+ @Excel(name = "最新签单时间",width = 8)
|
|
|
private String lastSigningTime;
|
|
|
- @Excel(name = "签单类型" ,readConverterExp = "0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购")
|
|
|
+ @Excel(name = "签单类型" ,readConverterExp = "0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购",width = 8)
|
|
|
private Integer lastSalesType;
|
|
|
@Excel(name = "客户所属人")
|
|
|
private String name;
|
|
|
@@ -23,21 +25,21 @@ public class OutSignSummary {
|
|
|
private String depName;
|
|
|
@Excel(name = "跟进人")
|
|
|
private String followAname;
|
|
|
- @Excel(name = "跟进类型",readConverterExp = "0=外出,1=电话,2=QQ,3=微信,4=邮件,5=公出打卡,6=来访面谈")
|
|
|
+ @Excel(name = "跟进类型",readConverterExp = "0=外出,1=电话,2=QQ,3=微信,4=邮件,5=公出打卡,6=来访面谈",width =8)
|
|
|
private Integer lastFollowType;
|
|
|
- @Excel(name = "跟进说明")
|
|
|
+ @Excel(name = "跟进说明",width = 32)
|
|
|
private String followExplain;
|
|
|
- @Excel(name = "跟进次数")
|
|
|
+ @Excel(name = "跟进次数",width = 8)
|
|
|
private Integer followNumber;
|
|
|
@Excel(name = "最新跟进时间")
|
|
|
private String lastFollowTime;
|
|
|
- @Excel(name = "已签项目")
|
|
|
+ @Excel(name = "已签项目",width = 32)
|
|
|
private String taskNames;
|
|
|
- @Excel(name = "会员",readConverterExp = "0=否,1=是")
|
|
|
+ @Excel(name = "会员",readConverterExp = "0=否,1=是",width = 8)
|
|
|
private Integer member;
|
|
|
- @Excel(name = "退单",readConverterExp = "0=否,1=是")
|
|
|
+ @Excel(name = "退单",readConverterExp = "0=否,1=是",width = 8)
|
|
|
private Integer chargeback;
|
|
|
- @Excel(name = "大客户",readConverterExp = "0=否,1=是")
|
|
|
+ @Excel(name = "大客户",readConverterExp = "0=否,1=是",width = 8)
|
|
|
private Integer bigCustomer;
|
|
|
|
|
|
public String getFollowAname() {
|
|
|
@@ -72,11 +74,11 @@ public class OutSignSummary {
|
|
|
this.signNumber = signNumber;
|
|
|
}
|
|
|
|
|
|
- public String getSignAmount() {
|
|
|
+ public BigDecimal getSignAmount() {
|
|
|
return signAmount;
|
|
|
}
|
|
|
|
|
|
- public void setSignAmount(String signAmount) {
|
|
|
+ public void setSignAmount(BigDecimal signAmount) {
|
|
|
this.signAmount = signAmount;
|
|
|
}
|
|
|
|