| package cc.mrbird.febs.mall.vo.activity; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @ApiModel(value = "ApiCategoryInfoVo", description = "参数") | 
| public class ApiCategoryInfoVo { | 
|   | 
|     @ApiModelProperty(value = "ID") | 
|     private Long id; | 
|   | 
|     @ApiModelProperty(value = "名称") | 
|     private String name; | 
|   | 
| //    @ApiModelProperty(value = "排序") | 
| //    private Integer orderCnt; | 
| // | 
| //    @ApiModelProperty(value = "是否推荐到首页 0-不推荐 1-推荐") | 
| //    private Integer hotState; | 
| // | 
| //    @ApiModelProperty(value = "状态 0-未开启 1-已开启") | 
| //    private Integer state; | 
| } |