Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3
4 import com.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  非机动车颜色过滤条件 
9 * @origin autoTool
10 * @date 2023/05/29 11:40:46
11 */
12 public class NET_NONMOTOR_COLOR_INFO extends NetSDKLib.SdkStructure {
13 /** 
14 是否启用, 为TRUE则下发非机动车颜色过滤条件,为FALSE则不下发非机动车颜色过滤条件
15 */
16 public            int                    bEnable;
17 /** 
18 非机动车车身颜色的个数,最大值是32
19 */
20 public            int                    nShowListNums;
21 /** 
22 非机动车车身颜色
23 */
24 public            int[]                    emNonMotorColorShowList=new int[32];
25 /** 
26 保留字节
27 */
28 public            byte[]                    szReserved=new byte[256];
29
30 public            NET_NONMOTOR_COLOR_INFO(){
31 }
32 }