LAPTOP-SNT8I5JK\Boounion
2025-04-29 3426d4e0ee09c61ce379cfd1fe9a6e82de346d90
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
#include "stdafx.h"
#include "CJobDataS.h"
 
 
namespace SERVO {
    CJobDataS::CJobDataS()
    {
        m_nCassetteSequenceNo = 0;
        m_nJobSequenceNo = 0;
        m_nJobType = 0;
        m_nMaterialsType = 0;
        m_nProductType = 0;
        m_nDummyType = 0;
        m_nSkipFlag = 0;
        m_nProcessFlag = 0;
        m_nProcessResonCode = 0;
        m_nLastGlassFlag = 0;
        m_nFirstGlassFlag = 0;
        m_nQTime[3] = {0};
        m_nQTimeOverFlag = 0;
        m_nMasterRecipe = 0;
        m_nMode = 0;
        m_nSlotUnitSelectFlag = 0;
        m_nSourcePortNo = 0;
        m_nSourceSlotNo = 0;
        m_nTargetPortNo = 0;
        m_nTargetSlotNo = 0;
    }
 
    CJobDataS::~CJobDataS()
    {
 
    }
 
    int CJobDataS::getCassetteSequenceNo()
    {
        return m_nCassetteSequenceNo;
    }
 
    void CJobDataS::setCassetteSequenceNo(int no)
    {
        m_nCassetteSequenceNo = no;
    }
 
    int CJobDataS::getJobSequenceNo()
    {
        return m_nJobSequenceNo;
    }
 
    void CJobDataS::setJobSequenceNo(int no)
    {
        m_nJobSequenceNo = no;
    }
 
    std::string& CJobDataS::getLotId()
    {
        return m_strLotId;
    }
 
    void CJobDataS::setLotId(const char* pszId)
    {
        m_strLotId = pszId;
    }
 
    std::string& CJobDataS::getProductId()
    {
        return m_strProductId;
    }
 
    void CJobDataS::setProductId(const char* pszId)
    {
        m_strProductId = pszId;
    }
 
    std::string& CJobDataS::getOperationId()
    {
        return m_strOperationId;
    }
 
    void CJobDataS::setOperationId(const char* pszId)
    {
        m_strOperationId = pszId;
    }
 
    std::string& CJobDataS::getGlass1Id()
    {
        return m_strGlass1Id;
    }
 
    void CJobDataS::setGlass1Id(const char* pszId)
    {
        m_strGlass1Id = pszId;
    }
 
    std::string& CJobDataS::getGlass2Id()
    {
        return m_strGlass1Id;
    }
 
    void CJobDataS::setGlass2Id(const char* pszId)
    {
        m_strGlass2Id = pszId;
    }
 
    int CJobDataS::getJobType()
    {
        return m_nJobType;
    }
 
    void CJobDataS::setJobType(int type)
    {
        m_nJobType = type;
    }
 
    int CJobDataS::getMaterialsType()
    {
        return m_nMaterialsType;
    }
 
    void CJobDataS::setMaterialsType(int type)
    {
        m_nMaterialsType = type;
    }
 
    int CJobDataS::getProductType()
    {
        return m_nProductType;
    }
 
    void CJobDataS::setProductType(int type)
    {
        m_nProductType = type;
    }
 
    int CJobDataS::getDummyType()
    {
        return m_nDummyType;
    }
 
    void CJobDataS::setDummyType(int type)
    {
        m_nDummyType = type;
    }
 
    int CJobDataS::getSkipFlag()
    {
        return m_nSkipFlag;
    }
 
    void CJobDataS::setSkipFlag(int flag)
    {
        m_nSkipFlag = flag;
    }
 
    int CJobDataS::getProcessFlag()
    {
        return m_nProcessFlag;
    }
 
    void CJobDataS::setProcessFlag(int flag)
    {
        m_nProcessFlag = flag;
    }
 
    int CJobDataS::getProcessResonCode()
    {
        return m_nProcessResonCode;
    }
 
    void CJobDataS::setProcessResonCode(int code)
    {
        m_nProcessResonCode = code;
    }
 
    int CJobDataS::getLastGlassFlag()
    {
        return m_nLastGlassFlag;
    }
 
    void CJobDataS::setLastGlassFlag(int flag)
    {
        m_nLastGlassFlag = flag;
    }
 
    int CJobDataS::getFirstGlassFlag()
    {
        return m_nFirstGlassFlag;
    }
 
    void CJobDataS::setFirstGlassFlag(int flag)
    {
        m_nFirstGlassFlag = flag;
    }
 
    int CJobDataS::getQTime(int index)
    {
        if (0 <= index && index <= 2) {
            return m_nQTime[index];
        }
 
        return 0;
    }
 
    void CJobDataS::setQTime(int index, int time)
    {
        if (0 <= index && index <= 2) {
            m_nQTime[index] = time;
        }
    }
 
    int CJobDataS::getQTimeOverFlag()
    {
        return m_nQTimeOverFlag;
    }
 
    void CJobDataS::setQTimeOverFlag(int flag)
    {
        m_nQTimeOverFlag = flag;
    }
 
    int CJobDataS::getMasterRecipe()
    {
        return m_nMasterRecipe;
    }
 
    void CJobDataS::setMasterRecipe(int recipe)
    {
        m_nMasterRecipe = recipe;
    }
 
    std::string& CJobDataS::getProductRecipeId()
    {
        return m_strProductRecipeId;
    }
 
    void CJobDataS::setProductRecipeId(const char* pszId)
    {
        m_strProductRecipeId = pszId;
    }
 
    std::string& CJobDataS::getPCode()
    {
        return m_strPCode;
    }
 
    void CJobDataS::setPCode(const char* pszCode)
    {
        m_strPCode = pszCode;
    }
 
    std::string& CJobDataS::getUseType()
    {
        return m_strPCode;
    }
 
    void CJobDataS::setUseType(const char* pszType)
    {
        m_strPCode = pszType;
    }
 
    std::string& CJobDataS::getPanelMeasure()
    {
        return m_strPanelMeasure;
    }
 
    void CJobDataS::setPanelMeasure(const char* pszMeasure)
    {
        m_strPanelMeasure = pszMeasure;
    }
 
    int CJobDataS::getMode()
    {
        return m_nMode;
    }
 
    void CJobDataS::setMode(int mode)
    {
        m_nMode = mode;
    }
 
    int CJobDataS::getSlotUnitSelectFlag()
    {
        return m_nSlotUnitSelectFlag;
    }
 
    void CJobDataS::setSlotUnitSelectFlag(int flag)
    {
        m_nSlotUnitSelectFlag = flag;
    }
 
    int CJobDataS::getSourcePortNo()
    {
        return m_nSourcePortNo;
    }
 
    void CJobDataS::setSourcePortNo(int no)
    {
        m_nSourcePortNo = no;
    }
 
    int CJobDataS::getSourceSlotNo()
    {
        return m_nSourceSlotNo;
    }
 
    void CJobDataS::setSourceSlotNo(int no)
    {
        m_nSourceSlotNo = no;
    }
 
    int CJobDataS::getTargetPortNo()
    {
        return m_nTargetPortNo;
    }
 
    void CJobDataS::setTargetPortNo(int no)
    {
        m_nTargetPortNo = no;
    }
 
    int CJobDataS::getTargetSlotNo()
    {
        return m_nTargetSlotNo;
    }
 
    void CJobDataS::setTargetSlotNo(int no)
    {
        m_nTargetSlotNo = no;
    }
}