rentaiming
2024-06-07 2f1988b9b3047e64d1a7b85fbaf8518d16eb88ec
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.system.api.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ForepartAuctionSalesroomVO {
    @ApiModelProperty(value = "暖场视频or封面海报")
    private String url;
 
    @ApiModelProperty(value = "拍卖状态 0=预展中 1=拍卖中 2=已结束")
    private Integer auctionSalesroomStatus;
}