fix: 폐기보고확인 소스 정리

dev
Jonguk. Lim 4 months ago
parent a430fd539c
commit 5dc70918fc

@ -37,8 +37,6 @@ public interface BizNimsService {
List<NimsApiDto.JurisdictionGovInfo> getJurisdictionGovInfo(final NimsApiRequest.JurisdictionGovInfoReq dto);
List<NimsApiDto.DsuseRptInfo> getNimsDsuseRptInfo(final NimsApiRequest.DsuseRptInfoReq dto);
// List<NimsApiDto.StorageInfo> saveStorageInfo(NimsApiRequest.StorageInfoRequest dto);
//------------------------------------------------------------------------------------------------------
// NIMS BIZ
@ -55,7 +53,6 @@ public interface BizNimsService {
NimsApiDto.ProductInfoKd getPrdMnfSeqInfoOfBarcode(final String barcodeStr, final String userId);
/**
* <pre>
* API DB
@ -75,19 +72,7 @@ public interface BizNimsService {
*/
List<NimsApiDto.DsuseRptInfo> saveDsuseRptInfo(final NimsApiRequest.DsuseRptInfoReq dto);
List<NimsApiDto.DsuseRptInfo> getDsuseMgtMapping(final BizNimsRequest.DsuseRptMappingInqReq reqDto);
List<NimsApiDto.DsuseRptInfo> getDsuseRptAndDsuseMgtMapping(final BizNimsRequest.DsuseRptMappingInqReq reqDto);
void modifyMappingDsuseMgt(final BizNimsRequest.DsuseMgtMappingReq mgtDto);
// @Deprecated
// BizNimsDto.DsuseMgt saveDsuseMgt(final BizNimsDto.DsuseMgt dto);
// @Deprecated
// List<BizNimsResponse.DsuseRptInfoResponse> saveDsuseMgts(List<BizNimsRequest.DsuseMgt> dtos);
// BizNimsAarDto.AarHeader getTgtDsuseRptData(BizNimsRequest.DsuseMgt dto);
// BizNimsAarDto.AarHeader createTgtDsuseRptData(BizNimsAarDto.AarHeader dto);
}

@ -478,7 +478,7 @@ public class BizNimsServiceBean extends AbstractServiceBean implements BizNimsSe
* </pre>
*/
@Override
public List<NimsApiDto.DsuseRptInfo> getDsuseMgtMapping(BizNimsRequest.DsuseRptMappingInqReq reqDto) {
public List<NimsApiDto.DsuseRptInfo> getDsuseRptAndDsuseMgtMapping(BizNimsRequest.DsuseRptMappingInqReq reqDto) {
ApiUtil.validate(reqDto, null, validator);
Map<String, String> apiInfInfo = getApiInfInfo(reqDto.getUserId());

@ -182,11 +182,11 @@ public class BizNimsController {
}
@Operation(summary = "폐기 보고 확인(폐기관리 데이타에 대한 폐기보고 매핑)", description = "폐기 보고 확인(폐기관리 데이타에 대한 폐기보고 매핑)<br><br>폐기 관리 데이터에 대한 폐기보고 매핑 대상 데이타 조회 return<br><br>NIMS API 호출 결과를 DB에 저장", tags = { "BIZ NIMS API" })
@RequestMapping(value = "/getDsuseMgtMapping", method = { RequestMethod.POST, RequestMethod.GET })
public ApiBaseResponse<List<NimsApiDto.DsuseRptInfo>> getDsuseMgtMapping(
@RequestMapping(value = "/getDsuseRptAndDsuseMgtMapping", method = { RequestMethod.POST, RequestMethod.GET })
public ApiBaseResponse<List<NimsApiDto.DsuseRptInfo>> getDsuseRptAndDsuseMgtMapping(
@ModelAttribute BizNimsRequest.DsuseRptMappingInqReq dto
) {
return ApiBaseResponse.of(bizNimsService.getDsuseMgtMapping(dto));
return ApiBaseResponse.of(bizNimsService.getDsuseRptAndDsuseMgtMapping(dto));
}
@Operation(summary = "폐기관리 데이타 폐기보고매핑 정보 변경", description = "폐기관리 데이타 폐기보고매핑 정보 변경<br><br>폐기 관리 데이터에 대한 폐기보고 매핑 정보 변경", tags = { "BIZ NIMS API" })

Loading…
Cancel
Save