提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 421657 |
|
8 |
* @description VTOInfo的格式 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/10/26 09:34:52 |
|
11 |
*/ |
|
12 |
public class NET_TALK_DEV_FRONT_DEV_INFO extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
* / 是否使能 |
|
15 |
*/ |
|
16 |
public int bEnable; |
|
17 |
/** |
|
18 |
* / Ip地址 |
|
19 |
*/ |
|
20 |
public byte[] szAddress = new byte[40]; |
|
21 |
/** |
|
22 |
* / 对讲协议端口 |
|
23 |
*/ |
|
24 |
public int nPort; |
|
25 |
/** |
|
26 |
* / 前端设备类型类型, "Vto": 单元门口机, "Wall": 围墙机, "Visitor": 访客机 |
|
27 |
*/ |
|
28 |
public byte[] szType = new byte[32]; |
|
29 |
/** |
|
30 |
* / 中号 |
|
31 |
*/ |
|
32 |
public byte[] szMiddleNumber = new byte[16]; |
|
33 |
/** |
|
34 |
* / 设备所处位置 |
|
35 |
*/ |
|
36 |
public byte[] szMachineAddress = new byte[64]; |
|
37 |
/** |
|
38 |
* / 设备呼叫室内机,室内机的铃声文件 |
|
39 |
*/ |
|
40 |
public byte[] szRingFile = new byte[64]; |
|
41 |
/** |
|
42 |
* / 设备呼叫室内机,室内机的铃声大小 |
|
43 |
*/ |
|
44 |
public int nRingVolume; |
|
45 |
/** |
|
46 |
* / 设备的Rtsp端口 |
|
47 |
*/ |
|
48 |
public int nRtspPort; |
|
49 |
/** |
|
50 |
* / Dtmf1开锁码 |
|
51 |
*/ |
|
52 |
public byte[] szUnlockDtmf1 = new byte[32]; |
|
53 |
/** |
|
54 |
* / Dtmf2开锁码 |
|
55 |
*/ |
|
56 |
public byte[] szUnlockDtmf2 = new byte[32]; |
|
57 |
/** |
|
58 |
* / 三代登陆用户 |
|
59 |
*/ |
|
60 |
public byte[] szUsername = new byte[32]; |
|
61 |
/** |
|
62 |
* / 三代登陆密码 |
|
63 |
*/ |
|
64 |
public byte[] szPassword = new byte[32]; |
|
65 |
/** |
|
66 |
* / 设备可支持锁数量 |
|
67 |
*/ |
|
68 |
public int nLockNumber; |
|
69 |
/** |
|
70 |
* / 联动IPC的配置信息 |
|
71 |
*/ |
|
72 |
public byte[] szLinkIPC = new byte[32]; |
|
73 |
/** |
|
74 |
* / 设备设备序列号 |
|
75 |
*/ |
|
76 |
public byte[] szSN = new byte[32]; |
|
77 |
/** |
|
78 |
* / 是否使用设备所处位置扩展字段 |
|
79 |
*/ |
|
80 |
public int bMachineAddressEx; |
|
81 |
/** |
|
82 |
* / 设备所处位置扩展 |
|
83 |
*/ |
|
84 |
public byte[] szMachineAddressEx = new byte[256]; |
|
85 |
|
|
86 |
public NET_TALK_DEV_FRONT_DEV_INFO() { |
|
87 |
} |
|
88 |
} |