Ylxxb.java
2.95 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
package com.bsth.entity.oil;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
import org.springframework.format.annotation.DateTimeFormat;
@Entity
@Table(name = "bsth_c_ylxxb")
public class Ylxxb {
@Id
@GeneratedValue
private Integer id;
@DateTimeFormat(pattern="yyyy-MM-dd")
private Date yyrq;
private Date jlrq;
private String nbbm;
private String jsy;
private Double jzl;
private String stationid;
private Date createtime;
private String gsdm;
private String yp;
private String jyggh;
private Double yj;
private String bz;
private Date xgrq;
private String xgr;
private String fromgsdm;
private int nylx;
@Transient
private String ldgh;
//0为接口数据,1为手工输入
private int jylx=0;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Date getYyrq() {
return yyrq;
}
public void setYyrq(Date yyrq) {
this.yyrq = yyrq;
}
public Date getJlrq() {
return jlrq;
}
public void setJlrq(Date jlrq) {
this.jlrq = jlrq;
}
public String getNbbm() {
return nbbm;
}
public void setNbbm(String nbbm) {
this.nbbm = nbbm;
}
public String getJsy() {
return jsy;
}
public void setJsy(String jsy) {
this.jsy = jsy;
}
public Double getJzl() {
return jzl;
}
public void setJzl(Double jzl) {
this.jzl = jzl;
}
public String getStationid() {
return stationid;
}
public void setStationid(String stationid) {
this.stationid = stationid;
}
public Date getCreatetime() {
return createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public String getGsdm() {
return gsdm;
}
public void setGsdm(String gsdm) {
this.gsdm = gsdm;
}
public String getYp() {
return yp;
}
public void setYp(String yp) {
this.yp = yp;
}
public String getJyggh() {
return jyggh;
}
public void setJyggh(String jyggh) {
this.jyggh = jyggh;
}
public Double getYj() {
return yj;
}
public void setYj(Double yj) {
this.yj = yj;
}
public String getBz() {
return bz;
}
public void setBz(String bz) {
this.bz = bz;
}
public Date getXgrq() {
return xgrq;
}
public void setXgrq(Date xgrq) {
this.xgrq = xgrq;
}
public String getXgr() {
return xgr;
}
public void setXgr(String xgr) {
this.xgr = xgr;
}
public String getFromgsdm() {
return fromgsdm;
}
public void setFromgsdm(String fromgsdm) {
this.fromgsdm = fromgsdm;
}
public int getNylx() {
return nylx;
}
public void setNylx(int nylx) {
this.nylx = nylx;
}
public String getLdgh() {
return ldgh;
}
public void setLdgh(String ldgh) {
this.ldgh = ldgh;
}
public int getJylx() {
return jylx;
}
public void setJylx(int jylx) {
this.jylx = jylx;
}
}