| | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Data |
| | | public class WdMemberAuctionSalesroomVO { |
| | | @ApiModelProperty(value = "拍卖场id") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Long SalesroomId; |
| | | |
| | | @ApiModelProperty(value = "拍卖场名称") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String salesroomName; |
| | | |
| | | @ApiModelProperty(value = "拍卖状态 0=预展中 1=拍卖中 2=已结束") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "拍卖场说明") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String description; |
| | | |
| | | @ApiModelProperty(value = "拍卖场封面图") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String coverPic; |
| | | |
| | | @ApiModelProperty(value = "加入时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private LocalDateTime BondTime; |
| | | |
| | | @ApiModelProperty(value = "保证金") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal bond; |
| | | |
| | | |
| | | @ApiModelProperty(value = "人数") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer bondNum; |
| | | |
| | | @ApiModelProperty(value = "是否参加, 1否,2 是") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer isBond; |
| | | |
| | | |