|
|
|
|
@ -18,20 +18,25 @@ import javax.validation.constraints.NotNull;
|
|
|
|
|
public class AdminsProductCategoryUpdateRequest {
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "id", value = "分类编号", required = true, example = "1")
|
|
|
|
|
@NotNull(message = "编号不能为空")
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "pid", value = "父级分类编号", required = true, example = "1")
|
|
|
|
|
@NotNull(message = "父分类编号不能为空")
|
|
|
|
|
private Integer pid;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "name", value = "分类名字(标识)", required = true, example = "admin/info")
|
|
|
|
|
@NotNull(message = "名称不能为空")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "description", value = "描述", required = true, example = "1")
|
|
|
|
|
@NotNull(message = "描述不能为空")
|
|
|
|
|
private String description;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "picUrl", value = "分类图片", example = "http://www.iocoder.cn/images/common/wechat_mp_2017_07_31_bak.jpg/")
|
|
|
|
|
private String picUrl;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "sort", value = "排序", required = true, example = "1")
|
|
|
|
|
@NotNull(message = "排序值不能为空")
|
|
|
|
|
private Integer sort;
|
|
|
|
|
}
|
|
|
|
|
|