|
@@ -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, "该申请已经被审核了或者被删除了。");
|