| | |
| | | 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 AuctionGoodsListDTO extends BasePage { |
| | | @ApiModelProperty(value = "商品id") |
| | | private Long goodsSkuId; |
| | |
| | | @ApiModelProperty(value = "拍卖状态 0=预展中 1=拍卖中 2=已结束 4=全部") |
| | | private Integer startStatus; |
| | | |
| | | @ApiModelProperty(value = "拍卖场名称") |
| | | private String salesroomName; |
| | | |
| | | } |