Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 260611
 * @description CLIENT_SetVTOManagerRelation 出参
 * @origin autoTool
 * @date 2023/10/19 14:16:46
 */
public class NET_OUT_SET_VTO_MANAGER_RELATION extends NetSDKLib.SdkStructure {
    /**
     * / 结构体大小
     */
    public int dwSize;
    /**
     * / 接口返回结果为0时成功
     */
    public int nErrorCode;
 
    public NET_OUT_SET_VTO_MANAGER_RELATION() {
        this.dwSize = this.size();
    }
}