[feat] 新增项目信息管理模块业务流程表单

This commit is contained in:
2024-07-07 16:00:38 +08:00
parent 8bfc2a8ef8
commit 55e5265152
11 changed files with 116 additions and 30 deletions

View File

@@ -6,9 +6,16 @@ package cn.iocoder.yudao.module.pms.enums;
* @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"; // 可能性
String BPM_PROCESS_INSTANCE_STATUS = "bpm_process_instance_status"; // 流程实例状态
}

View File

@@ -0,0 +1,14 @@
package cn.iocoder.yudao.module.pms.enums;
/**
* @author hhyykk
* @description 委托方式枚举
* @date 2024/7/6
*/
public interface EntrustMethodConstants {
// **** 字典值 ******
String ENTRUST_PUBLIC_BIDDING = "public_bidding"; // 公开招标
String ENTRUST_DIRECT_DELEGATION = "public_direct_delegation"; // 直接委托
String ENTRUST_INVITED_BIDDING = "invited_bidding"; // 邀请招标
}