package com.netsdk.lib.structure;
|
|
|
import com.netsdk.lib.NetSDKLib;
|
|
/**
|
* @author 291189
|
* @description 车牌颜色过滤配置
|
* @origin autoTool
|
* @date 2023/05/29 11:40:45
|
*/
|
public class NET_VEHICLE_PLATE_COLOR_INFO extends NetSDKLib.SdkStructure {
|
/**
|
是否过滤启用: TRUE-下发该配置 FALSE-不下发该配置
|
*/
|
public int bEnable;
|
/**
|
车牌颜色的个数,最大值是16
|
*/
|
public int nShowListNums;
|
/**
|
车牌颜色
|
*/
|
public int[] emVehiclePlateColorShowList=new int[16];
|
/**
|
保留字节
|
*/
|
public byte[] szReserved=new byte[256];
|
|
public NET_VEHICLE_PLATE_COLOR_INFO(){
|
}
|
}
|