| | |
| | | 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 MemberAuctionSalesroomDTO extends BasePage { |
| | | @ApiModelProperty(value = "会员id") |
| | | private Long memberId; |
| | |
| | | |
| | | @ApiModelProperty(value = "拍卖场编号") |
| | | private String salesroomNO; |
| | | |
| | | @ApiModelProperty(value = "拍卖状态 0=预展中 1=拍卖中 2=已结束 4=全部") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "设为备选") |
| | | private Boolean backupStatus; |
| | | |
| | | } |