28 lines
859 B
Java
Raw Normal View History

2024-05-25 15:56:29 +08:00
package com.zhgd.xmgl.constant;
public interface Cts {
String ASC = "asc";
String DESC = "desc";
String ORDER = "order";
String DEFAULT_PASSWORD = "a!12345678";
String QUERY_TYPE = "queryType";
String DEFAULT = "default";
String SN = "sn";
String PROJECT_LEVEL_AND_CHILDREN = "projectLevelAndChildren";
String PROJECT_LEVEL = "projectLevel";
2024-05-27 18:25:07 +08:00
String PROJECT_SN = "projectSn";
String EXPIRED = "expired";
String ID = "id";
2024-05-27 20:53:36 +08:00
String TODAY = "today";
2024-05-30 19:52:54 +08:00
String REDIS_HIKVISION_COMPARE_DATA = "HIKVISION_COMPARE_DATA_";
String SUCCESS = "success";
String MSG = "msg";
String ENTERPRISE_ID = "enterpriseId";
2024-05-31 11:45:33 +08:00
/**
* 数据校验重试是否成功
*/
String TL_XZ_HIKVISION_COMPARE_DATA_RETRY = "tl_xz_hikvision_compare_data";
2024-05-31 18:47:42 +08:00
String TYPE = "type";
String TEAM_ID = "teamId";
2024-05-25 15:56:29 +08:00
}