|
@@ -5,7 +5,6 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
-import javax.validation.constraints.NotNull;
|
|
|
|
|
|
/**
|
|
|
* @author : lingfeng
|
|
@@ -51,9 +50,9 @@ public class CpAddUpdateParam {
|
|
|
/**
|
|
|
* 对接状态
|
|
|
*/
|
|
|
- @NotNull(message = "对接状态不可为空")
|
|
|
+ @NotBlank(message = "对接状态不可为空")
|
|
|
@ApiModelProperty(notes = "对接状态")
|
|
|
- private Integer status;
|
|
|
+ private String status;
|
|
|
|
|
|
/**
|
|
|
* 备注
|