| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.ruoyi.common.core.enums.AuctionGoodsStatusEnum; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class ForepartAuctionSalesroomGoodsVO { |
| | |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String years; |
| | | |
| | | @ApiModelProperty(value = "最低加价金额") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal minimumMarkupAmount; |
| | | |
| | | @ApiModelProperty(value = "当前出价") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal presentBid; |
| | | |
| | | @ApiModelProperty(value = "最高出价") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal zgBid; |
| | | |
| | | @ApiModelProperty(value = "商品介绍") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String goodsDescription; |
| | | |
| | | @ApiModelProperty(value = "可中拍人数") |
| | | private Integer bidNum; |
| | | |
| | | @ApiModelProperty(value = "最高出价金额") |
| | | private BigDecimal maxAmount; |
| | | |
| | | @ApiModelProperty(value = "一次性每人成交数量") |
| | | private Integer dealQuantity; |
| | | } |