Ylxxb.java
4.05 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package com.bsth.entity.oil;
import java.util.Date;
import javax.persistence.*;
import org.springframework.format.annotation.DateTimeFormat;
import com.bsth.data.BasicData;
@Entity
@Table(name = "bsth_c_ylxxb")
public class Ylxxb {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
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 fgsdm;
private String yp;
private String jyggh;
private Double yj;
private String bz;
private Date xgrq;
private String xgr;
private String fromgsdm;
private Integer nylx;
private Date updatetime;
@Transient
private String ldgh;
//0为接口数据,1为手工输入,2为改变车号,3为改变驾驶员
private Integer jylx=0;
@Transient
private String gsname;
@Transient
private String fgsname;
@Transient
private String linename;
@Transient
private Double zjzl;
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 getFgsdm() {
return fgsdm;
}
public void setFgsdm(String fgsdm) {
this.fgsdm = fgsdm;
}
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;
}
public String getGsname() {
return BasicData.businessCodeNameMap!=null?BasicData.businessCodeNameMap.get(this.gsdm):gsname;
}
public void setGsname(String gsname) {
this.gsname = gsname;
}
public String getFgsname() {
return BasicData.businessFgsCodeNameMap!=null?BasicData.businessFgsCodeNameMap.get(this.fgsdm+"_"+this.gsdm):fgsname;
}
public void setFgsname(String fgsname) {
this.fgsname = fgsname;
}
public Double getZjzl() {
return zjzl;
}
public void setZjzl(Double zjzl) {
this.zjzl = zjzl;
}
public String getLinename() {
return linename;
}
public void setLinename(String linename) {
this.linename = linename;
}
public Date getUpdatetime() {
return updatetime;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
}