提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 260611 |
|
7 |
* @description 一人对单个门支持多时段和假日计划方案 |
|
8 |
* @origin autoTool |
|
9 |
* @date 2023/09/07 19:26:37 |
|
10 |
*/ |
|
11 |
public class NET_MULTI_TIMESECTION_INFO extends NetSDKLib.SdkStructure { |
|
12 |
/** |
|
13 |
* 门权限,控制器中的索引 |
|
14 |
*/ |
|
15 |
public int nDoor; |
|
16 |
/** |
|
17 |
* 门权限对应时间段索引数量 |
|
18 |
*/ |
|
19 |
public int nTimeSectionNum; |
|
20 |
/** |
|
21 |
* 门权限对应时间段索引, 表示当前门权限可在此时间段通行 |
|
22 |
*/ |
|
23 |
public int[] nTimeSectionList = new int[128]; |
|
24 |
/** |
|
25 |
* 假日计划标识 |
|
26 |
*/ |
|
27 |
public int[] nSpecialDaysScheduleList = new int[128]; |
|
28 |
/** |
|
29 |
* 假日计划标识数量 |
|
30 |
*/ |
|
31 |
public int nSpecialDaysScheduleNum; |
|
32 |
/** |
|
33 |
* 保留字节 |
|
34 |
*/ |
|
35 |
public byte[] szReserved = new byte[508]; |
|
36 |
|
|
37 |
public NET_MULTI_TIMESECTION_INFO() { |
|
38 |
} |
|
39 |
} |