1. 新增试验评定暂存接口;
2. 新增试验评定流程名称枚举。
This commit is contained in:
@@ -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";
|
||||||
|
}
|
||||||
@@ -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("暂存成功!");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 编辑
|
* 编辑
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user