|
|
|
@ -74,7 +74,7 @@ public class WisdomCarController { |
|
|
|
}*/ |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "查询绑定平车", notes = "") |
|
|
|
@ApiOperation(value = "查询绑定平车", notes = "1007") |
|
|
|
@RequestMapping(value = "/queryBindingCar", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<List<WisdomCarVo.BindingCarInfo>> queryBindingCar(@ApiParam @Validated @RequestBody QueryDto<WisdomCarDto.QueryInfo> params) { |
|
|
|
log.info("查询绑定平车:{}", params); |
|
|
|
@ -83,12 +83,12 @@ public class WisdomCarController { |
|
|
|
return JsonResponse.newInstance().ok(list); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "查询正在运行的平车绑定的患者信息", notes = "") |
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "查询正在运行的平车绑定的患者信息", notes = "1007") |
|
|
|
@RequestMapping(value = "/queryBindingCarRun", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<List<WisdomCarVo.queryBindingCarRun>> queryBindingCarRun(@ApiParam @Validated @RequestBody QueryDto<WisdomCarDto.queryBindingCarRun> params) { |
|
|
|
log.info("查询正在运行的平车绑定的患者信息:{}", params); |
|
|
|
List<WisdomCarVo.queryBindingCarRun> list = wisdomCarService.queryBindingCarRun(params.getParam()); |
|
|
|
List<WisdomCarVo.queryBindingCarRun> list = wisdomCarService.queryBindingCarRun(params.getParam(),params.getUserId()); |
|
|
|
log.info("查询正在运行的平车绑定的患者信息成功"); |
|
|
|
return JsonResponse.newInstance().ok(list); |
|
|
|
} |
|
|
|
|