no message
This commit is contained in:
@ -44,8 +44,8 @@ public class CarModelController {
|
|||||||
|
|
||||||
@ApiOperation(value = "根据美团抖音id查询车型套餐")
|
@ApiOperation(value = "根据美团抖音id查询车型套餐")
|
||||||
@GetMapping("/getCarModelByThireId")
|
@GetMapping("/getCarModelByThireId")
|
||||||
public Result<CarModelPackageDTO> getCarModelByThireId(@RequestParam(name = "mtId") String mtId,
|
public Result<CarModelPackageDTO> getCarModelByThireId(@RequestParam(name = "mtId",required = false, defaultValue = "") String mtId,
|
||||||
@RequestParam(name = "dyId") String dyId){
|
@RequestParam(name = "dyId",required = false, defaultValue = "") String dyId){
|
||||||
return Result.ok(carModelService.getCarModelByThireId(mtId, dyId));
|
return Result.ok(carModelService.getCarModelByThireId(mtId, dyId));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user