ludc
2025-01-16 68fd566d21b3efc3a670a5295289b1801f5a4155
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
#ifndef BASE
#define BASE
module com {
    module vci {  
        module corba {
            module common {
                module data {
 
                    typedef sequence<wstring> WStringArray;
                    typedef sequence<WStringArray> WStringArray2D;
 
                    typedef sequence<octet> bytes;
 
                    typedef sequence<bytes> byteSeq;
 
                    typedef sequence<long> longSeq;
 
                    const long InvocationContextID = 2130771713;
                    
                    struct VCIInvocationInfo {
                        wstring userID;
                        wstring userName;
                        wstring trueName;
                        wstring secretGrade;
                        wstring email;
                        wstring language;
                        wstring country;
                        WStringArray    groupIDs;
                        WStringArray   groupNames;
                        WStringArray    roleIDs;
                        WStringArray   roleNames;
                        wstring clientIPInfo;
                        wstring clientMachine;
                        wstring clientOS;
                        wstring clientOSUser;
                        WStringArray extAttribs;
                    };
                };
 
                // 通用异常信息
                exception VCIError{wstring error_code; data::WStringArray error_message;};
            };
        };
    };
};
#endif