LAPTOP-SNT8I5JK\Boounion
2025-04-25 16fe8474c740e9f2a497854d4291c48ea7a62878
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
#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;
    }
 
    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;
    }
}