ScheduleRealInfo.java
5.13 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package com.bsth.entity.realcontrol;
import com.bsth.entity.sys.SysUser;
import javax.persistence.*;
import java.util.Date;
/**
* 实际排班计划明细。
*/
@Entity
@Table(name = "bsth_c_s_sp_info_real")
public class ScheduleRealInfo {
/** 主键Id */
@Id
@GeneratedValue
private Long id;
/** 排班计划日期 */
private Date scheduleDate;
/** 路牌名称 */
private String lpName;
/** 线路编码 */
private String xlBm;
/** 线路名称 */
private String xlName;
/** 车辆自编号 */
private String clZbh;
/** 报道1时间(格式 HH:mm) */
private String bd1Time;
/** 出场1时间(格式 HH:mm) */
private String cc1Time;
/** 驾驶员1工号 */
private String j1Gh;
/** 驾驶员1名字 */
private String j1Name;
/** 售票员1工号 */
private String s1Gh;
/** 售票员1名字 */
private String s1Name;
// 冗余的时刻明细信息
/** 线路方向 */
private String xlDir;
/** 起点站名称 */
private String qdz;
/** 终点站名称 */
private String zdz;
/** 发车时间(格式 HH:mm) */
private String fcsj;
/** 发车顺序号 */
private int fcno;
/** 对应班次数 */
private int bcs;
/** 计划里程 */
private double jhlc;
/** 班次历时 */
private int bcsj;
/** 操作人 */
@ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY)
private SysUser user;
// 创建日期
@Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP")
private Date createDate;
// 修改日期
@Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
private Date updateDate;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Date getScheduleDate() {
return scheduleDate;
}
public void setScheduleDate(Date scheduleDate) {
this.scheduleDate = scheduleDate;
}
public String getLpName() {
return lpName;
}
public void setLpName(String lpName) {
this.lpName = lpName;
}
public String getXlName() {
return xlName;
}
public void setXlName(String xlName) {
this.xlName = xlName;
}
public String getClZbh() {
return clZbh;
}
public void setClZbh(String clZbh) {
this.clZbh = clZbh;
}
public String getCc1Time() {
return cc1Time;
}
public void setCc1Time(String cc1Time) {
this.cc1Time = cc1Time;
}
public String getJ1Gh() {
return j1Gh;
}
public void setJ1Gh(String j1Gh) {
this.j1Gh = j1Gh;
}
public String getJ1Name() {
return j1Name;
}
public void setJ1Name(String j1Name) {
this.j1Name = j1Name;
}
public String getS1Gh() {
return s1Gh;
}
public void setS1Gh(String s1Gh) {
this.s1Gh = s1Gh;
}
public String getS1Name() {
return s1Name;
}
public void setS1Name(String s1Name) {
this.s1Name = s1Name;
}
public String getBd1Time() {
return bd1Time;
}
public void setBd1Time(String bd1Time) {
this.bd1Time = bd1Time;
}
public String getXlDir() {
return xlDir;
}
public void setXlDir(String xlDir) {
this.xlDir = xlDir;
}
public String getQdz() {
return qdz;
}
public void setQdz(String qdz) {
this.qdz = qdz;
}
public String getZdz() {
return zdz;
}
public void setZdz(String zdz) {
this.zdz = zdz;
}
public String getFcsj() {
return fcsj;
}
public void setFcsj(String fcsj) {
this.fcsj = fcsj;
}
public SysUser getUser() {
return user;
}
public void setUser(SysUser user) {
this.user = user;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public Date getUpdateDate() {
return updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
public int getFcno() {
return fcno;
}
public void setFcno(int fcno) {
this.fcno = fcno;
}
public int getBcs() {
return bcs;
}
public void setBcs(int bcs) {
this.bcs = bcs;
}
public double getJhlc() {
return jhlc;
}
public void setJhlc(double jhlc) {
this.jhlc = jhlc;
}
public int getBcsj() {
return bcsj;
}
public void setBcsj(int bcsj) {
this.bcsj = bcsj;
}
public String getXlBm() {
return xlBm;
}
public void setXlBm(String xlBm) {
this.xlBm = xlBm;
}
}