|
@@ -36,6 +36,10 @@ public class ProjectMonitorResult implements Serializable {
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long crmDetailId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "大区经理ID")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long leadId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "大区经理")
|
|
|
private String leadName;
|
|
|
|
|
@@ -149,4 +153,12 @@ public class ProjectMonitorResult implements Serializable {
|
|
|
public void setFlowId(String flowId) {
|
|
|
this.flowId = flowId;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getLeadId() {
|
|
|
+ return leadId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLeadId(Long leadId) {
|
|
|
+ this.leadId = leadId;
|
|
|
+ }
|
|
|
}
|