2025-04-07 19:35:24 +08:00

126 lines
3.6 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.zhgd.xmgl.constant;
public interface Cts {
/*****************sql开始*********************/
String ASC = "asc";
String DESC = "desc";
String ORDER = "order";
String QUERY_TYPE = "queryType";
/**
* 查询日期
*/
String QUERY_DATE = "queryDate";
String TODAY = "today";
String YESTERDAY = "yesterday";
String YEAR_MONTH = "yearMonth";
String GROUP_BY = "groupBy";
String LAST_WEEK_BY_DATE = "lastWeekByDate";
/*****************sql结束*********************/
String DEFAULT = "default";
String SN = "sn";
String PROJECT_LEVEL_AND_CHILDREN = "projectLevelAndChildren";
String PROJECT_CHILDREN = "projectChildren";
String PROJECT_LEVEL = "projectLevel";
String PROJECT_SN = "projectSn";
String EXPIRED = "expired";
String ID = "id";
String REDIS_HIKVISION_COMPARE_DATA = "HIKVISION_COMPARE_DATA_";
String SUCCESS = "success";
String MSG = "msg";
String ENTERPRISE_ID = "enterpriseId";
String TYPE = "type";
String TEAM_ID = "teamId";
String DEPARTMENT_ID = "departmentId";
String RESERVATION_TYPE = "reservationType";
String YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss";
String YYYY_MM_DD = "yyyy-MM-dd";
String TL_AUTH_USER = "authUser";
String PAGE_NO = "pageNo";
String PAGE_SIZE = "pageSize";
/**
* 数据校验重试是否成功
*/
String TL_XZ_HIKVISION_COMPARE_DATA_RETRY = "tl_xz_hikvision_compare_data";
String TL_IS_FROM_TASK = "isFromTask";
/**
* 是否请求接口
*/
String TL_IS_FROM_WEB = "isFromWeb";
String TL_SEND_BATCH_WORKER_COUNT_DOWN_LATCH = "sendBatchWorkerCountDownLatch";
/**
* 1添加权限2删除权限
*/
String IS_ADD_AUTH = "isAddAuth";
/**
* 是否需要简单删除权限
*/
String IS_SIMPLE_DELETE_AUTH = "isSimpleDeleteAuth";
/**
* 1成功
*/
String HK_SYNC_AUTH_SUCCESS_KEY = "hkSyncAuthSuccess:";
String TL_HK_SYNC_ID = "tl_hk_sync_id";
String TL_IS_NOMAL_INTERFACE = "isNormalInterface";
/**
* 日志前后对比数据前参数,更新和删除
*/
String TL_UPDATE_DEL_BEFORE_PARAM = "tlUpdateDelBeforeParams";
/**
* 日志前后对比数据前参数,插入
*/
String TL_INSERT_BEFORE_PARAM = "tlInsertBeforeParams";
/**
* 忽略数据权限
*/
String IGNORE_DATA_SCOPE = "ignoreDataScope";
/**
* 忽略数据权限查询条件
*/
String IGNORE_DATA_SCOPE_CONDITION = " and 'ignoreDataScope' = 'ignoreDataScope' ";
String IGNORE_DATA_SCOPE_CONDITION_WHERE = "where 'ignoreDataScope' = 'ignoreDataScope' ";
String DOT = ".";
/**
* 人员安全评分最高
*/
double WORKER_SAFE_MAX_SCORE = 100D;
/**
* 人员安全评分最低
*/
double WORKER_SAFE_MIN_SCORE = 0D;
/**
* 逗点
*/
String COMMA = ",";
String ZERO_SCORE = "0";
String HUNDRED_SCORE = "100";
String DOUBLE_SLASH = "//";
String SINGLE_SLASH = "/";
String BAR = "-";
String COLON = ":";
//////////////////////////重复的变量
String STR = ":";
String STRING = "#";
String STR12334 = ".";
String S1111 = "_";
String STR1112 = ".";
String S32434 = ".";
String LIMIT_1 = "limit 1";
public static final String MINIO_1 = "minio-1";
/**
* 同步isc的班组要加上这个后缀区分同个单位下同名的部门和班组
*/
public static final String ISC_SYNC_TEAM_SUFFIX = "(工种)";
public static final String ISC_SYNC_DEPARTMENT_SUFFIX = "(岗位)";
}