保养管理-保养计划、保养方案、保养工单、保养记录、保养记录相关后台代码

This commit is contained in:
shih
2026-03-23 18:59:28 +08:00
parent 1ebbc22aaf
commit 70aac257c0
14 changed files with 828 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package com.lideeyunji.tool.framework.common.constant;
/**
* 保养管理
*/
public interface ByglConstant {
/**进行中*/
String JH_STATE_JXZ = "0";
/**已完成*/
String JH_STATE_YWC = "1";
/**待开始*/
String GD_STATE_DKS = "0";
/**已完成*/
String BY_STATE_YWC = "1";
/**方案停用*/
String FA_STATE_TY = "0";
/**方案启用*/
String FA_STATE_QY = "1";
/**待验收*/
String YSZT_STATE_DYS = "0";
/**已验收*/
String YSZT_STATE_YYS = "1";
}