Administrator
2025-09-23 cf329233aef9b144942a16e9d2d9988ccbda3d56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.mall.vo.clothes;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiClothesCategoryInfoVo", description = "参数")
public class ApiClothesCategoryInfoVo {
 
    @ApiModelProperty(value = "ID")
    private Long id;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "类型 1-首页查询 2-社区查询")
    private Integer type;
}