Pu Zhibing
2025-08-06 0efb002d79eda0b1ef539cf8a029f14b5395f83e
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
package com.stylefeng.guns.modular.shunfeng.model.vo;
 
/**
 *
 * 班次拓展类
 */
public class ShiftVo {
    //模板班次ID
    private Integer id;
 
 
    //班次出发时间
    private String startTime;
 
 
    //总票数
    private Integer num;
 
 
    //出发站名称
    private String beginName;
 
 
    //目的地名称
    private String endName;
 
    //剩余票数
    private Integer remaining;
 
    //是否为最近发出班次
    private Integer isLately=0;
    //0否1是
    private Integer isOwner;
 
    private Integer shiftId;
 
    public Integer getRemaining() {
        return remaining;
    }
 
    public void setRemaining(Integer remaining) {
        this.remaining = remaining;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public String getBeginName() {
        return beginName;
    }
 
    public void setBeginName(String beginName) {
        this.beginName = beginName;
    }
 
    public String getEndName() {
        return endName;
    }
 
    public void setEndName(String endName) {
        this.endName = endName;
    }
 
    public Integer getIsLately() {
        return isLately;
    }
 
    public void setIsLately(Integer isLately) {
        this.isLately = isLately;
    }
 
    public Integer getIsOwner() {
        return isOwner;
    }
 
    public void setIsOwner(Integer isOwner) {
        this.isOwner = isOwner;
    }
 
    public Integer getShiftId() {
        return shiftId;
    }
 
    public void setShiftId(Integer shiftId) {
        this.shiftId = shiftId;
    }
}