Commit 5c7dc54f12e5f018adc9e4be5be63116c8f1599a

Authored by 潘钊
2 parents 68c85bcb bc92ef1e

Merge branch 'master' of 192.168.168.201:panzhaov5/bsth_control

src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
@@ -47,55 +47,23 @@ public class SchedulePlanInfo { @@ -47,55 +47,23 @@ public class SchedulePlanInfo {
47 @Column(nullable = false) 47 @Column(nullable = false)
48 private String clZbh; 48 private String clZbh;
49 49
50 -  
51 - /** 报道1时间(格式 HH:mm) */  
52 - private String bd1Time;  
53 - /** 出场1时间(格式 HH:mm) */  
54 - @Column(nullable = false)  
55 - private String cc1Time;  
56 - /** 关联 bsth_c_personnel 主键,不做mapping */  
57 - @Column(nullable = false)  
58 - private Integer j1;  
59 - /** 驾驶员1工号 */  
60 - @Column(nullable = false)  
61 - private String j1Gh;  
62 - /** 驾驶员1名字 */  
63 - @Column(nullable = false)  
64 - private String j1Name;  
65 - /** 售票员1工号 */  
66 - private String s1Gh;  
67 - /** 售票员1名字 */  
68 - private String s1Name;  
69 -  
70 - /** 报道2时间(格式 HH:mm) */  
71 - private String bd2Time;  
72 - /** 出场2时间(格式 HH:mm) */  
73 - private String cc2Time;  
74 - /** 驾驶员2工号 */  
75 - private String j2Gh;  
76 - /** 驾驶员2名字 */  
77 - private String j2Name;  
78 - /** 售票员2工号 */  
79 - private String s2Gh;  
80 - /** 售票员2名字 */  
81 - private String s2Name;  
82 -  
83 - // 上面的暂时保留,之后删除 50 + /** 当分班的时候,驾驶员会不一样,具体根据规则,还有时刻表决定 */
84 /** 报道时间(格式 HH:mm) */ 51 /** 报道时间(格式 HH:mm) */
85 - @Column(nullable = false)  
86 private String bdTime; 52 private String bdTime;
87 /** 出场时间(格式 HH:mm) */ 53 /** 出场时间(格式 HH:mm) */
88 - @Column(nullable = false)  
89 private String ccTime; 54 private String ccTime;
  55 + /** 关联 bsth_c_personnel 主键,不做mapping */
  56 + @Column(nullable = false)
  57 + private Integer j;
90 /** 驾驶员工号 */ 58 /** 驾驶员工号 */
91 @Column(nullable = false) 59 @Column(nullable = false)
92 private String jGh; 60 private String jGh;
93 /** 驾驶员名字 */ 61 /** 驾驶员名字 */
94 @Column(nullable = false) 62 @Column(nullable = false)
95 private String jName; 63 private String jName;
96 - /** 售票员2工号 */ 64 + /** 售票员工号 */
97 private String sGh; 65 private String sGh;
98 - /** 售票员2名字 */ 66 + /** 售票员名字 */
99 private String sName; 67 private String sName;
100 68
101 // 冗余的时刻明细信息,不做mapping 69 // 冗余的时刻明细信息,不做mapping
@@ -222,108 +190,60 @@ public class SchedulePlanInfo { @@ -222,108 +190,60 @@ public class SchedulePlanInfo {
222 this.clZbh = clZbh; 190 this.clZbh = clZbh;
223 } 191 }
224 192
225 - public String getBd1Time() {  
226 - return bd1Time;  
227 - }  
228 -  
229 - public void setBd1Time(String bd1Time) {  
230 - this.bd1Time = bd1Time;  
231 - }  
232 -  
233 - public String getCc1Time() {  
234 - return cc1Time;  
235 - }  
236 -  
237 - public void setCc1Time(String cc1Time) {  
238 - this.cc1Time = cc1Time;  
239 - }  
240 -  
241 - public Integer getJ1() {  
242 - return j1;  
243 - }  
244 -  
245 - public void setJ1(Integer j1) {  
246 - this.j1 = j1;  
247 - }  
248 -  
249 - public String getJ1Gh() {  
250 - return j1Gh;  
251 - }  
252 -  
253 - public void setJ1Gh(String j1Gh) {  
254 - this.j1Gh = j1Gh;  
255 - }  
256 -  
257 - public String getJ1Name() {  
258 - return j1Name;  
259 - }  
260 -  
261 - public void setJ1Name(String j1Name) {  
262 - this.j1Name = j1Name;  
263 - }  
264 -  
265 - public String getS1Gh() {  
266 - return s1Gh;  
267 - }  
268 -  
269 - public void setS1Gh(String s1Gh) {  
270 - this.s1Gh = s1Gh;  
271 - }  
272 -  
273 - public String getS1Name() {  
274 - return s1Name; 193 + public String getBdTime() {
  194 + return bdTime;
275 } 195 }
276 196
277 - public void setS1Name(String s1Name) {  
278 - this.s1Name = s1Name; 197 + public void setBdTime(String bdTime) {
  198 + this.bdTime = bdTime;
279 } 199 }
280 200
281 - public String getBd2Time() {  
282 - return bd2Time; 201 + public String getCcTime() {
  202 + return ccTime;
283 } 203 }
284 204
285 - public void setBd2Time(String bd2Time) {  
286 - this.bd2Time = bd2Time; 205 + public void setCcTime(String ccTime) {
  206 + this.ccTime = ccTime;
287 } 207 }
288 208
289 - public String getCc2Time() {  
290 - return cc2Time; 209 + public Integer getJ() {
  210 + return j;
291 } 211 }
292 212
293 - public void setCc2Time(String cc2Time) {  
294 - this.cc2Time = cc2Time; 213 + public void setJ(Integer j) {
  214 + this.j = j;
295 } 215 }
296 216
297 - public String getJ2Gh() {  
298 - return j2Gh; 217 + public String getjGh() {
  218 + return jGh;
299 } 219 }
300 220
301 - public void setJ2Gh(String j2Gh) {  
302 - this.j2Gh = j2Gh; 221 + public void setjGh(String jGh) {
  222 + this.jGh = jGh;
303 } 223 }
304 224
305 - public String getJ2Name() {  
306 - return j2Name; 225 + public String getjName() {
  226 + return jName;
307 } 227 }
308 228
309 - public void setJ2Name(String j2Name) {  
310 - this.j2Name = j2Name; 229 + public void setjName(String jName) {
  230 + this.jName = jName;
311 } 231 }
312 232
313 - public String getS2Gh() {  
314 - return s2Gh; 233 + public String getsGh() {
  234 + return sGh;
315 } 235 }
316 236
317 - public void setS2Gh(String s2Gh) {  
318 - this.s2Gh = s2Gh; 237 + public void setsGh(String sGh) {
  238 + this.sGh = sGh;
319 } 239 }
320 240
321 - public String getS2Name() {  
322 - return s2Name; 241 + public String getsName() {
  242 + return sName;
323 } 243 }
324 244
325 - public void setS2Name(String s2Name) {  
326 - this.s2Name = s2Name; 245 + public void setsName(String sName) {
  246 + this.sName = sName;
327 } 247 }
328 248
329 public String getXlDir() { 249 public String getXlDir() {
@@ -445,52 +365,4 @@ public class SchedulePlanInfo { @@ -445,52 +365,4 @@ public class SchedulePlanInfo {
445 public void setUpdateDate(Date updateDate) { 365 public void setUpdateDate(Date updateDate) {
446 this.updateDate = updateDate; 366 this.updateDate = updateDate;
447 } 367 }
448 -  
449 - public String getBdTime() {  
450 - return bdTime;  
451 - }  
452 -  
453 - public void setBdTime(String bdTime) {  
454 - this.bdTime = bdTime;  
455 - }  
456 -  
457 - public String getCcTime() {  
458 - return ccTime;  
459 - }  
460 -  
461 - public void setCcTime(String ccTime) {  
462 - this.ccTime = ccTime;  
463 - }  
464 -  
465 - public String getjGh() {  
466 - return jGh;  
467 - }  
468 -  
469 - public void setjGh(String jGh) {  
470 - this.jGh = jGh;  
471 - }  
472 -  
473 - public String getjName() {  
474 - return jName;  
475 - }  
476 -  
477 - public void setjName(String jName) {  
478 - this.jName = jName;  
479 - }  
480 -  
481 - public String getsGh() {  
482 - return sGh;  
483 - }  
484 -  
485 - public void setsGh(String sGh) {  
486 - this.sGh = sGh;  
487 - }  
488 -  
489 - public String getsName() {  
490 - return sName;  
491 - }  
492 -  
493 - public void setsName(String sName) {  
494 - this.sName = sName;  
495 - }  
496 } 368 }