doum
7 小时以前 80fd41ea0dc602ac3ca33778f17fce5bc2e817b1
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
package com.doumee.dao.web.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 用户提现银行信息
 * @author 江蹄蹄
 * @date 2026/01/16 11:50
 */
@Data
@ApiModel("用户提现请求类")
public class WithdrawApplyRequest {
 
 
    @ApiModelProperty(value = "提现银行主键")
    private Integer bankId;
 
    @ApiModelProperty(value = "提现金额")
    private BigDecimal amount;
 
    @ApiModelProperty(value = "用户主键(关联shop表主键)", example = "1")
    private Integer memberId;
 
}