rentaiming
2024-07-10 b29becf95484be48aa09e87fcc7cc19f94cf9c81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "拍卖会获奖传输对象", description = "拍卖会获奖传输对象")
public class OrderAuctionBondDTO {
    @ApiModelProperty(value = "拍卖会id")
    private Long auctionSalesroomId;
 
    @ApiModelProperty(value = "获奖用户ID")
    private List<Long>  userList;
}