| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class AuctionGoodsinfoVO { |
| | | |
| | |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String unit; |
| | | |
| | | @ApiModelProperty(value = "最高出价") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal zgBid; |
| | | |
| | | |
| | | @ApiModelProperty(value = "商品描述") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String description; |
| | | |
| | | @ApiModelProperty(value = "商品说明") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String explain; |
| | | |
| | | @ApiModelProperty(value = "商品介绍") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String detail; |
| | | |
| | | @ApiModelProperty(value = "商品年份") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String years; |
| | | private LocalDateTime years; |
| | | |
| | | @ApiModelProperty(value = "商品分类") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | |
| | | |
| | | @ApiModelProperty(value = "实名认证 0=不需实名 1=需要实名") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private AuthenticationEnum authentication; |
| | | private Integer authentication; |
| | | |
| | | @ApiModelProperty("是否报名 1未报名,2 已报名") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | |
| | | @ApiModelProperty(value = "保证金") |
| | | private BigDecimal bond; |
| | | |
| | | @ApiModelProperty(value = "商品信息") |
| | | List<getHomeGoodsSkuXxiVO> xxiVOS; |
| | | |
| | | |
| | | } |