提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 291189 |
|
8 |
* @description CLIENT_AttachVehiclesDistributionData回调信息 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/07/03 14:46:48 |
|
11 |
*/ |
|
12 |
public class NET_CB_VEHICLES_DISTRIBUTION_DATA extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
服务器订阅ID号 |
|
15 |
*/ |
|
16 |
public int nSID; |
|
17 |
/** |
|
18 |
通道号 |
|
19 |
*/ |
|
20 |
public int nChannel; |
|
21 |
/** |
|
22 |
统计区数据个数 |
|
23 |
*/ |
|
24 |
public int nVehiclesDataNums; |
|
25 |
/** |
|
26 |
统计区数据 |
|
27 |
*/ |
|
28 |
public NET_VEHICLES_DISTRIBUTION_DATA[] stuVehiclesData=new NET_VEHICLES_DISTRIBUTION_DATA[16]; |
|
29 |
|
|
30 |
public NET_CB_VEHICLES_DISTRIBUTION_DATA(){ |
|
31 |
for(int i=0;i<stuVehiclesData.length;i++){ |
|
32 |
stuVehiclesData[i]=new NET_VEHICLES_DISTRIBUTION_DATA(); |
|
33 |
} |
|
34 |
} |
|
35 |
} |