StationSignsLogger.java
2 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
package com.bsth.entity.zndd;
import javax.persistence.*;
@Entity
@Table(name = "station_signs_logger")
public class StationSignsLogger {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
//线路编号
private String lineCode;
//线路名称
private String lineName;
//站点code
private String station;
//站点名称
private String stationName;
//上下行
private String dir;
private int num;
private String image;
private long timestamp;
private String sign;
private String calleeId;
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 getStation() {
return station;
}
public void setStation(String station) {
this.station = station;
}
public String getStationName() {
return stationName;
}
public void setStationName(String stationName) {
this.stationName = stationName;
}
public String getDir() {
return dir;
}
public void setDir(String dir) {
this.dir = dir;
}
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public String getSign() {
return sign;
}
public void setSign(String sign) {
this.sign = sign;
}
public String getCalleeId() {
return calleeId;
}
public void setCalleeId(String calleeId) {
this.calleeId = calleeId;
}
}