LAPTOP-SNT8I5JK\Boounion
2025-04-26 e1b3a1f5e35b09be95d694bc259b0ba92c4d3436
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
#pragma once
 
 
namespace SERVO {
    class CJobDataC
    {
    public:
        CJobDataC();
        ~CJobDataC();
 
    public:
        int getCassetteSequenceNo();
        void setCassetteSequenceNo(int no);
        std::string& getCassetteId();
        void setCassetteId(const char* pszId);
        std::string& getCassetteJudge();
        void setCassetteJudge(const char* pszJudge);
        int getCassetteProcessFlag();
        void setCassetteProcessFlag(int flag);
        std::string& getMasterRecipe();
        void setMasterRecipe(const char* pszRecipe);
 
    private:
        int m_nCassetteSequenceNo;
        std::string m_strCassetteId;
        std::string m_strCassetteJudge;
        int m_nCassetteProcessFlag;
        std::string m_strMasterRecipe;
    };
}