|
@@ -33,6 +33,9 @@ public class CrmProjectResult {
|
|
|
@ApiModelProperty("客户类型")
|
|
|
private ProductTypeEnum customType;
|
|
|
|
|
|
+ @ApiModelProperty("客户id")
|
|
|
+ private Long customId;
|
|
|
+
|
|
|
@ApiModelProperty("客户名称")
|
|
|
private String customName;
|
|
|
|
|
@@ -124,6 +127,14 @@ public class CrmProjectResult {
|
|
|
this.customType = customType;
|
|
|
}
|
|
|
|
|
|
+ public Long getCustomId() {
|
|
|
+ return customId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomId(Long customId) {
|
|
|
+ this.customId = customId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getCustomName() {
|
|
|
return customName;
|
|
|
}
|