Skip to content

Commit

Permalink
Update ColorController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
dydwo0740 authored Aug 17, 2023
1 parent 25fe640 commit 8491994
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ColorController {

@Operation(summary = "차량 외장 색상 조회", description = "차량 외장 색상 조회 method")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "조회 성공", content = @Content(schema = @Schema(implementation = OuterColorDto.class))),
@ApiResponse(responseCode = "200", description = "조회 성공", content = @Content(schema = @Schema(implementation = OuterColorPercentDto.class))),
})
@GetMapping("/colors/outer")
public List<OuterColorPercentDto> carOuterColorInfo(@Parameter(description = "선택한 car_id") @RequestParam("carid") int carId) {
Expand All @@ -48,7 +48,7 @@ public List<String> carOuterColorImageInfo(@Parameter(description = "선택한 c

@Operation(summary = "차량 내장 색상 조회", description = "차량 내장 색상 조회 method")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "조회 성공", content = @Content(schema = @Schema(implementation = InnerColorDto.class))),
@ApiResponse(responseCode = "200", description = "조회 성공", content = @Content(schema = @Schema(implementation = InnerColorPercentDto.class))),
})
@GetMapping("/colors/inner")
public List<InnerColorPercentDto> carInnerColorInfo(@Parameter(description = "선택한 car_id") @RequestParam("carid") int carId) {
Expand Down

0 comments on commit 8491994

Please sign in to comment.