1
zj
2024-07-16 aac94d3eed9fc8f1958a24f06b3ca5c41fe11718
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
package com.nq.vo.user;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class UserOptionLogVO {
 
    private Integer id;
    //操作金额
    private BigDecimal money;
    //类型,0扣款,1入款
    private Integer type;
    //用户id
    private Integer userId;
    //资产id
    private Integer userAccectId;
    //操作时间
    private Date createTime;
    //资产账户类型
    private String userAccectType;
    //用户名
    private String userName;
 
}