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 bannerDTOs; }