|
@@ -23,6 +23,10 @@ public class CrmProjectResult {
|
|
|
@ApiModelProperty("派单时间")
|
|
|
private Long crmBeginTime;
|
|
|
|
|
|
+ @ApiModelProperty("客户经理id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long customManagerId;
|
|
|
+
|
|
|
@ApiModelProperty("客户经理名称")
|
|
|
private String customManagerName;
|
|
|
|
|
@@ -38,10 +42,18 @@ public class CrmProjectResult {
|
|
|
@ApiModelProperty("考试开始时间")
|
|
|
private Long examEndTime;
|
|
|
|
|
|
- @ApiModelProperty("实施产品")
|
|
|
+ @ApiModelProperty("实施产品id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long productId;
|
|
|
+
|
|
|
+ @ApiModelProperty("实施产品名称")
|
|
|
private String productName;
|
|
|
|
|
|
- @ApiModelProperty("服务单元")
|
|
|
+ @ApiModelProperty("服务单元id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long serviceUnitId;
|
|
|
+
|
|
|
+ @ApiModelProperty("服务单元名称")
|
|
|
private String serviceUnitName;
|
|
|
|
|
|
@ApiModelProperty("大区经理id")
|
|
@@ -88,6 +100,14 @@ public class CrmProjectResult {
|
|
|
this.crmBeginTime = crmBeginTime;
|
|
|
}
|
|
|
|
|
|
+ public Long getCustomManagerId() {
|
|
|
+ return customManagerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomManagerId(Long customManagerId) {
|
|
|
+ this.customManagerId = customManagerId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getCustomManagerName() {
|
|
|
return customManagerName;
|
|
|
}
|
|
@@ -128,6 +148,14 @@ public class CrmProjectResult {
|
|
|
this.examEndTime = examEndTime;
|
|
|
}
|
|
|
|
|
|
+ public Long getProductId() {
|
|
|
+ return productId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductId(Long productId) {
|
|
|
+ this.productId = productId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getProductName() {
|
|
|
return productName;
|
|
|
}
|
|
@@ -136,6 +164,14 @@ public class CrmProjectResult {
|
|
|
this.productName = productName;
|
|
|
}
|
|
|
|
|
|
+ public Long getServiceUnitId() {
|
|
|
+ return serviceUnitId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setServiceUnitId(Long serviceUnitId) {
|
|
|
+ this.serviceUnitId = serviceUnitId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getServiceUnitName() {
|
|
|
return serviceUnitName;
|
|
|
}
|