-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSAEntity.java
More file actions
160 lines (131 loc) · 4.21 KB
/
SAEntity.java
File metadata and controls
160 lines (131 loc) · 4.21 KB
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
package com.ibx.cac2web.sensitiveaccounts;
import javax.persistence.*;
import java.util.Date;
@Entity
@Table(name="MAD.MAD_SENS_ACCOUNT")
public class SensitiveAccountsEntity {
//@GeneratedValue(strategy = GenerationType.IDENTITY)
@Id
@Column(name="SACC_SENS_ACC_SK")
private Long Id;
@Column(name="SACC_MBR_ID")
private String memberID;
@Column(name="SACC_MBR_1ST_NM")
private String firstName; //Brand Name
@Column(name="SACC_MBR_BTH_DT")
private Date birthday;
@Column(name="MADR_RSN_CD")
private String rsnCD;
@Column(name="SACC_SENS_ACC_DSC")
private String AccountDescription;
@Column(name="CRE_USE_ID")
private String createdUsername;
@Column(name="CRE_PGM_NM")
private String createdPGMName;
@Column(name="CRE_TS")
private Date createdTimestamp;
@Column(name="LAST_UPD_USE_ID")
private String lastUpdateUsername;
@Column(name="LAST_UPD_PGM_NM")
private String lastUpdatePGMName;
@Column(name="LAST_UPD_TS")
private Date lastUpdateTimestamp;
@Column(name="DEL_IND")
private char deleteIndicator;
public Long getId() {
return Id;
}
public String getMemberID() {
return memberID;
}
public String getFirstName() {
return firstName;
}
public Date getBirthday() {
return birthday;
}
public String getRsnCD() {
return rsnCD;
}
public String getAccountDescription() {
return AccountDescription;
}
public String getCreatedUsername() {
return createdUsername;
}
public String getCreatedPGMName() {
return createdPGMName;
}
public Date getCreatedTimestamp() {
return createdTimestamp;
}
public String getLastUpdateUsername() {
return lastUpdateUsername;
}
public String getLastUpdatePGMName() {
return lastUpdatePGMName;
}
public Date getLastUpdateTimestamp() {
return lastUpdateTimestamp;
}
public char getDeleteIndicator() {
return deleteIndicator;
}
public void setId(Long id) {
Id = id;
}
public void setMemberID(String memberID) {
this.memberID = memberID;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public void setRsnCD(String rsnCD) {
this.rsnCD = rsnCD;
}
public void setAccountDescription(String accountDescription) {
AccountDescription = accountDescription;
}
public void setCreatedUsername(String createdUsername) {
this.createdUsername = createdUsername;
}
public void setCreatedPGMName(String createdPGMName) {
this.createdPGMName = createdPGMName;
}
public void setCreatedTimestamp(Date createdTimestamp) {
this.createdTimestamp = createdTimestamp;
}
public void setLastUpdateUsername(String lastUpdateUsername) {
this.lastUpdateUsername = lastUpdateUsername;
}
public void setLastUpdatePGMName(String lastUpdatePGMName) {
this.lastUpdatePGMName = lastUpdatePGMName;
}
public void setLastUpdateTimestamp(Date lastUpdateTimestamp) {
this.lastUpdateTimestamp = lastUpdateTimestamp;
}
public void setDeleteIndicator(char deleteIndicator) {
this.deleteIndicator = deleteIndicator;
}
@Override
public String toString() {
return "SensitiveAccountsEntity{" +
"Id=" + Id +
", memberID='" + memberID + '\'' +
", firstName='" + firstName + '\'' +
", birthday=" + birthday +
", rsnCD='" + rsnCD + '\'' +
", AccountDescription='" + AccountDescription + '\'' +
", createdUsername='" + createdUsername + '\'' +
", createdPGMName='" + createdPGMName + '\'' +
", createdTimestamp=" + createdTimestamp +
", lastUpdateUsername='" + lastUpdateUsername + '\'' +
", lastUpdatePGMName='" + lastUpdatePGMName + '\'' +
", lastUpdateTimestamp=" + lastUpdateTimestamp +
", deleteIndicator=" + deleteIndicator +
'}';
}
}