|
@@ -1,13 +1,16 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
import com.diagbot.annotation.TokenAuth;
|
|
|
import com.diagbot.dto.PlanInfoDefaultDTO;
|
|
|
+import com.diagbot.dto.PlanInfoPageDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.dto.SysPlanInfoDTO;
|
|
|
import com.diagbot.facade.PlanFacade;
|
|
|
import com.diagbot.vo.HospitalPlanCancelVO;
|
|
|
+import com.diagbot.vo.HospitalPlanPageVO;
|
|
|
import com.diagbot.vo.HospitalPlanSaveVO;
|
|
|
import com.diagbot.vo.HospitalPlanVO;
|
|
|
import com.diagbot.vo.PlanRevStopVO;
|
|
@@ -58,14 +61,15 @@ public class PlanController {
|
|
|
return RespDTO.onSuc(res);
|
|
|
}
|
|
|
|
|
|
- /*@ApiOperation(value = "分页获取方案配置信息[by:wangfeng]", notes = "分页获取方案配置信息")
|
|
|
+ @ApiOperation(value = "分页获取方案配置信息[by:wangfeng]", notes = "分页获取方案配置信息")
|
|
|
@PostMapping("/getPlanInfoPages")
|
|
|
@SysLogger("getPlanInfoPages")
|
|
|
@Transactional
|
|
|
public RespDTO<IPage<PlanInfoPageDTO>> getPlanInfoPages(@RequestBody HospitalPlanPageVO hospitalPlanPageVO) {
|
|
|
IPage<PlanInfoPageDTO> data = planFacade.getPlanInfoPage(hospitalPlanPageVO);
|
|
|
return RespDTO.onSuc(data);
|
|
|
- }*/
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@ApiOperation(value = "删除方案配置信息[by:wangfeng]", notes = "planId:方案id 必传")
|
|
|
@PostMapping("/cancelPlanDatas")
|