提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 260611 |
|
8 |
* @description 查询记录数条件 |
|
9 |
* @date 2023/05/05 11:12:30 |
|
10 |
*/ |
|
11 |
public class QUERY_DEVICE_LOG_PARAM extends NetSDKLib.SdkStructure { |
|
12 |
/** |
7412dd
|
13 |
* 查询日志类型 {@link com.iailab.netsdk.lib.enumeration.DH_LOG_QUERY_TYPE} |
149dd0
|
14 |
*/ |
H |
15 |
public int emLogType; |
|
16 |
/** |
|
17 |
* 查询日志的开始时间 |
|
18 |
*/ |
|
19 |
public NET_TIME stuStartTime = new NET_TIME(); |
|
20 |
/** |
|
21 |
* 查询日志的结束时间 |
|
22 |
*/ |
|
23 |
public NET_TIME stuEndTime = new NET_TIME(); |
|
24 |
/** |
|
25 |
* 在时间段中从第几条日志开始查询,开始第一次查询可设为0 |
|
26 |
*/ |
|
27 |
public int nStartNum; |
|
28 |
/** |
|
29 |
* 一次查询中到第几条日志结束,日志返回条数的最大值为1024 |
|
30 |
*/ |
|
31 |
public int nEndNum; |
|
32 |
/** |
|
33 |
* 日志数据结构体类型,0:表示DH_DEVICE_LOG_ITEM;1:表示DH_DEVICE_LOG_ITEM_EX |
|
34 |
*/ |
|
35 |
public byte nLogStuType; |
|
36 |
/** |
|
37 |
* 保留 对齐 |
|
38 |
*/ |
|
39 |
public byte[] reserved = new byte[3]; |
|
40 |
/** |
|
41 |
* 通道号,0:兼容之前表示所有通道号,所以通道号从1开始; 1:第一个通道 |
|
42 |
*/ |
|
43 |
public int nChannelID; |
|
44 |
|
|
45 |
public byte[] bReserved = new byte[40]; |
|
46 |
|
|
47 |
public QUERY_DEVICE_LOG_PARAM() { |
|
48 |
} |
|
49 |
} |