fix:算例新增流程模版字段
This commit is contained in:
@@ -67,7 +67,10 @@ public enum DirTypeEnum {
|
||||
* 公差分析库
|
||||
*/
|
||||
@Schema(description = "公差分析库文件夹", example = "11")
|
||||
TOLERANCE_ANALYSIS_DIR("toleranceAnalysis", 11, "公差分析库");
|
||||
TOLERANCE_ANALYSIS_DIR("toleranceAnalysis", 11, "公差分析库"),
|
||||
|
||||
@Schema(description = "异常库", example = "12")
|
||||
EXCEPTION_DIR("exception", 12, "异常库");
|
||||
|
||||
/** 目录名称(英文,用于MinIO路径) */
|
||||
String dirName;
|
||||
@@ -123,11 +126,12 @@ public enum DirTypeEnum {
|
||||
|
||||
/**
|
||||
* 需要走审批流程的目录类型列表
|
||||
* 目前包括:知识库、公差分析库
|
||||
* 目前包括:知识库、公差分析库、异常库
|
||||
*/
|
||||
private static final List<DirTypeEnum> APPROVAL_REQUIRED_DIRS = List.of(
|
||||
DirTypeEnum.KNOWLEDGE_BASE_DIR,
|
||||
DirTypeEnum.TOLERANCE_ANALYSIS_DIR
|
||||
DirTypeEnum.TOLERANCE_ANALYSIS_DIR,
|
||||
DirTypeEnum.EXCEPTION_DIR
|
||||
);
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user