zj
2024-06-03 287ac389edd047696d956afafdb855a93830bc0c
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package com.nq.pojo;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class UserCashDetail {
 
    private Integer id;
 
    private Integer agentId;
 
    private String agentName;
 
    private Integer userId;
 
    private String userName;
 
    private Integer positionId;
 
    private String deType;
 
    private BigDecimal deAmt;
 
    private String deSummary;
 
    private Date addTime;
 
    private String addIp;
 
    private String addAddress;
 
    private Integer isRead;
 
 
    public UserCashDetail(Integer id, Integer agentId, String agentName, Integer userId, String userName, Integer positionId, String deType, BigDecimal deAmt, String deSummary, Date addTime, String addIp, String addAddress, Integer isRead) {
        this.id = id;
 
        this.agentId = agentId;
 
        this.agentName = agentName;
 
        this.userId = userId;
 
        this.userName = userName;
 
        this.positionId = positionId;
 
        this.deType = deType;
 
        this.deAmt = deAmt;
 
        this.deSummary = deSummary;
 
        this.addTime = addTime;
 
        this.addIp = addIp;
 
        this.addAddress = addAddress;
 
        this.isRead = isRead;
    }
 
    public UserCashDetail() {
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getAgentId() {
        return agentId;
    }
 
    public void setAgentId(Integer agentId) {
        this.agentId = agentId;
    }
 
    public String getAgentName() {
        return agentName;
    }
 
    public void setAgentName(String agentName) {
        this.agentName = agentName;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public Integer getPositionId() {
        return positionId;
    }
 
    public void setPositionId(Integer positionId) {
        this.positionId = positionId;
    }
 
    public String getDeType() {
        return deType;
    }
 
    public void setDeType(String deType) {
        this.deType = deType;
    }
 
    public BigDecimal getDeAmt() {
        return deAmt;
    }
 
    public void setDeAmt(BigDecimal deAmt) {
        this.deAmt = deAmt;
    }
 
    public String getDeSummary() {
        return deSummary;
    }
 
    public void setDeSummary(String deSummary) {
        this.deSummary = deSummary;
    }
 
    public Date getAddTime() {
        return addTime;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public String getAddIp() {
        return addIp;
    }
 
    public void setAddIp(String addIp) {
        this.addIp = addIp;
    }
 
    public String getAddAddress() {
        return addAddress;
    }
 
    public void setAddAddress(String addAddress) {
        this.addAddress = addAddress;
    }
 
    public Integer getIsRead() {
        return isRead;
    }
 
    public void setIsRead(Integer isRead) {
        this.isRead = isRead;
    }
}