Administrator
2025-07-25 1c99b4dea4420d3d920c30599718966f570e38c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cc.mrbird.febs.mall.vo.clothes;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiClothesTypeListVo", description = "参数")
public class ApiClothesTypeListVo {
 
    @ApiModelProperty(value = "ID")
    private Long id;
    @ApiModelProperty(value = "名称")
    private String name;
    @ApiModelProperty(value = "小图标")
    private String image;
    @ApiModelProperty(value = "简介")
    private String content;
    @ApiModelProperty(value = "排序")
    private Integer orderNum;
}