2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
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
package cn.iocoder.yudao.module.pay.api.wallet.dto;
 
import cn.iocoder.yudao.framework.common.enums.UserTypeEnum;
import lombok.Data;
 
/**
 * 钱包 Response DTO
 *
 * @author jason
 */
@Data
public class PayWalletRespDTO {
 
    /**
     * 编号
     */
    private Long id;
 
    /**
     * 用户 id
     *
     * 关联 MemberUserDO 的 id 编号
     * 关联 AdminUserDO 的 id 编号
     */
    private Long userId;
    /**
     * 用户类型, 预留 多商户转帐可能需要用到
     *
     * 关联 {@link UserTypeEnum}
     */
    private Integer userType;
 
    /**
     * 余额,单位分
     */
    private Integer balance;
 
    /**
     * 冻结金额,单位分
     */
    private Integer freezePrice;
 
    /**
     * 累计支出,单位分
     */
    private Integer totalExpense;
    /**
     * 累计充值,单位分
     */
    private Integer totalRecharge;
 
}