2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
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
62
63
64
65
66
67
68
69
package cn.iocoder.yudao.module.trade.controller.admin.brokerage.vo.withdraw;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - 佣金提现 Response VO")
@Data
public class BrokerageWithdrawRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "7161")
    private Long id;
 
    @Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "11436")
    private Long userId;
 
    @Schema(description = "用户昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿")
    private String userNickname;
 
    @Schema(description = "提现金额", requiredMode = Schema.RequiredMode.REQUIRED, example = "18781")
    private Integer price;
 
    @Schema(description = "提现手续费", requiredMode = Schema.RequiredMode.REQUIRED, example = "11417")
    private Integer feePrice;
 
    @Schema(description = "当前总佣金", requiredMode = Schema.RequiredMode.REQUIRED, example = "18576")
    private Integer totalPrice;
 
    @Schema(description = "提现类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer type;
 
    @Schema(description = "真实姓名", example = "赵六")
    private String userName;
 
    @Schema(description = "收款账号", example = "88677912132")
    private String userAccount;
 
    @Schema(description = "银行名称", example = "1")
    private String bankName;
 
    @Schema(description = "开户地址", example = "海淀支行")
    private String bankAddress;
 
    @Schema(description = "收款码", example = "https://www.iocoder.cn")
    private String qrCodeUrl;
 
    @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer status;
 
    @Schema(description = "审核驳回原因", example = "不对")
    private String auditReason;
 
    @Schema(description = "审核时间")
    private LocalDateTime auditTime;
 
    @Schema(description = "备注", example = "随便")
    private String remark;
 
    @Schema(description = "转账单编号", example = "1024")
    private Long payTransferId;
 
    @Schema(description = "转账错误提示", example = "余额不足")
    private String transferErrorMsg;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}