| | |
| | | package com.ruoyi.system.api.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.ruoyi.common.core.enums.AuctionStartStatusEnum; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private AuctionStartStatusEnum startStatus; |
| | | |
| | | @ApiModelProperty(value = "单位") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String unit; |
| | | |
| | | @ApiModelProperty(value = "封面图") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String coverPic; |
| | | |
| | | @ApiModelProperty(value = "规格") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String spec; |
| | | |
| | | @ApiModelProperty(value = "规格单位") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String specUnit; |
| | | |
| | | @ApiModelProperty(value = "是中标 1未中标,2中标") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer isStatus; |
| | | |
| | | @ApiModelProperty(value = "商品年份") |
| | | private String years; |
| | | @ApiModelProperty(value = "商品描述") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String description; |
| | | |
| | | @ApiModelProperty(value = "商品说明") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String detail; |
| | | |
| | | @ApiModelProperty(value = "是收藏 1未收藏,2收藏") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer isCollection; |
| | | |
| | | |
| | | } |