|
@@ -1,92 +0,0 @@
|
|
-package com.qmth.sop.business.entity;
|
|
|
|
-
|
|
|
|
-import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
-import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
-import io.swagger.annotations.ApiModel;
|
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
|
-
|
|
|
|
-import java.io.Serializable;
|
|
|
|
-
|
|
|
|
-/**
|
|
|
|
- * <p>
|
|
|
|
- * sop工程师分配表
|
|
|
|
- * </p>
|
|
|
|
- *
|
|
|
|
- * @author wangliang
|
|
|
|
- * @since 2023-08-01
|
|
|
|
- */
|
|
|
|
-@ApiModel(value="TBEngineerAllocation对象", description="sop工程师分配表")
|
|
|
|
-public class TBEngineerAllocation implements Serializable {
|
|
|
|
-
|
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
|
-
|
|
|
|
- @ApiModelProperty(value = "主键")
|
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
- private Long id;
|
|
|
|
-
|
|
|
|
- @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 engineerUserId;
|
|
|
|
-
|
|
|
|
- @ApiModelProperty(value = "角色id")
|
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
- private Long roleId;
|
|
|
|
-
|
|
|
|
- public Long getId() {
|
|
|
|
- return id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setId(Long id) {
|
|
|
|
- this.id = id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getServiceId() {
|
|
|
|
- return serviceId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setServiceId(Long serviceId) {
|
|
|
|
- this.serviceId = serviceId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSopNo() {
|
|
|
|
- return sopNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSopNo(String sopNo) {
|
|
|
|
- this.sopNo = sopNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCrmNo() {
|
|
|
|
- return crmNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCrmNo(String crmNo) {
|
|
|
|
- this.crmNo = crmNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getEngineerUserId() {
|
|
|
|
- return engineerUserId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setEngineerUserId(Long engineerUserId) {
|
|
|
|
- this.engineerUserId = engineerUserId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getRoleId() {
|
|
|
|
- return roleId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setRoleId(Long roleId) {
|
|
|
|
- this.roleId = roleId;
|
|
|
|
- }
|
|
|
|
-}
|
|
|