package constant;
|
|
/**
|
* 海康优云请求参数常量
|
*/
|
public class ApiConstants {
|
//成功状态码
|
public final static String HKSuccessCode = "0";
|
public final static String UYSuccessCodeStr = "200";
|
public final static Integer UYSuccessCode = 200;
|
public final static Integer pageNo = 1;
|
public final static Integer pageSize = 20000;
|
//请求参数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;
|
|
//优云在线状态 1在线 0未知 -1离线
|
public final static Integer UY_OnlineSite_Online = 1;
|
public final static Integer UY_OnlineSite_Unknown = 0;
|
public final static Integer UY_OnlineSite_Offline = -1;
|
//优云录像完整状态
|
public final static Integer UY_RecordStatus_Integrity = 1;
|
public final static Integer UY_RecordStatus_Interval = 0;
|
public final static Integer UY_RecordStatus_Abnormal = -1;
|
}
|