Administrator
2025-07-18 4888ef96061e19769427bf52b0a644da7910331e
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;
}