|
@@ -2,6 +2,7 @@ package com.qmth.sop.business.entity;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import com.qmth.sop.common.enums.SopRoleTypeEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -24,28 +25,24 @@ public class TBUserArchivesAllocation implements Serializable {
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long id;
|
|
|
|
|
|
+ @ApiModelProperty(value = "派单明细id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long crmDetailId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "服务单元id")
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long serviceId;
|
|
|
|
|
|
- @ApiModelProperty(value = "sop单号")
|
|
|
- private String sopNo;
|
|
|
-
|
|
|
@ApiModelProperty(value = "crm单号")
|
|
|
private String crmNo;
|
|
|
|
|
|
- @ApiModelProperty(value = "区域协调人id")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long regionUserId;
|
|
|
+ @ApiModelProperty(value = "sop角色类型")
|
|
|
+ private SopRoleTypeEnum sopRoleType;
|
|
|
|
|
|
@ApiModelProperty(value = "工程师id")
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long userId;
|
|
|
|
|
|
- @ApiModelProperty(value = "角色id")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long roleId;
|
|
|
-
|
|
|
@ApiModelProperty(value = "人员档案id")
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long archivesId;
|
|
@@ -58,20 +55,20 @@ public class TBUserArchivesAllocation implements Serializable {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public Long getServiceId() {
|
|
|
- return serviceId;
|
|
|
+ public Long getCrmDetailId() {
|
|
|
+ return crmDetailId;
|
|
|
}
|
|
|
|
|
|
- public void setServiceId(Long serviceId) {
|
|
|
- this.serviceId = serviceId;
|
|
|
+ public void setCrmDetailId(Long crmDetailId) {
|
|
|
+ this.crmDetailId = crmDetailId;
|
|
|
}
|
|
|
|
|
|
- public String getSopNo() {
|
|
|
- return sopNo;
|
|
|
+ public Long getServiceId() {
|
|
|
+ return serviceId;
|
|
|
}
|
|
|
|
|
|
- public void setSopNo(String sopNo) {
|
|
|
- this.sopNo = sopNo;
|
|
|
+ public void setServiceId(Long serviceId) {
|
|
|
+ this.serviceId = serviceId;
|
|
|
}
|
|
|
|
|
|
public String getCrmNo() {
|
|
@@ -82,12 +79,12 @@ public class TBUserArchivesAllocation implements Serializable {
|
|
|
this.crmNo = crmNo;
|
|
|
}
|
|
|
|
|
|
- public Long getRegionUserId() {
|
|
|
- return regionUserId;
|
|
|
+ public SopRoleTypeEnum getSopRoleType() {
|
|
|
+ return sopRoleType;
|
|
|
}
|
|
|
|
|
|
- public void setRegionUserId(Long regionUserId) {
|
|
|
- this.regionUserId = regionUserId;
|
|
|
+ public void setSopRoleType(SopRoleTypeEnum sopRoleType) {
|
|
|
+ this.sopRoleType = sopRoleType;
|
|
|
}
|
|
|
|
|
|
public Long getUserId() {
|
|
@@ -98,14 +95,6 @@ public class TBUserArchivesAllocation implements Serializable {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
|
|
|
- public Long getRoleId() {
|
|
|
- return roleId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRoleId(Long roleId) {
|
|
|
- this.roleId = roleId;
|
|
|
- }
|
|
|
-
|
|
|
public Long getArchivesId() {
|
|
|
return archivesId;
|
|
|
}
|