mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-08-18 04:01:54 +08:00
[feat] 新增项目信息管理模块
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package cn.iocoder.yudao.module.pms.enums;
|
||||
|
||||
/**
|
||||
* @author hhyykk
|
||||
* @description 字典枚举
|
||||
* @date 2024/7/3
|
||||
*/
|
||||
public interface DictTypeConstants {
|
||||
String PROJECT_TYPE = "project_type"; // 项目类型
|
||||
String ENTRUST_METHOD = "entrust_method"; // 委托方式
|
||||
String INFRA_BOOLEAN_STRING = "infra_boolean_string"; // 布尔
|
||||
String PROCESS_STATUS = "process_status"; // 流程状态
|
||||
String POSSIBILITY_OF_LANDING = "possibility_of_landing"; // 可能性
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
package cn.iocoder.yudao.module.pms.enums;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.exception.ErrorCode;
|
||||
|
||||
/**
|
||||
* @author hhyykk
|
||||
* @description 错误码枚举类 1_021_000_000 段
|
||||
* @date 2024/7/3
|
||||
*/
|
||||
public interface ErrorCodeConstants {
|
||||
ErrorCode PROJECT_NOT_EXISTS = new ErrorCode(1_021_000_000, "项目信息不存在");
|
||||
}
|
Reference in New Issue
Block a user