ZnddLb.java
1.92 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
package com.bsth.entity.zndd;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
@Table(name = "zndd_lb") //智能调度记录查询表
@JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"})
public class ZnddLb {
@Id
private Long id;
private String lineCode;
private String lineName;
//车辆自编号
private String clZbh;
//驾驶员工号
private String jGh;
//请假类型
private String qjType;
//请假日期
private String rqStr;
//请假状态
private String status;
//日期
private String rq;
public String getRq() {
return rq;
}
public void setRq(String rq) {
this.rq = rq;
}
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public String getLineName() {
return lineName;
}
public void setLineName(String lineName) {
this.lineName = lineName;
}
public String getClZbh() {
return clZbh;
}
public void setClZbh(String clZbh) {
this.clZbh = clZbh;
}
public String getjGh() {
return jGh;
}
public void setjGh(String jGh) {
this.jGh = jGh;
}
public String getQjType() {
return qjType;
}
public void setQjType(String qjType) {
this.qjType = qjType;
}
public String getRqStr() {
return rqStr;
}
public void setRqStr(String rqStr) {
this.rqStr = rqStr;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
}