|
@@ -2,6 +2,7 @@ package com.diagbot.web;
|
|
|
|
|
|
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
+import com.diagbot.dto.BABLDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.entity.ArRechome;
|
|
|
import com.diagbot.entity.MrMrcontent;
|
|
@@ -49,4 +50,12 @@ public class ArRechomeController {
|
|
|
public RespDTO<List<MrMrcontent>> getAll2() {
|
|
|
return RespDTO.onSuc(mrMrcontentFacade.list());
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取病案病历记录列表[by:zhaops]",
|
|
|
+ notes = "获取病案病历记录列表")
|
|
|
+ @PostMapping("/getBAZYList")
|
|
|
+ @SysLogger("getBAZYList")
|
|
|
+ public RespDTO<List<BABLDTO>> getBAZYList() {
|
|
|
+ return RespDTO.onSuc(arRechomeFacade.getBAZYList());
|
|
|
+ }
|
|
|
}
|