rentaiming
2024-05-28 6e82cd5d5875b38fb30be5ee4c1c5d3dbe33fe98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.ruoyi.auction.controller.forepart.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
public class ForepartAuctionSalesroomGoodsVO {
 
    @ApiModelProperty(value = "拍卖场id")
    private Long SalesroomId;
 
    @ApiModelProperty(value = "拍卖场名称")
    private String salesroomName;
 
    @ApiModelProperty(value = "商品id")
    private Long goodsSkuId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsSkuName;
 
    @ApiModelProperty(value = "起拍价格")
    private BigDecimal startingPrice;
 
    @ApiModelProperty(value = "拍品数量")
    private Integer salesroomStock;
 
    @ApiModelProperty(value = "拍卖时间 0=线下拍卖 1=线上线下结合")
    private Integer SalesroomType;
 
    @ApiModelProperty(value = "状态 0=预展中 1=拍卖中 2=已结束")
    private Integer goodsSkustatus;
 
    @ApiModelProperty(value = "拍卖时间(分钟)")
    private Integer listingDuration;
 
    @ApiModelProperty(value = "开始时间")
    private LocalDateTime startTime;
 
    @ApiModelProperty(value = "封面图")
    private String coverPic;
 
    @ApiModelProperty(value = "单位")
    private String unit;
 
    @ApiModelProperty(value = "商品描述")
    private String description;
 
    @ApiModelProperty(value = "下一个商品名称")
    private String nextGoodsSkuName;
 
    @ApiModelProperty(value = "是否出价 1未出价,2出价")
    private Integer isBond;
 
    @ApiModelProperty(value = "是中标 1未中标,2中标")
    private Integer isStatus;
 
 
}