|
@@ -1,6 +1,15 @@
|
|
package com.lantone.daqe.web;
|
|
package com.lantone.daqe.web;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
+import com.lantone.common.api.CommonResult;
|
|
|
|
+import com.lantone.daqe.dto.GetBlockLossPageDTO;
|
|
|
|
+import com.lantone.daqe.facade.BlockLossManagementFacade;
|
|
|
|
+import com.lantone.daqe.vo.GetBlockLossPageVO;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
@@ -14,5 +23,13 @@ import org.springframework.web.bind.annotation.RestController;
|
|
@RequestMapping("/blockLossManage")
|
|
@RequestMapping("/blockLossManage")
|
|
public class BlockLossManagementController {
|
|
public class BlockLossManagementController {
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private BlockLossManagementFacade blockLossManagementFacade;
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value = "获取病历数据丢失明细分页列表 [by:songxl]", notes = "获取病历数据丢失明细分页列表")
|
|
|
|
+ @PostMapping("/getBlockLossPage")
|
|
|
|
+ public CommonResult<IPage<GetBlockLossPageDTO>> getBlockLossPage(@RequestBody GetBlockLossPageVO getBlockLossPageVO) {
|
|
|
|
+ return CommonResult.success(blockLossManagementFacade.getBlockLossPage(getBlockLossPageVO));
|
|
|
|
+ }
|
|
|
|
|
|
}
|
|
}
|