| | |
| | | package com.ruoyi.auction.controller.management.dto; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import javax.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | |
| | | * @date 2024/5/30 |
| | | */ |
| | | @Data |
| | | public class MgtAuctionSalesroomGoodsDTO { |
| | | public class MgtAuctionSalesroomGoodsDTO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = -7793257582778819593L; |
| | | |
| | | @ApiModelProperty(value = "商品id") |
| | | @NotNull(message = "商品id不能为空") |
| | | private Long goodsSkuId; |
| | |
| | | private BigDecimal minimumMarkupAmount; |
| | | |
| | | @ApiModelProperty(value = "拍品数量") |
| | | @NotNull(message = "拍品数量不能为空") |
| | | // @NotNull(message = "拍品数量不能为空") |
| | | private Integer salesroomStock; |
| | | |
| | | @ApiModelProperty(value = "兜底成交个数") |
| | |
| | | private Integer listingDuration; |
| | | |
| | | @ApiModelProperty(value = "设为备选") |
| | | @NotNull(message = "设为备选不能为空") |
| | | private Boolean backupStatus; |
| | | |
| | | @ApiModelProperty(value = "排序") |
| | | private Integer sortNum; |
| | | |
| | | @ApiModelProperty(value = "商品介绍") |
| | | private String description; |
| | | |
| | | @ApiModelProperty(value = "一次性每人成交数量") |
| | | private Integer dealQuantity; |
| | | |
| | | @ApiModelProperty(value = "可中拍人数") |
| | | @NotNull(message = "可中拍人数不能为空") |
| | | private Integer bidNum; |
| | | |
| | | @ApiModelProperty(value = "最高出价金额") |
| | | private BigDecimal maxAmount; |
| | | |
| | | } |