|
@@ -9,15 +9,15 @@ package com.qmth.sop.common.enums;
|
|
|
*/
|
|
|
public enum TFCustomTypeEnum {
|
|
|
|
|
|
- OFFICE_SOP_FLOW("教务处SOP", "officeSopFlow", "testform1.zip"),
|
|
|
+ OFFICE_SOP_FLOW("教务处SOP", "officeSopFlow", "testform1.zip","SOPO"),
|
|
|
|
|
|
- CLOUD_MARK_SOP_FLOW("云阅卷SOP", "cloudMarkSopFlow", null),
|
|
|
+ CLOUD_MARK_SOP_FLOW("云阅卷SOP", "cloudMarkSopFlow", null,"SOPC"),
|
|
|
|
|
|
- DING_EXCEPTION_FLOW("考勤异常审核流程", "dingExceptionFlow", "dingExceptionFlow.zip"),
|
|
|
+ DING_EXCEPTION_FLOW("考勤异常审核流程", "dingExceptionFlow", "dingExceptionFlow.zip","SOPD"),
|
|
|
|
|
|
- PROJECT_EXCHANGE_FLOW("项目计划变更流程 ", "projectExchangeFlow", "projectExchangeFlow.zip"),
|
|
|
+ PROJECT_EXCHANGE_FLOW("项目计划变更流程 ", "projectExchangeFlow", "projectExchangeFlow.zip","SOPE"),
|
|
|
|
|
|
- QUALITY_PROBLEM_FLOW("质量问题反馈流程 ", "qualityProblemFlow", "qualityProblemFlow.zip");
|
|
|
+ QUALITY_PROBLEM_FLOW("质量问题反馈流程 ", "qualityProblemFlow", "qualityProblemFlow.zip","SOPQ");
|
|
|
|
|
|
private String title;
|
|
|
|
|
@@ -25,10 +25,13 @@ public enum TFCustomTypeEnum {
|
|
|
|
|
|
private String fileName;
|
|
|
|
|
|
- private TFCustomTypeEnum(String title, String code, String fileName) {
|
|
|
+ private String mark;
|
|
|
+
|
|
|
+ private TFCustomTypeEnum(String title, String code, String fileName, String mark) {
|
|
|
this.title = title;
|
|
|
this.code = code;
|
|
|
this.fileName = fileName;
|
|
|
+ this.mark = mark;
|
|
|
}
|
|
|
|
|
|
public String getTitle() {
|
|
@@ -42,4 +45,8 @@ public enum TFCustomTypeEnum {
|
|
|
public String getFileName() {
|
|
|
return fileName;
|
|
|
}
|
|
|
+
|
|
|
+ public String getMark() {
|
|
|
+ return mark;
|
|
|
+ }
|
|
|
}
|