Nylog.java
1.28 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
package com.bsth.entity.oil;
import java.util.Date;
import javax.persistence.*;
@Entity
@Table(name = "bsth_c_nylog")
public class Nylog {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
private String nylx;
private String czmc;
private String userid;
private String username;
private Date createdate;
private String cxtj;
private String fwdz;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getNylx() {
return nylx;
}
public void setNylx(String nylx) {
this.nylx = nylx;
}
public String getCzmc() {
return czmc;
}
public void setCzmc(String czmc) {
this.czmc = czmc;
}
public String getUserid() {
return userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public Date getCreatedate() {
return createdate;
}
public void setCreatedate(Date createdate) {
this.createdate = createdate;
}
public String getCxtj() {
return cxtj;
}
public void setCxtj(String cxtj) {
this.cxtj = cxtj;
}
public String getFwdz() {
return fwdz;
}
public void setFwdz(String fwdz) {
this.fwdz = fwdz;
}
}