package constant;
|
|
/**
|
* 海康优云请求参数常量
|
*/
|
public class ApiConstants {
|
//成功状态码
|
public final static String HKSuccessCode = "0";
|
public final static Integer UYSuccessCode = 200;
|
public final static Integer pageNo = 1;
|
public final static Integer pageSize = 5000;
|
//请求参数dataType-卡口过车
|
public final static Integer HK_DATATYPE_CAR = 1;
|
//请求参数dataType-人脸数据
|
public final static Integer HK_DATATYPE_FACE = 2;
|
|
//抓拍数据量监测结果 正常
|
public final static Integer HK_SnapCount_ResultType_Normal = 1;
|
//抓拍数据量监测结果 无数据
|
public final static Integer HK_SnapCount_ResultType_Null = 2;
|
//抓拍数据量监测结果 数据突降
|
public final static Integer HK_SnapCount_ResultType_Descent = 3;
|
|
//请求参数dataType 数据量少
|
public final static Integer HK_DATATYPE_ResultType_Low = 4;
|
|
//经纬度检测结果 正常
|
public final static Integer HK_Info_LayType_Normal = 1;
|
//经纬度检测结果 经纬度缺失
|
public final static Integer HK_Info_LayType_Absent = 2;
|
//经纬度检测结果 不在辖区
|
public final static Integer HK_Info_LayType_NotIn = 3;
|
//经纬度检测结果 精度低
|
public final static Integer HK_Info_LayType_Low = 4;
|
|
//国际编码监测结果 正常
|
public final static Integer HK_Info_GbCodeType_Normal = 1;
|
//国际编码监测结果 编码长度不等于20位
|
public final static Integer HK_Info_GbCodeType_NotEq = 2;
|
//国际编码监测结果 前6位不合标准
|
public final static Integer HK_Info_GbCodeType_6NotStandard = 3;
|
//国际编码监测结果 11-13位不合标准
|
public final static Integer HK_Info_GbCodeType_11NotStandard = 4;
|
|
|
}
|