|
@@ -36,21 +36,10 @@ public class TBSopInfo extends BaseEntity implements Serializable {
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long customId;
|
|
|
|
|
|
- @ApiModelProperty(value = "学院名称")
|
|
|
- private String collegeName;
|
|
|
-
|
|
|
@ApiModelProperty(value = "产品id")
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long productId;
|
|
|
|
|
|
- @ApiModelProperty(value = "区域负责人id")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long regionUserId;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "阅卷负责人id")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long cloudMarkUserId;
|
|
|
-
|
|
|
@ApiModelProperty(value = "流程类型,OFFICE_SOP_FLOW:教务处SOP,CLOUD_MARK_SOP_FLOW:研究生SOP")
|
|
|
private TFCustomTypeEnum type;
|
|
|
|
|
@@ -58,14 +47,11 @@ public class TBSopInfo extends BaseEntity implements Serializable {
|
|
|
|
|
|
}
|
|
|
|
|
|
- public TBSopInfo(String crmNo, Long serviceId, Long customId, String collegeName, Long productId, Long regionUserId, Long cloudMarkUserId, TFCustomTypeEnum type, Long userId) {
|
|
|
+ public TBSopInfo(String crmNo, Long serviceId, Long customId, Long productId, TFCustomTypeEnum type, Long userId) {
|
|
|
this.crmNo = crmNo;
|
|
|
this.serviceId = serviceId;
|
|
|
this.customId = customId;
|
|
|
- this.collegeName = collegeName;
|
|
|
this.productId = productId;
|
|
|
- this.regionUserId = regionUserId;
|
|
|
- this.cloudMarkUserId = cloudMarkUserId;
|
|
|
this.type = type;
|
|
|
setCreateId(userId);
|
|
|
setCreateTime(System.currentTimeMillis());
|
|
@@ -103,14 +89,6 @@ public class TBSopInfo extends BaseEntity implements Serializable {
|
|
|
this.customId = customId;
|
|
|
}
|
|
|
|
|
|
- public String getCollegeName() {
|
|
|
- return collegeName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCollegeName(String collegeName) {
|
|
|
- this.collegeName = collegeName;
|
|
|
- }
|
|
|
-
|
|
|
public Long getProductId() {
|
|
|
return productId;
|
|
|
}
|
|
@@ -119,22 +97,6 @@ public class TBSopInfo extends BaseEntity implements Serializable {
|
|
|
this.productId = productId;
|
|
|
}
|
|
|
|
|
|
- public Long getRegionUserId() {
|
|
|
- return regionUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRegionUserId(Long regionUserId) {
|
|
|
- this.regionUserId = regionUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCloudMarkUserId() {
|
|
|
- return cloudMarkUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCloudMarkUserId(Long cloudMarkUserId) {
|
|
|
- this.cloudMarkUserId = cloudMarkUserId;
|
|
|
- }
|
|
|
-
|
|
|
public TFCustomTypeEnum getType() {
|
|
|
return type;
|
|
|
}
|