rentaiming
2024-06-03 6e8a55edef22faa7f7d5bbbccd727119a6fd918f
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
package com.ruoyi.system.api.domain.dto;
 
import com.ruoyi.common.core.enums.AuctionOrderTypeEnum;
import com.ruoyi.common.core.enums.PaymentMethodEnum;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class MemberAuctionSalesroomBondDTO {
    @ApiModelProperty(value = "会员id")
    private Long memberId;
 
    @ApiModelProperty(value = "拍卖会id")
    private Long auctionSalesroomId;
 
    @ApiModelProperty(value = "保证金类型1=普通拍品 2=拍卖会拍品")
    private Integer bondType;
 
    @ApiModelProperty(value = "拍卖商品id")
    private Long auctionGoodsId;
 
    @ApiModelProperty(value = "支付方式 1=微信 2=支付宝")
    private Integer paymentMethod;
 
}