|
@@ -5,7 +5,6 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
import com.qmth.sop.common.contant.SystemConstant;
|
|
|
import com.qmth.sop.common.enums.DelayWarnTypeEnum;
|
|
|
-import com.qmth.sop.common.enums.ProductTypeEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -47,19 +46,6 @@ public class TBProjectExchange implements Serializable {
|
|
|
@NotNull(message = "服务单元id不能为空")
|
|
|
private Long serviceId;
|
|
|
|
|
|
- @ApiModelProperty(value = "客户经理id")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- @NotNull(message = "客户经理id不能为空")
|
|
|
- private Long accountManagerId;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "客户类型,OFFICE:教务处,CLOUD_MARK:云阅卷")
|
|
|
- @NotNull(message = "客户类型不能为空")
|
|
|
- private ProductTypeEnum customType;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "客户名称")
|
|
|
- @NotBlank(message = "客户名称不能为空")
|
|
|
- private String customName;
|
|
|
-
|
|
|
@ApiModelProperty(value = "变更类型,PLAN:项目信息及计划,TIME:处理时限,CANCEL:项目取消")
|
|
|
@NotNull(message = "变更类型不能为空")
|
|
|
private DelayWarnTypeEnum type;
|
|
@@ -107,37 +93,13 @@ public class TBProjectExchange implements Serializable {
|
|
|
this.approveUserIds = approveUserIds;
|
|
|
}
|
|
|
|
|
|
- public void setCode(String exchangeNo, Long userId){
|
|
|
+ public void setCode(String exchangeNo, Long userId) {
|
|
|
this.exchangeNo = exchangeNo;
|
|
|
setId(SystemConstant.getDbUuid());
|
|
|
setCreateId(userId);
|
|
|
setCreateTime(System.currentTimeMillis());
|
|
|
}
|
|
|
|
|
|
- public Long getAccountManagerId() {
|
|
|
- return accountManagerId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAccountManagerId(Long accountManagerId) {
|
|
|
- this.accountManagerId = accountManagerId;
|
|
|
- }
|
|
|
-
|
|
|
- public ProductTypeEnum getCustomType() {
|
|
|
- return customType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCustomType(ProductTypeEnum customType) {
|
|
|
- this.customType = customType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCustomName() {
|
|
|
- return customName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCustomName(String customName) {
|
|
|
- this.customName = customName;
|
|
|
- }
|
|
|
-
|
|
|
public String getExchangeNo() {
|
|
|
return exchangeNo;
|
|
|
}
|