This commit is contained in:
ls
2024-11-27 19:55:49 +08:00
parent bc73884611
commit 42368b92f8

View File

@@ -2,9 +2,14 @@ package org.jeecg.modules.database.constant;
public interface ExperimentReportStatus { public interface ExperimentReportStatus {
String INIT = "待校对"; // 待校对
String PROOFREAD_PASS = "待审核"; String INIT = "INIT";
String AUDIT_PASS = "待批准"; // 待审核
String REJECT = "不通过"; String PROOFREAD_PASS = "PROOFREAD_PASS";
String PASSED = "通过"; //待批准
String AUDIT_PASS = "AUDIT_PASS";
//8不通过
String REJECT = "REJECT";
//通过
String PASSED = "PASSED";
} }