| | |
| | | package com.ruoyi.system.api.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Data |
| | | public class AuctionBidRecordVO { |
| | | @ApiModelProperty("排序") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer sort; |
| | | |
| | | @ApiModelProperty(value = "会员id") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Long memberId; |
| | | |
| | | @ApiModelProperty(value = "会员名称") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String memberName; |
| | | |
| | | @ApiModelProperty(value = "最终出价时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private LocalDateTime lastBidTime; |
| | | |
| | | @ApiModelProperty(value = "最终出价金额") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private BigDecimal lastBidAmount; |
| | | } |