Browse Source

no message

2998394161@qq.com 2 years ago
parent
commit
43e3a76ef3

+ 3 - 1
src/main/java/thyyxxk/webserver/controller/zhuyuanyizheng/EmrController.java

@@ -18,10 +18,12 @@ import thyyxxk.webserver.utils.StringUtil;
 import java.util.List;
 import java.util.Map;
 
+/**
+ * 肖蟾
+ */
 @RequestMapping("/Emr")
 @RestController
 public class EmrController {
-
     private final EmrServer server;
 
     public EmrController(EmrServer server) {

+ 3 - 0
src/main/java/thyyxxk/webserver/service/zhuyuanyisheng/emr/EmrControlRuleSever.java

@@ -308,6 +308,7 @@ public class EmrControlRuleSever {
      * @param data 数据
      * @return
      */
+    @Deprecated
     public ResultVo<String> removalOfMedicalRecordRestrictions(RemoveRestrictions data) {
         data.setInputId(TokenUtil.getTokenUserId());
         log.info("临时解除病历时间限制===》操作人{},数据{}", data.getInputId(), JSON.toJSONString(data));
@@ -316,6 +317,7 @@ public class EmrControlRuleSever {
     }
 
 
+    @Deprecated
     public ResultVo<List<EmrRuleUnlock>> selectRuleUnlock(SelectUnlockParam param) {
         QueryWrapper<?> qw = new QueryWrapper<>();
 
@@ -333,6 +335,7 @@ public class EmrControlRuleSever {
         return ResultVoUtil.success(dao.selectRuleUnlock(qw));
     }
 
+    @Deprecated
     public ResultVo<String> reviewToLiftRestrictions(EmrRuleUnlock param) {
         if (dao.selectRuleUnlockById(param.getId()) == 0) {
             return ResultVoUtil.fail(ExceptionEnum.LOGICAL_ERROR, "该申请已经被审核了或者被删除了。");