package cc.mrbird.febs.yinhe.req; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import javax.validation.constraints.NotBlank; @Data @ApiModel(value = "YHSysCategoryDto", description = "参数") public class YHSysCategoryDto { @ApiModelProperty(value = "产品ID", example = "10") private String id; @ApiModelProperty(value = "是否推荐到小程序首页 1-推荐 0-不推荐", example = "1") private Integer hotState; }