|
@@ -1,6 +1,7 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
import com.diagbot.dto.BABLDTO;
|
|
|
import com.diagbot.dto.BABLDetailDTO;
|
|
@@ -11,6 +12,7 @@ import com.diagbot.facade.ArRechomeFacade;
|
|
|
import com.diagbot.facade.MrMrcontentFacade;
|
|
|
import com.diagbot.vo.BABLDetailVO;
|
|
|
import com.diagbot.vo.BABLVO;
|
|
|
+import com.diagbot.vo.BAZYPageVO;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -63,6 +65,14 @@ public class ArRechomeController {
|
|
|
return RespDTO.onSuc(arRechomeFacade.getAllList());
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "病案病历记录分页查询[by:zhaops]",
|
|
|
+ notes = "病案病历记录分页查询")
|
|
|
+ @PostMapping("/getBAZYPage")
|
|
|
+ @SysLogger("getBAZYPage")
|
|
|
+ public RespDTO<IPage<BABLDTO>> getBAZYPage(@RequestBody BAZYPageVO bazyPageVO) {
|
|
|
+ return RespDTO.onSuc(arRechomeFacade.getBAZYPage(bazyPageVO));
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "获取病案详情[by:zhaops]",
|
|
|
notes = "获取病案详情")
|
|
|
@PostMapping("/getBABLContent")
|