-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTestUserGeneratorObject.java
executable file
·59 lines (55 loc) · 1.49 KB
/
TestUserGeneratorObject.java
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
package ua.cetelem;
import ua.cetelem.helpers.sequence_generator.IUniqueId;
public class TestUserGeneratorObject implements java.io.Serializable, IUniqueId {
private static final long serialVersionUID = 1376489315L;
private String tin;
private long id;
private String point_id;
private String user_id;
private java.util.Date date_write;
private long result_in_black_list;
private String fio;
public TestUserGeneratorObject() {}
public String getTin() {
return tin;
}
public void setTin(String tin) {
this.tin = tin;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getPoint_id() {
return point_id;
}
public void setPoint_id(String point_id) {
this.point_id = point_id;
}
public String getUser_id() {
return user_id;
}
public void setUser_id(String user_id) {
this.user_id = user_id;
}
public java.util.Date getDate_write() {
return date_write;
}
public void setDate_write(java.util.Date date_write) {
this.date_write = date_write;
}
public long getResult_in_black_list() {
return result_in_black_list;
}
public void setResult_in_black_list(long result_in_black_list) {
this.result_in_black_list = result_in_black_list;
}
public String getFio() {
return fio;
}
public void setFio(String fio) {
this.fio = fio;
}
}