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