新增异常信息打印,修改接口
This commit is contained in:
@@ -44,7 +44,6 @@ public class HisViewSearchController {
|
||||
return ResultUtil.failureMsg("未获取到数据");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* his历史就诊记录查询
|
||||
*
|
||||
@@ -62,8 +61,6 @@ public class HisViewSearchController {
|
||||
}
|
||||
return ResultUtil.failureMsg("未获取到数据");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取今天的遗嘱开单信息
|
||||
*
|
||||
@@ -80,4 +77,11 @@ public class HisViewSearchController {
|
||||
return ResultUtil.failureMsg("获取失败!");
|
||||
}
|
||||
|
||||
@GetMapping("/getMedicalPrescriptionByCardNo")
|
||||
@EleganceLog(description = "根据卡号获取未缴费的遗嘱开单信息")
|
||||
public Result getMedicalPrescriptionByCardNo(String cardNo) {
|
||||
List<MedicalPrescription> medicalPrescriptions = hisViewSearchService.getMedicalPrescriptionByCardNo(cardNo);
|
||||
return ResultUtil.successData(medicalPrescriptions);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user