|
|
@ -56,7 +56,26 @@ public class WisdomCarController { |
|
|
|
wisdomCarService.createCase(params.getParam(), params.getUserId()); |
|
|
|
log.info("创建病例接口"); |
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "绑定平车", notes = "") |
|
|
|
@RequestMapping(value = "/bindingCar", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse bindingCar(@ApiParam @Validated @RequestBody QueryDto<WisdomCarDto.BindingCar> params) { |
|
|
|
log.info("绑定平车:{}", params); |
|
|
|
wisdomCarService.bindingCar(params.getParam(),params.getUserId()); |
|
|
|
log.info("绑定平车"); |
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "平车数据上传", notes = "") |
|
|
|
@RequestMapping(value = "/uploadCarData", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse uploadCarData(@ApiParam @Validated @RequestBody QueryDto<WisdomCarDto.UploadCarData> params) { |
|
|
|
log.info("平车数据上传:{}", params); |
|
|
|
wisdomCarService.uploadCarData(params.getParam(),params.getUserId()); |
|
|
|
log.info("平车数据上传"); |
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|