Commit bfda9001 authored by wlx@33.cn's avatar wlx@33.cn

类目必填项校验去除

parent fc983665
...@@ -36,7 +36,6 @@ public class CategorySaveDTO implements Serializable { ...@@ -36,7 +36,6 @@ public class CategorySaveDTO implements Serializable {
private String name; private String name;
@ApiModelProperty(value = "缩略图") @ApiModelProperty(value = "缩略图")
@NotBlank(message = MallResponseError.NULL_PARAM_ERROR)
private String thumb; private String thumb;
} }
...@@ -22,7 +22,7 @@ public class CategoryUpdateDTO implements Serializable { ...@@ -22,7 +22,7 @@ public class CategoryUpdateDTO implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "系列编号") @ApiModelProperty(value = "系列编号", required = true)
@NotBlank(message = MallResponseError.NULL_PARAM_ERROR) @NotBlank(message = MallResponseError.NULL_PARAM_ERROR)
private String categoryId; private String categoryId;
...@@ -31,7 +31,6 @@ public class CategoryUpdateDTO implements Serializable { ...@@ -31,7 +31,6 @@ public class CategoryUpdateDTO implements Serializable {
private String name; private String name;
@ApiModelProperty(value = "缩略图") @ApiModelProperty(value = "缩略图")
@NotBlank(message = MallResponseError.NULL_PARAM_ERROR)
private String thumb; private String thumb;
@ApiModelProperty(value = "信息更新时间", required = true) @ApiModelProperty(value = "信息更新时间", required = true)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment