1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package cn.lili.modules.goods.entity.vos;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * 分类品牌VO
| *
| * @author pikachu
| * @since 2020-02-26 23:24:13
| */
| @Data
| public class CategoryBrandVO {
| /**
| * 品牌id
| */
| @ApiModelProperty(value = "品牌id", required = true)
| private String id;
|
| /**
| * 品牌名称
| */
| @ApiModelProperty(value = "品牌名称", required = true)
| private String name;
| }
|
|