StationPeopleLogger.java
2.55 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
package com.bsth.entity.zndd;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import javax.persistence.*;
import java.io.Serializable;
@Entity
@Table(name = "bsth_c_t_station_people_logger") //智能调度记录检测表
@JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"})
public class StationPeopleLogger implements Serializable {
// ID
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String lineCode;
//线路名称
private String lineName;
//站点code
@Transient
private String station;
//站点名称
@Transient
private String stationName;
//日期
private String rqStr;
//日期 HH:mm:ss
private String rq;
//类型 'DJG': '大间隔','FCJG': '发车间隔','WD': '误点','MZ': '满载率高','DKL': '大客流',
private String type;
//上下行
private String xlDir;
//人数 or 差距时间 or 站点差数 根据类型判断
private String fcsj;
private String clZbh;
public String getClZbh() {
return clZbh;
}
public void setClZbh(String clZbh) {
this.clZbh = clZbh;
}
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
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 getRqStr() {
return rqStr;
}
public void setRqStr(String rqStr) {
this.rqStr = rqStr;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getXlDir() {
return xlDir;
}
public void setXlDir(String xlDir) {
this.xlDir = xlDir;
}
public String getRq() {
return rq;
}
public void setRq(String rq) {
this.rq = rq;
}
public String getFcsj() {
return fcsj;
}
public void setFcsj(String fcsj) {
this.fcsj = fcsj;
}
public String getStation() {
return station;
}
public void setStation(String station) {
this.station = station;
}
public String getStationName() {
return stationName;
}
public void setStationName(String stationName) {
this.stationName = stationName;
}
}