| | |
| | | import com.smartor.domain.VO.HeLibraryCountVO; |
| | | import com.smartor.domain.VO.ServiceSubtaskCotinueCountVO; |
| | | import com.smartor.domain.VO.ServiceSubtaskVO; |
| | | import com.smartor.domain.VO.TransferDeptVO; |
| | | import com.smartor.domain.entity.ServiceSubtaskEntity; |
| | | import com.smartor.service.IServiceSubtaskRecordService; |
| | | import com.smartor.service.IServiceSubtaskService; |
| | |
| | | |
| | | @Autowired |
| | | private RedisCache redisCache; |
| | | |
| | | |
| | | /** |
| | | * 转移科室病区 |
| | | */ |
| | | @ApiOperation("转移科室病区") |
| | | @PostMapping("/transferDept") |
| | | public Map<String, Object> transferDept(@RequestBody TransferDeptVO transferDeptVO) { |
| | | Integer i = serviceSubtaskService.transferDept(transferDeptVO); |
| | | return success(i == 1 ? true : false); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 查询患者随访信息 |
| | |
| | | public void syncMedOperForShiyi(@RequestParam("startTime") String startTime, @RequestParam("endTime") String endTime) { |
| | | collectHISService.syncOper(startTime, endTime); |
| | | } |
| | | |
| | | } |