|
|
|
@ -7,6 +7,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PutMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
@ -60,10 +61,18 @@ public class BizNimsController {
|
|
|
|
|
return ApiBaseResponse.of(bizNimsService.saveBsshInfoSt(dto));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Operation(summary = "NIMS 마약류 상품 정보 조회", description = "마약류 상품정보 조회<br><br>NIMS API 호출 결과를 DB에 저장후 결과 Return", tags = { "NIMS API" })
|
|
|
|
|
@PostMapping(value = "/getNimsProductInfoKd")
|
|
|
|
|
// @Operation(summary = "NIMS 마약류 제품 조회", description = "마약류 제품 조회<br><br>NIMS API 호출 결과를 DB에 저장후 결과 Return", tags = { "NIMS API" })
|
|
|
|
|
// @PostMapping(value = "/getNimsProductInfoKd")
|
|
|
|
|
// public ApiBaseResponse<List<NimsApiDto.ProductInfoKd>> getNimsMnfSeqInfo(
|
|
|
|
|
// @RequestBody NimsApiRequest.ProductInfoReq dto
|
|
|
|
|
// ) {
|
|
|
|
|
// return ApiBaseResponse.of(bizNimsService.saveProductInfoKd(dto, false));
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
@Operation(summary = "NIMS 마약류 제품 조회", description = "마약류 제품 조회<br><br>NIMS API 호출 결과를 DB에 저장후 결과 Return", tags = { "NIMS API" })
|
|
|
|
|
@RequestMapping(value = "/getNimsProductInfoKd", method = { RequestMethod.POST, RequestMethod.GET })
|
|
|
|
|
public ApiBaseResponse<List<NimsApiDto.ProductInfoKd>> getNimsMnfSeqInfo(
|
|
|
|
|
@RequestBody NimsApiRequest.ProductInfoReq dto
|
|
|
|
|
NimsApiRequest.ProductInfoReq dto
|
|
|
|
|
) {
|
|
|
|
|
return ApiBaseResponse.of(bizNimsService.saveProductInfoKd(dto, false));
|
|
|
|
|
}
|
|
|
|
|