1. 新增试验评定暂存接口;

2. 新增试验评定流程名称枚举。
This commit is contained in:
dengchun
2025-05-04 10:03:06 +08:00
parent 66522363f3
commit c940f01bc8
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package org.jeecg.modules.database.constant;
public interface ExperimentReviewProcessType {
String GJB548C = "GJB-548C";
String MIL883 = "MIL-883";
String ESCC229000 = "ESCC229000";
String ESCC22500 = "ESCC 22500";
String QJ10004 = "MOS器件QJ10004";
String BIQJ10004 = "双极器件QJ10004";
}

View File

@@ -73,6 +73,14 @@ public class ExperimentReviewController extends JeecgController<ExperimentReview
return Result.OK("添加成功!"); return Result.OK("添加成功!");
} }
@Operation(summary = "试验评定-暂存")
@PostMapping(value = "/temporarySave")
public Result<String> temporarySave(@RequestBody ExperimentReview experimentReview) {
experimentReviewService.saveOrUpdate(experimentReview);
return Result.OK("暂存成功!");
}
/** /**
* 编辑 * 编辑
* *