houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 291189
7  * @version 1.0
8  * @description 开包检查信息
9  * @date 2021/9/9
10  */
11 public class UNPACKING_CHECK_INFO extends NetSDKLib.SdkStructure {
12     /**
13      * 事件发生时间,带时区偏差的UTC时间,单位秒
14      */
15     public int nUTC;
16     /**
17      * 事件时间毫秒数
18      */
19     public int nUTCMS;
20     /**
21      * 表示包裹标识,用来唯一标识一个包裹
22      */
23     public byte[] szPackageTag = new byte[32];
24     /**
25      * 关联图片
26      */
27     public RELATED_IMAGE[] stuRelatedImage = new RELATED_IMAGE[64];
28     /**
29      * 关联图片数量
30      */
31     public int nRelatedImageRetNum;
32
33     /**
34      * 报警时间(即拍摄违禁品时间),UTC时间,单位秒
35      */
36     public int nAlarmTime;
37
38     /**
39      * 身份信息
40      */
41     public IDENTITY_INFO stuIdentityInfo = new IDENTITY_INFO();
42     /**
43      * 违禁物品分类 已经废弃
44      */
45     public OneDimensionalInformation[] szContrabandClass = new OneDimensionalInformation[16];
46     /**
47      * 违禁物品个数
48      */
49     public int nContrabandRetNum;
50     /**
51      * 处理方式  EM_PROCESS_MODE
52      */
53     public int emProcessMode;
54     /**
55      * 检出人,即开包人员
56      */
57     public byte[] szChecker = new byte[128];
58     /**
59      * 报警地点
60      */
61     public byte[] szAlarmLocation = new byte[256];
62     /**
63      * 违禁物品分类  {@link com.netsdk.lib.enumeration.EM_INSIDE_OBJECT_TYPE}
64      */
65     public int[] emContrabandClass = new int[64];
66     /**
67      * 行程出发地
68      */
69     public byte[] szPlaceOfDeparture = new byte[256];
70     /**
71      * 行程目的地
72      */
73     public byte[] szDestination = new byte[256];
74     /**
75      * 预留字节
76      */
77     public byte[] szReserved = new byte[18688];
78
79     public UNPACKING_CHECK_INFO() {
80         for (int i = 0; i < 16; i++) {
81             szContrabandClass[i] = new OneDimensionalInformation();
82         }
83         for (int i = 0; i < 64; i++) {
84             stuRelatedImage[i] = new RELATED_IMAGE();
85         }
86
87     }
88
89 }