LAPTOP-SNT8I5JK\Boounion
2025-04-11 92dee0d8070594c351008d02fd9645c9e5de80a7
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
#pragma once
#include <vector>
#include <string>
 
 
namespace SERVO {
    class CJobDataB
    {
    public:
        CJobDataB();
        ~CJobDataB();
 
    public:
        int serialize(char* pszBuffer, int nBufferSize);
 
    private:
        short m_nPortNo;
        std::string m_strCarrierId;
        std::string m_pruductId;
        short m_nCarrierState;
        int m_nSlotMapping;
        int m_nSlotSelectedFlag;
        std::vector<std::string> m_glassIds;
    };
}