Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 区间测速信息
8  * @date 2022/12/07 20:58:01
9  */
10 public class NET_REGION_INFO extends NetSDKLib.SdkStructure {
11     /**
12      * 驶入时间
13      */
14     public NET_TIME stuDriveInTime = new NET_TIME();
15     /**
16      * 驶出时间
17      */
18     public NET_TIME stuDriveOutTime = new NET_TIME();
19     /**
20      * 保留字节
21      */
22     public byte[] bReserved = new byte[1024];
23
24     public NET_REGION_INFO() {
25     }
26 }