style: 포맷터 적용
This commit is contained in:
parent
9f03c9adb8
commit
b62ec0def1
@ -1,20 +1,18 @@
|
|||||||
package com.interplug.qcast.biz.master;
|
package com.interplug.qcast.biz.master;
|
||||||
|
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiConstructionRequest;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiConstructionResponse;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiModuleTpResponse;
|
import com.interplug.qcast.biz.master.dto.ApiModuleTpResponse;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiResponse;
|
import com.interplug.qcast.biz.master.dto.ApiResponse;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiRoofMaterialResponse;
|
import com.interplug.qcast.biz.master.dto.ApiRoofMaterialResponse;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleRequest;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleResponse;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiConstructionRequest;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiConstructionResponse;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailRequest;
|
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailRequest;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailResponse;
|
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailResponse;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiTrestleRequest;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiTrestleResponse;
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
@ -41,22 +39,24 @@ public class MasterController {
|
|||||||
@PathVariable("roofMaterialCd") String roofMaterialCd) {
|
@PathVariable("roofMaterialCd") String roofMaterialCd) {
|
||||||
return masterService.getModuleTypeItemList(roofMaterialCd);
|
return masterService.getModuleTypeItemList(roofMaterialCd);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Operation(description = "Q.CAST용 가대 목록 조회")
|
@Operation(description = "Q.CAST용 가대 목록 조회")
|
||||||
@PostMapping("/getTrestleList")
|
@PostMapping("/getTrestleList")
|
||||||
public List<ApiTrestleResponse> getTrestleList(@RequestBody ApiTrestleRequest params) {
|
public List<ApiTrestleResponse> getTrestleList(@RequestBody ApiTrestleRequest params) {
|
||||||
return masterService.getTrestleList(params);
|
return masterService.getTrestleList(params);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Operation(description = "Q.CAST용 시공법 목록 조회")
|
@Operation(description = "Q.CAST용 시공법 목록 조회")
|
||||||
@PostMapping("/getConstructionList")
|
@PostMapping("/getConstructionList")
|
||||||
public List<ApiConstructionResponse> getConstructionList(@RequestBody ApiConstructionRequest params) {
|
public List<ApiConstructionResponse> getConstructionList(
|
||||||
return masterService.getConstructionList(params);
|
@RequestBody ApiConstructionRequest params) {
|
||||||
|
return masterService.getConstructionList(params);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Operation(description = "Q.CAST용 가대 상세 조회")
|
@Operation(description = "Q.CAST용 가대 상세 조회")
|
||||||
@PostMapping("/getConstructionDetailList")
|
@PostMapping("/getConstructionDetailList")
|
||||||
public List<ApiTrestleDetailResponse> getConstructionDetailList(@RequestBody ApiTrestleDetailRequest params) {
|
public List<ApiTrestleDetailResponse> getConstructionDetailList(
|
||||||
return masterService.getConstructionDetailList(params);
|
@RequestBody ApiTrestleDetailRequest params) {
|
||||||
|
return masterService.getConstructionDetailList(params);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,19 +1,18 @@
|
|||||||
package com.interplug.qcast.biz.master;
|
package com.interplug.qcast.biz.master;
|
||||||
|
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiConstructionRequest;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiConstructionResponse;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiModuleTpResponse;
|
import com.interplug.qcast.biz.master.dto.ApiModuleTpResponse;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiResponse;
|
import com.interplug.qcast.biz.master.dto.ApiResponse;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiRoofMaterialResponse;
|
import com.interplug.qcast.biz.master.dto.ApiRoofMaterialResponse;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailRequest;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailResponse;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiTrestleRequest;
|
||||||
|
import com.interplug.qcast.biz.master.dto.ApiTrestleResponse;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleRequest;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleResponse;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiConstructionRequest;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiConstructionResponse;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailRequest;
|
|
||||||
import com.interplug.qcast.biz.master.dto.ApiTrestleDetailResponse;
|
|
||||||
|
|
||||||
// @FeignClient(name = "master", url = "${feign.master.url}")
|
// @FeignClient(name = "master", url = "${feign.master.url}")
|
||||||
@FeignClient(name = "master", url = "${qsp.url}/api/master")
|
@FeignClient(name = "master", url = "${qsp.url}/api/master")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user