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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package com.shlanbao.tzsc.base.mapping;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
 
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
 
/**
 * SchShiftExchg entity. @author MyEclipse Persistence Tools
 */
 
public class SchShiftExchg extends BaseEntity implements java.io.Serializable {
 
    // Fields
 
    private String id;
    private SysUser sysUserByHoUser;
    private MdTeam mdTeamByToTeam;
    private MdShift mdShiftByToShift;
    private MdMat mdMatByToMat;
    private MdShift mdShiftByHoShift;
    private MdMat mdMatByHoMat;
    private SysUser sysUserByToUser;
    private Date date;
    private MdTeam mdTeamByHoTeam;
    private Date hoTime;
    private Date toTime;
    private SchWorkorder hoOrder;
    private SchWorkorder toOrder;
    private Long del;
    private Long type;
    private Set schShiftExchgDets = new HashSet(0);
 
    // Constructors
 
    /** default constructor */
    public SchShiftExchg() {
    }
 
    /** full constructor */
 
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
    public SchShiftExchg(String id, SysUser sysUserByHoUser,
            MdTeam mdTeamByToTeam, MdShift mdShiftByToShift,
            MdMat mdMatByToMat, MdShift mdShiftByHoShift, MdMat mdMatByHoMat,
            SysUser sysUserByToUser, Date date, MdTeam mdTeamByHoTeam,
            Date hoTime, Date toTime, SchWorkorder hoOrder,
            SchWorkorder toOrder, Long del, Long type, Set schShiftExchgDets) {
        super();
        this.id = id;
        this.sysUserByHoUser = sysUserByHoUser;
        this.mdTeamByToTeam = mdTeamByToTeam;
        this.mdShiftByToShift = mdShiftByToShift;
        this.mdMatByToMat = mdMatByToMat;
        this.mdShiftByHoShift = mdShiftByHoShift;
        this.mdMatByHoMat = mdMatByHoMat;
        this.sysUserByToUser = sysUserByToUser;
        this.date = date;
        this.mdTeamByHoTeam = mdTeamByHoTeam;
        this.hoTime = hoTime;
        this.toTime = toTime;
        this.hoOrder = hoOrder;
        this.toOrder = toOrder;
        this.del = del;
        this.type = type;
        this.schShiftExchgDets = schShiftExchgDets;
    }
 
    public SchWorkorder getHoOrder() {
        return hoOrder;
    }
 
    public void setHoOrder(SchWorkorder hoOrder) {
        this.hoOrder = hoOrder;
    }
 
    public SchWorkorder getToOrder() {
        return toOrder;
    }
 
    public void setToOrder(SchWorkorder toOrder) {
        this.toOrder = toOrder;
    }
 
    public SchShiftExchg(String id) {
        super();
        this.id = id;
    }
 
    
 
    public void setId(String id) {
        this.id = id;
    }
 
    public SysUser getSysUserByHoUser() {
        return this.sysUserByHoUser;
    }
 
    public void setSysUserByHoUser(SysUser sysUserByHoUser) {
        this.sysUserByHoUser = sysUserByHoUser;
    }
 
    
 
    public MdShift getMdShiftByToShift() {
        return this.mdShiftByToShift;
    }
 
    public void setMdShiftByToShift(MdShift mdShiftByToShift) {
        this.mdShiftByToShift = mdShiftByToShift;
    }
 
    public MdMat getMdMatByToMat() {
        return this.mdMatByToMat;
    }
 
    public void setMdMatByToMat(MdMat mdMatByToMat) {
        this.mdMatByToMat = mdMatByToMat;
    }
 
    public MdShift getMdShiftByHoShift() {
        return this.mdShiftByHoShift;
    }
 
    public void setMdShiftByHoShift(MdShift mdShiftByHoShift) {
        this.mdShiftByHoShift = mdShiftByHoShift;
    }
 
    public MdMat getMdMatByHoMat() {
        return this.mdMatByHoMat;
    }
 
    public void setMdMatByHoMat(MdMat mdMatByHoMat) {
        this.mdMatByHoMat = mdMatByHoMat;
    }
 
    public SysUser getSysUserByToUser() {
        return this.sysUserByToUser;
    }
 
    public void setSysUserByToUser(SysUser sysUserByToUser) {
        this.sysUserByToUser = sysUserByToUser;
    }
 
    public Date getDate() {
        return this.date;
    }
 
    public void setDate(Date date) {
        this.date = date;
    }
 
    
 
    public Date getHoTime() {
        return this.hoTime;
    }
 
    public void setHoTime(Date hoTime) {
        this.hoTime = hoTime;
    }
 
    public Date getToTime() {
        return this.toTime;
    }
 
    public void setToTime(Date toTime) {
        this.toTime = toTime;
    }
 
    
 
    
 
    public Long getDel() {
        return this.del;
    }
 
    public void setDel(Long del) {
        this.del = del;
    }
 
    public Long getType() {
        return type;
    }
 
    public void setType(Long type) {
        this.type = type;
    }
 
    
    
    public MdTeam getMdTeamByToTeam() {
        return mdTeamByToTeam;
    }
 
    public void setMdTeamByToTeam(MdTeam mdTeamByToTeam) {
        this.mdTeamByToTeam = mdTeamByToTeam;
    }
 
    public MdTeam getMdTeamByHoTeam() {
        return mdTeamByHoTeam;
    }
 
    public void setMdTeamByHoTeam(MdTeam mdTeamByHoTeam) {
        this.mdTeamByHoTeam = mdTeamByHoTeam;
    }
 
    public Set getSchShiftExchgDets() {
        return this.schShiftExchgDets;
    }
 
    public void setSchShiftExchgDets(Set schShiftExchgDets) {
        this.schShiftExchgDets = schShiftExchgDets;
    }
 
}