ScheduleExec.java
1010 Bytes
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
package com.bsth.entity;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* @author Hill
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ScheduleExec {
private String lineName;
private String plate;
private String lpName;
private String fcsj;
private Long time;
public String getLineName() {
return lineName;
}
public void setLineName(String lineName) {
this.lineName = lineName;
}
public String getPlate() {
return plate;
}
public void setPlate(String plate) {
this.plate = plate;
}
public String getLpName() {
return lpName;
}
public void setLpName(String lpName) {
this.lpName = lpName;
}
public String getFcsj() {
return fcsj;
}
public void setFcsj(String fcsj) {
this.fcsj = fcsj;
}
public Long getTime() {
return time;
}
public void setTime(Long time) {
this.time = time;
}
}