| | |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 轮播图信息表 |
| | |
| | | @ExcelColumn(name="跳转类型 0富文本 1外链 2活动 3商家") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "位置 0首页 1推荐店铺 2商城首页", example = "1") |
| | | @ExcelColumn(name="位置 0首页 1推荐店铺 2商城首页") |
| | | @ApiModelProperty(value = "位置 0首页 1推荐店铺 2商城首页 3首页专区", example = "1") |
| | | @ExcelColumn(name="位置 0首页 1推荐店铺 2商城首页3首页专区") |
| | | private Integer position; |
| | | |
| | | @ApiModelProperty(value = "所属城市编码(关联areas)", example = "1") |
| | |
| | | @ApiModelProperty(value = "产品名称") |
| | | @TableField(exist = false) |
| | | private String goodsName; |
| | | @ApiModelProperty(value = "产品数量") |
| | | @TableField(exist = false) |
| | | private int goodsNum; |
| | | |
| | | |
| | | @ApiModelProperty(value = "产品数量") |
| | | @TableField(exist = false) |
| | | private List<Integer> goodsIdList; |
| | | @ApiModelProperty(value = "产品集合") |
| | | @TableField(exist = false) |
| | | private List<Goods> goodsList; |
| | | |
| | | } |