[feat] 新增项目信息管理模块

This commit is contained in:
2024-07-06 20:15:10 +08:00
parent 2632866955
commit 8bfc2a8ef8
24 changed files with 1154 additions and 4 deletions

View File

@@ -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"; // 可能性
}

View File

@@ -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, "项目信息不存在");
}