Administrator
2026-03-20 e8c7a97949f5a582ca5e3e5d787bf64f5fa01767
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 = "YHCategoryDto", description = "参数")
public class YHCategoryDto {
 
    @ApiModelProperty(value = "是否推荐到小程序首页 1-推荐 0-不推荐", example = "1")
    private Integer hotState;
 
}