| | |
| | | @RequestMapping("/api/his") |
| | | public class HisController { |
| | | |
| | | // 检验检查修改的更新好了, |
| | | // 入参需要加一个参数: needShouFeiXm=1时, 返回shouFeiXmList; |
| | | // 里面有danJia/shuLiang/shouFeiXmId; |
| | | |
| | | private final ServiceFactory serviceFactory; |
| | | |
| | | @Autowired |
| | |
| | | @PostMapping("/{hospName}/getYiShengList") |
| | | public String getListYiShengZd (@PathVariable("hospName") String hospName,@RequestBody Map<String ,Object> map) { |
| | | HisService hisService = serviceFactory.getService(hospName); |
| | | // 人员这个接口getListYishengZd, |
| | | // 增加入参 zhiGongKs |
| | | // boolean类型,传true返回职工科室list |
| | | // 返回值里的 zhiGongKsBqList, 就是职工科室list |
| | | return hisService.getListYiShengZd(map); |
| | | } |
| | | |