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
| package com.nq.vo.user;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
| import org.joda.time.DateTime;
|
| 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;
|
| }
|
|