no message

This commit is contained in:
2025-10-29 23:59:24 +08:00
parent c67d0303b6
commit 0324470b55

View File

@ -44,8 +44,8 @@ public class CarModelController {
@ApiOperation(value = "根据美团抖音id查询车型套餐")
@GetMapping("/getCarModelByThireId")
public Result<CarModelPackageDTO> getCarModelByThireId(@RequestParam(name = "mtId") String mtId,
@RequestParam(name = "dyId") String dyId){
public Result<CarModelPackageDTO> getCarModelByThireId(@RequestParam(name = "mtId",required = false, defaultValue = "") String mtId,
@RequestParam(name = "dyId",required = false, defaultValue = "") String dyId){
return Result.ok(carModelService.getCarModelByThireId(mtId, dyId));
}
}