新增设备管理模块

This commit is contained in:
2025-09-24 13:29:10 +08:00
parent f278056c80
commit 069c1664ca
111 changed files with 11916 additions and 1 deletions

View File

@@ -72,5 +72,14 @@ public interface Constants {
*/
String TOKEN = "token";
/**
* 字典管理缓存键前缀
*/
String SYS_DICT_KEY = "sys_dict:";
/**
* 资源映射路径 前缀
*/
String RESOURCE_PREFIX = "/profile";
}

View File

@@ -128,5 +128,26 @@ public interface UserConstants {
* 管理员ID
*/
Long ADMIN_ID = 1L;
String DV_CHECK_STATUS_NOTCHECK = "O"; //未检验
/**
* 单据的状态类型
*/
String ORDER_STATUS_PREPARE = "PREPARE";
String ORDER_STATUS_CONFIRMED = "CONFIRMED";
String ORDER_STATUS_APPROVING = "APPROVING";
String ORDER_STATUS_APPROVED = "APPROVED";
String ORDER_STATUS_FINISHED = "FINISHED";
String ORDER_STATUS_CANCELED = "CANCELED";
String DV_PLAN_TYPE_CHECK = "CHECK"; //点检方案
/**
* 排班日历的查询方式
*/
String CAL_QUERY_BY_TYPE = "TYPE";
String CAL_QUERY_BY_TEAM = "TEAM";
String CAL_QUERY_BY_USER = "USER";
String NOT_UNIQUE = "1";
String UNIQUE = "0";
String DV_REPAIR_CODE = "DV_REPAIR_CODE"; //维修单
String MACHINERY_TYPE_CODE = "MACHINERY_TYPE_CODE";
}