fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
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
package com.hz.his.dto.refund;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 用户资金退款dto
 */
@Data
public class RefundFundsDto {
 
    // 退款金额
    private BigDecimal refundTotal;
    // 用户id
    private String userId;
    // 门店id
    private String shopId;
    // 收款方
    private String payee;
    // 开户行
    private String openBank;
    // 开户支行
    private String openBranch;
    // 账号
    private String account;
    // 备注
    private String remarks;
    // 操作人类型
    private Integer operatorType;
    // 操作人id
    private String operatorId;
    // 平台来源
    private String platformSource;
 
    // 营销助手审批标识
    private String applyId;
    // 退款标识
    private String refundId;
    // 0:审核失败,1:审核通过
    private Integer type;
    // 审核人标识
    private String examEmplId;
 
    public RefundFundsDto() {
    }
}