| | |
| | | package com.ruoyi.system.api.domain.dto; |
| | | |
| | | import com.ruoyi.common.core.enums.AuctionStartStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Set; |
| | | |
| | | @Data |
| | | @ApiModel(value = "拍卖会我的里面筛选条件传输对象", description = "拍卖会我的里面筛选条件传输对象") |
| | | public class MemberAuctionSalesroomWdDTO { |
| | | @ApiModelProperty(value = "会员id") |
| | | private Long memberId; |
| | | |
| | | @ApiModelProperty(value = "拍卖会id") |
| | | private Set<Long> goodsSkuIdList; |
| | | |
| | | @ApiModelProperty(value = "拍卖状态 0=预展中 1=拍卖中 2=已结束 4=全部") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "拍卖场名称") |
| | | private String salesroomName; |
| | | |
| | | } |