feature/jp-0331 #526

Open
jungpyo2001 wants to merge 998 commits from feature/jp-0331 into main
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 0b120a6811 - Show all commits

View File

@ -34,9 +34,9 @@ public class MasterController {
}
@Operation(description = "모듈 타입별 아이템 목록을 조회한다.")
@GetMapping("/getModuleTypeItemList/{roofMaterialCd}")
@GetMapping("/getModuleTypeItemList/{roofMatlCd}")
public ApiResponse<ApiModuleTpResponse> getModuleTypeItemList(
@PathVariable("roofMaterialCd") String roofMaterialCd) {
@PathVariable("roofMatlCd") String roofMaterialCd) {
return masterService.getModuleTypeItemList(roofMaterialCd);
}

View File

@ -25,7 +25,7 @@ public interface MasterService {
// 모듈 타입별 아이템 목록 조회
@GetMapping("/moduleTypeItemList")
public ApiResponse<ApiModuleTpResponse> getModuleTypeItemList(
@RequestParam("roofMaterialCd") String roofMaterialCd);
@RequestParam("roofMatlCd") String roofMaterialCd);
// Q.CAST용 가대 목록 조회
@GetMapping("/trestle")