From 504039db415ca1c04c114dba3d8edc551d34d2c7 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期四, 14 九月 2023 15:11:48 +0800
Subject: [PATCH] 日期码段 回显
---
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodeRuleController.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodeRuleController.java b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodeRuleController.java
index 4483a04..34039f6 100644
--- a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodeRuleController.java
+++ b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodeRuleController.java
@@ -48,6 +48,7 @@
import javax.validation.Valid;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
+import java.rmi.ServerException;
import java.util.Collection;
import java.util.Map;
@@ -200,7 +201,7 @@
@PostMapping("/clone")
@ApiOperationSupport(order = 13)
@ApiOperation(value = "鍏嬮殕缂栫爜瑙勫垯", notes = "浼犲叆codeRuleDTO")
- public R cloneCodeRule(@RequestBody CodeRuleDTO codeRuleDTO){
+ public R cloneCodeRule(@RequestBody CodeRuleDTO codeRuleDTO) throws ServerException {
return codeRuleService.cloneCodeRule(codeRuleDTO);
}
@@ -224,7 +225,7 @@
@GetMapping("/checkLikeCodeRule")
@ApiOperationSupport(order = 15)
@ApiOperation(value = "妫�鏌ョ浉浼肩紪鐮佽鍒�", notes = "浼犲叆oid")
- public R checkLikeCodeRule(String oid){
+ public R checkLikeCodeRule(@Valid @RequestParam String oid){
return codeRuleService.checkLikeCodeRule(oid);
}
--
Gitblit v1.9.3