doum
2025-12-12 89029e9ade03f3139c6afcd6bac48d9a668875f3
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
26
27
28
29
30
31
32
package com.doumee.dao.web.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author T14
 */
@Data
public class LabelsBannerDTO{
 
    @ApiModelProperty(value = "id")
    private Integer id;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "备注")
    private String info;
 
    @ApiModelProperty(value = "类型0商品分类 1商品品牌 2商家标签 3快递 4退货选项 5换货选项 6退款选项 7取消订单选项 8咖啡百科分类 9咨 询分类 10活动赛事分类 11达人探店分类 12 专区", example = "1")
    private Integer type;
 
    @ApiModelProperty(value = "当type 为12 时 为专区关联的分类", example = "1")
    private Integer parentId;
 
    @ApiModelProperty(value = "轮播信息", example = "1")
    private List<BannerDTO> bannerDTOs;
 
}