zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package com.shlanbao.tzsc.pms.sch.shiftexchg.beans;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
 
/**
 * 换班换牌
 * @author Leejean
 * @create 2014年11月25日下午1:24:52
 */
public class ShiftExchgBean extends BaseEntity {
    private String id;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String date;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String date2;
    //交班
    private String hoOrderId;
    private String hoUser;
    private String hoShift;
    private String hoTeam;
    private String hoMat;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm")
    private String hoTime;
    //接班
    private String toOrderId;
    private String toUser;
    private String toShift;
    private String toTeam;
    private String toMat;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm")
    private String toTime;
    private String workshop;
    private String equipment;
    private Long del;
    private Long type;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getDate() {
        return date;
    }
    public void setDate(String date) {
        this.date = date;
    }
    public String getHoUser() {
        return hoUser;
    }
    public void setHoUser(String hoUser) {
        this.hoUser = hoUser;
    }
    public String getHoShift() {
        return hoShift;
    }
    public void setHoShift(String hoShift) {
        this.hoShift = hoShift;
    }
    public String getHoTeam() {
        return hoTeam;
    }
    public void setHoTeam(String hoTeam) {
        this.hoTeam = hoTeam;
    }
    public String getHoMat() {
        return hoMat;
    }
    public void setHoMat(String hoMat) {
        this.hoMat = hoMat;
    }
    public String getHoTime() {
        return hoTime;
    }
    public void setHoTime(String hoTime) {
        this.hoTime = hoTime;
    }
    public String getToUser() {
        return toUser;
    }
    public void setToUser(String toUser) {
        this.toUser = toUser;
    }
    public String getToShift() {
        return toShift;
    }
    public void setToShift(String toShift) {
        this.toShift = toShift;
    }
    public String getToTeam() {
        return toTeam;
    }
    public void setToTeam(String toTeam) {
        this.toTeam = toTeam;
    }
    public String getToMat() {
        return toMat;
    }
    public void setToMat(String toMat) {
        this.toMat = toMat;
    }
    public String getToTime() {
        return toTime;
    }
    public void setToTime(String toTime) {
        this.toTime = toTime;
    }
    public String getEquipment() {
        return equipment;
    }
    public void setEquipment(String equipment) {
        this.equipment = equipment;
    }
    public Long getDel() {
        return del;
    }
    public void setDel(Long del) {
        this.del = del;
    }
    public Long getType() {
        return type;
    }
    public void setType(Long type) {
        this.type = type;
    }
    public String getHoOrderId() {
        return hoOrderId;
    }
    public void setHoOrderId(String hoOrderId) {
        this.hoOrderId = hoOrderId;
    }
    public String getToOrderId() {
        return toOrderId;
    }
    public void setToOrderId(String toOrderId) {
        this.toOrderId = toOrderId;
    }
    public String getWorkshop() {
        return workshop;
    }
    public void setWorkshop(String workshop) {
        this.workshop = workshop;
    }
 
 
    public String getDate2() {
        return date2;
    }
 
    public void setDate2(String date2) {
        this.date2 = date2;
    }
}