| | |
| | | package com.ruoyi.system.api.domain.dto; |
| | | |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "商品收藏数据传输对象", description = "商品收藏数据传输对象") |
| | | public class AuctionCollectionDTO extends BasePage { |
| | | @ApiModelProperty(value = "商品id") |
| | | private Long goodsSkuId; |
| | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String goodsSkuName; |
| | | |
| | | @ApiModelProperty(value = "1是普通商品,2 团购商品,3 秒杀商品") |
| | | private Integer type; |
| | | |
| | | } |