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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 报警通道数
 * @date 2021/11/04
 */
public class NET_ALARM_CHANNEL_COUNT extends NetSDKLib.SdkStructure{
    /**
     * 结构体大小
     */
    public int dwSize;
    /**
     *  本地报警输入通道数
     */
    public int nLocalAlarmIn;
 
    /**
     *  本地报警输出通道数
     */
    public int nLocalAlarmOut;
 
    /**
     *  远程报警输入通道数
     */
    public int nRemoteAlarmIn;
 
    /**
     *  远程报警输出通道数
     */
    public int nRemoteAlarmOut;
 
    public NET_ALARM_CHANNEL_COUNT (){
        this.dwSize = this.size();
    }
}