|
@@ -54,16 +54,21 @@ public class TBSopInfo extends BaseEntity implements Serializable {
|
|
|
@ApiModelProperty(value = "流程类型,OFFICE_SOP_FLOW:教务处SOP,CLOUD_MARK_SOP_FLOW:研究生SOP")
|
|
|
private TFCustomTypeEnum type;
|
|
|
|
|
|
- @ApiModelProperty(value = "提交人id")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long userId;
|
|
|
-
|
|
|
public TBSopInfo() {
|
|
|
|
|
|
}
|
|
|
|
|
|
- public TBSopInfo(String crmNo, Long serviceId, Long customId, String collegeName, Long projectName, Long projectId, Long regionUserId, Long cloudMarkUserId, TFCustomTypeEnum type, Long userId) {
|
|
|
-
|
|
|
+ public TBSopInfo(String crmNo, Long serviceId, Long customId, String collegeName, Long productId, Long regionUserId, Long cloudMarkUserId, 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());
|
|
|
}
|
|
|
|
|
|
public String getCrmNo() {
|
|
@@ -137,12 +142,4 @@ public class TBSopInfo extends BaseEntity implements Serializable {
|
|
|
public void setType(TFCustomTypeEnum type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
-
|
|
|
- public Long getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Long userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
}
|