|
@@ -8,7 +8,6 @@ import thyyxxk.webserver.entity.datamodify.GetDropdownBox;
|
|
|
import thyyxxk.webserver.service.casefrontsheet.HuiZhenShenQingService;
|
|
|
|
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -46,8 +45,8 @@ public class HuiZhenShenQingController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/chaKanHuiZhenShenQing")
|
|
|
- public ResultVo<List<YshHzRecord>> chaKanHuiZhenShenQing(String inpatientNo,int admissTimes) {
|
|
|
- return service.chaKanHuiZhenShenQing(inpatientNo,admissTimes);
|
|
|
+ public ResultVo<List<YshHzRecord>> chaKanHuiZhenShenQing(String inpatientNo, int admissTimes) {
|
|
|
+ return service.chaKanHuiZhenShenQing(inpatientNo, admissTimes);
|
|
|
}
|
|
|
|
|
|
@GetMapping("/shanChuHuiZhenShenQing")
|
|
@@ -55,14 +54,20 @@ public class HuiZhenShenQingController {
|
|
|
@RequestParam("admissTimes") int admissTimes,
|
|
|
@RequestParam("actOrderNo") float actOrderNo,
|
|
|
@RequestParam("reqTimes") int reqTimes) {
|
|
|
- return service.shanChuHuiZhenShenQing(inpatientNo,admissTimes,actOrderNo,reqTimes);
|
|
|
+ return service.shanChuHuiZhenShenQing(inpatientNo, admissTimes, actOrderNo, reqTimes);
|
|
|
}
|
|
|
|
|
|
@GetMapping("/huiZhenYiSheng")
|
|
|
public ResultVo<List<GetDropdownBox>> huiZhenYiSheng(@RequestParam("deptCode") String deptCode,
|
|
|
@RequestParam("hzType") String hzType) {
|
|
|
- return service.huiZhenYiSheng(deptCode,hzType);
|
|
|
+ return service.huiZhenYiSheng(deptCode, hzType);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/huoQuHuanZheZhuYaoZhenDuan")
|
|
|
+ public ResultVo<List<GetDropdownBox>> huoQuHuanZheZhuYaoZhenDuan(@RequestParam("patNo") String patNo,
|
|
|
+ @RequestParam("times") Integer times,
|
|
|
+ @RequestParam("flag") Integer flag) {
|
|
|
+ return service.huoQuHuanZheZhuYaoZhenDuan(patNo, times, flag);
|
|
|
+ }
|
|
|
|
|
|
}
|