提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 251823 |
|
7 |
* @description 日计划时段表内容 |
|
8 |
* @date 2021/09/27 |
|
9 |
*/ |
|
10 |
public class NET_DAY_ACTIONS_INFO extends NetSDKLib.SdkStructure{ |
|
11 |
/** |
|
12 |
* 时段编号,从1开始 |
|
13 |
*/ |
|
14 |
public int nActionNumber; |
|
15 |
|
|
16 |
/** |
|
17 |
* 时段的起始小时 |
|
18 |
*/ |
|
19 |
public int nBeginHour; |
|
20 |
|
|
21 |
/** |
|
22 |
* 时段的起始分钟 |
|
23 |
*/ |
|
24 |
public int nBeginMinute; |
|
25 |
|
|
26 |
/** |
|
27 |
* 时段模式 |
|
28 |
*/ |
|
29 |
public int nCyclePlanControlMode; |
|
30 |
|
|
31 |
/** |
|
32 |
* 预留字节 |
|
33 |
*/ |
|
34 |
public byte[] szReserved = new byte[32]; |
|
35 |
} |