fix: restore static html files that were dropped during massive rename
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 17s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 17s
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
package io.shinhanlife.dat.biz.sm.mmg.converter;
|
||||
|
||||
import io.shinhanlife.dat.biz.sm.mmg.dto.MenuInDto;
|
||||
import io.shinhanlife.dat.biz.sm.mmg.dto.MenuListDto;
|
||||
import io.shinhanlife.dat.biz.sm.mmg.presentation.io.SmMmg0000M01RRequest;
|
||||
import io.shinhanlife.dat.biz.sm.mmg.presentation.io.SmMmg0000M01RResponse;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.annotation.processing.Generated;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2026-07-03T16:47:42+0900",
|
||||
comments = "version: 1.5.5.Final, compiler: javac, environment: Java 21.0.11 (Eclipse Adoptium)"
|
||||
)
|
||||
@Component
|
||||
public class MenuConverterImpl extends MenuConverter {
|
||||
|
||||
@Override
|
||||
public MenuInDto smMmg0000M01RRequestToMenuInDto(SmMmg0000M01RRequest req) {
|
||||
if ( req == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
MenuInDto.MenuInDtoBuilder menuInDto = MenuInDto.builder();
|
||||
|
||||
menuInDto.isActive( req.getIsActive() );
|
||||
menuInDto.path( req.getPath() );
|
||||
menuInDto.title( req.getTitle() );
|
||||
|
||||
return menuInDto.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public MenuListDto smMmg0000M01RResponseToMenuListDto(SmMmg0000M01RResponse res) {
|
||||
if ( res == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
MenuListDto.MenuListDtoBuilder menuListDto = MenuListDto.builder();
|
||||
|
||||
menuListDto.id( res.getId() );
|
||||
menuListDto.parentMenuId( res.getParentMenuId() );
|
||||
menuListDto.name( res.getName() );
|
||||
menuListDto.path( res.getPath() );
|
||||
menuListDto.meta( res.getMeta() );
|
||||
List<MenuListDto> list = res.getChildren();
|
||||
if ( list != null ) {
|
||||
menuListDto.children( new ArrayList<MenuListDto>( list ) );
|
||||
}
|
||||
|
||||
return menuListDto.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public SmMmg0000M01RResponse menuListDtoeToSmMmg0000M01RResponse(MenuListDto res) {
|
||||
if ( res == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
SmMmg0000M01RResponse.SmMmg0000M01RResponseBuilder smMmg0000M01RResponse = SmMmg0000M01RResponse.builder();
|
||||
|
||||
smMmg0000M01RResponse.id( res.getId() );
|
||||
smMmg0000M01RResponse.parentMenuId( res.getParentMenuId() );
|
||||
smMmg0000M01RResponse.name( res.getName() );
|
||||
smMmg0000M01RResponse.path( res.getPath() );
|
||||
smMmg0000M01RResponse.meta( res.getMeta() );
|
||||
List<MenuListDto> list = res.getChildren();
|
||||
if ( list != null ) {
|
||||
smMmg0000M01RResponse.children( new ArrayList<MenuListDto>( list ) );
|
||||
}
|
||||
|
||||
return smMmg0000M01RResponse.build();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
package io.shinhanlife.dat.biz.so.atm.converter;
|
||||
|
||||
import io.shinhanlife.dat.biz.so.atm.dto.AthrItemOutDto;
|
||||
import io.shinhanlife.dat.biz.so.atm.dto.AthrOutDto;
|
||||
import io.shinhanlife.dat.biz.so.atm.dto.AthrSaveInDto;
|
||||
import io.shinhanlife.dat.biz.so.atm.dto.AthrSearchInDto;
|
||||
import io.shinhanlife.dat.biz.so.atm.dto.RoleListInDto;
|
||||
import io.shinhanlife.dat.biz.so.atm.presentation.io.AthrSaveRequest;
|
||||
import io.shinhanlife.dat.biz.so.atm.presentation.io.AthrSearchRequest;
|
||||
import io.shinhanlife.dat.biz.so.atm.presentation.io.AthrSearchResponse;
|
||||
import io.shinhanlife.dat.biz.so.atm.presentation.io.RoleListRequest;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.annotation.processing.Generated;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2026-07-03T16:47:42+0900",
|
||||
comments = "version: 1.5.5.Final, compiler: javac, environment: Java 21.0.11 (Eclipse Adoptium)"
|
||||
)
|
||||
@Component
|
||||
public class AccessMgmtConverterImpl extends AccessMgmtConverter {
|
||||
|
||||
@Override
|
||||
public RoleListInDto toInDto(RoleListRequest request) {
|
||||
if ( request == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
RoleListInDto roleListInDto = new RoleListInDto();
|
||||
|
||||
roleListInDto.setSystId( request.getSystId() );
|
||||
roleListInDto.setPuseYn( request.getPuseYn() );
|
||||
roleListInDto.setKeyword( request.getKeyword() );
|
||||
|
||||
return roleListInDto;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AthrSearchInDto toInDto(AthrSearchRequest request) {
|
||||
if ( request == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AthrSearchInDto athrSearchInDto = new AthrSearchInDto();
|
||||
|
||||
athrSearchInDto.setSystId( request.getSystId() );
|
||||
athrSearchInDto.setRoleNo( request.getRoleNo() );
|
||||
|
||||
return athrSearchInDto;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AthrSaveInDto toInDto(AthrSaveRequest request) {
|
||||
if ( request == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AthrSaveInDto athrSaveInDto = new AthrSaveInDto();
|
||||
|
||||
athrSaveInDto.setSystId( request.getSystId() );
|
||||
athrSaveInDto.setRoleNo( request.getRoleNo() );
|
||||
List<String> list = request.getGrantedToolIds();
|
||||
if ( list != null ) {
|
||||
athrSaveInDto.setGrantedToolIds( new ArrayList<String>( list ) );
|
||||
}
|
||||
List<String> list1 = request.getGrantedKnwlIds();
|
||||
if ( list1 != null ) {
|
||||
athrSaveInDto.setGrantedKnwlIds( new ArrayList<String>( list1 ) );
|
||||
}
|
||||
|
||||
return athrSaveInDto;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AthrSearchResponse toResponse(AthrOutDto outDto) {
|
||||
if ( outDto == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
List<AthrItemOutDto> tools = null;
|
||||
List<AthrItemOutDto> knwls = null;
|
||||
|
||||
List<AthrItemOutDto> list = outDto.getTools();
|
||||
if ( list != null ) {
|
||||
tools = new ArrayList<AthrItemOutDto>( list );
|
||||
}
|
||||
List<AthrItemOutDto> list1 = outDto.getKnwls();
|
||||
if ( list1 != null ) {
|
||||
knwls = new ArrayList<AthrItemOutDto>( list1 );
|
||||
}
|
||||
|
||||
AthrSearchResponse athrSearchResponse = new AthrSearchResponse( tools, knwls );
|
||||
|
||||
return athrSearchResponse;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
package io.shinhanlife.dat.lib.session.converter;
|
||||
|
||||
import io.shinhanlife.dat.lib.session.dto.SessionDto;
|
||||
import io.shinhanlife.dat.lib.session.dto.ZtUsacOutDto;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.annotation.processing.Generated;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2026-07-03T16:47:42+0900",
|
||||
comments = "version: 1.5.5.Final, compiler: javac, environment: Java 21.0.11 (Eclipse Adoptium)"
|
||||
)
|
||||
@Component
|
||||
public class ZtUsacConverterImpl extends ZtUsacConverter {
|
||||
|
||||
@Override
|
||||
public SessionDto toSessionDto(ZtUsacOutDto dto) {
|
||||
if ( dto == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
SessionDto.SessionDtoBuilder sessionDto = SessionDto.builder();
|
||||
|
||||
sessionDto.prafNo( dto.getPrafNo() );
|
||||
sessionDto.prafNm( dto.getPrafNm() );
|
||||
sessionDto.ognzNo( dto.getOgnzNo() );
|
||||
sessionDto.ognzNm( dto.getOgnzNm() );
|
||||
sessionDto.addre( dto.getAddre() );
|
||||
sessionDto.prafOfduCd( dto.getPrafOfduCd() );
|
||||
sessionDto.prafOfduNm( dto.getPrafOfduNm() );
|
||||
sessionDto.prafOfleCd( dto.getPrafOfleCd() );
|
||||
sessionDto.prafOfleNm( dto.getPrafOfleNm() );
|
||||
sessionDto.prafDutyCd( dto.getPrafDutyCd() );
|
||||
sessionDto.prafDutyNm( dto.getPrafDutyNm() );
|
||||
List<String> list = dto.getRoleNoList();
|
||||
if ( list != null ) {
|
||||
sessionDto.roleNoList( new ArrayList<String>( list ) );
|
||||
}
|
||||
List<String> list1 = dto.getRoleNmList();
|
||||
if ( list1 != null ) {
|
||||
sessionDto.roleNmList( new ArrayList<String>( list1 ) );
|
||||
}
|
||||
List<String> list2 = dto.getTgtrPrafNoList();
|
||||
if ( list2 != null ) {
|
||||
sessionDto.tgtrPrafNoList( new ArrayList<String>( list2 ) );
|
||||
}
|
||||
List<String> list3 = dto.getTgtrOgnzNoList();
|
||||
if ( list3 != null ) {
|
||||
sessionDto.tgtrOgnzNoList( new ArrayList<String>( list3 ) );
|
||||
}
|
||||
|
||||
return sessionDto.build();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
package io.shinhanlife.dat.sample.converter;
|
||||
|
||||
import io.shinhanlife.dat.sample.domain.model.AppliSystNtfyPatiModel;
|
||||
import io.shinhanlife.dat.sample.dto.AppliSystNtfyRgiInDTO;
|
||||
import io.shinhanlife.dat.sample.dto.StrnTermListInDTO;
|
||||
import io.shinhanlife.dat.sample.dto.StrnTermListOutDTO;
|
||||
import io.shinhanlife.dat.sample.presentation.io.AppliSystNtfyPatiRequest;
|
||||
import io.shinhanlife.dat.sample.presentation.io.StrnTermRequest;
|
||||
import io.shinhanlife.dat.sample.presentation.io.StrnTermResponse;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.annotation.processing.Generated;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2026-07-03T16:47:42+0900",
|
||||
comments = "version: 1.5.5.Final, compiler: javac, environment: Java 21.0.11 (Eclipse Adoptium)"
|
||||
)
|
||||
@Component
|
||||
public class SampleConverterImpl extends SampleConverter {
|
||||
|
||||
@Override
|
||||
public StrnTermListInDTO convertRequestToDto(StrnTermRequest req) {
|
||||
if ( req == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
StrnTermListInDTO.StrnTermListInDTOBuilder strnTermListInDTO = StrnTermListInDTO.builder();
|
||||
|
||||
strnTermListInDTO.strnTermHanNm( req.getStrnTermHanNm() );
|
||||
|
||||
return strnTermListInDTO.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public StrnTermResponse convertDtoToResponse(StrnTermListOutDTO outDto) {
|
||||
if ( outDto == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
StrnTermResponse.StrnTermResponseBuilder strnTermResponse = StrnTermResponse.builder();
|
||||
|
||||
strnTermResponse.strnTerms( strnTermListToStrnTermList( outDto.getStrnTerms() ) );
|
||||
strnTermResponse.pageInfo( outDto.getPageInfo() );
|
||||
|
||||
return strnTermResponse.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public AppliSystNtfyPatiModel convertDtoToModel(AppliSystNtfyRgiInDTO inDto) {
|
||||
if ( inDto == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AppliSystNtfyPatiModel.AppliSystNtfyPatiModelBuilder appliSystNtfyPatiModel = AppliSystNtfyPatiModel.builder();
|
||||
|
||||
appliSystNtfyPatiModel.appliSystNtfyPatiId( inDto.getAppliSystNtfyPatiId() );
|
||||
appliSystNtfyPatiModel.appliSystNtfyKdCd( inDto.getAppliSystNtfyKdCd() );
|
||||
appliSystNtfyPatiModel.appliDutjCd( inDto.getAppliDutjCd() );
|
||||
appliSystNtfyPatiModel.appliDutjPrjcCd( inDto.getAppliDutjPrjcCd() );
|
||||
appliSystNtfyPatiModel.ntfyMsgCt( inDto.getNtfyMsgCt() );
|
||||
appliSystNtfyPatiModel.ntfyOccDt( inDto.getNtfyOccDt() );
|
||||
appliSystNtfyPatiModel.ntfyCfmDt( inDto.getNtfyCfmDt() );
|
||||
appliSystNtfyPatiModel.ntfyTrgtPrafNo( inDto.getNtfyTrgtPrafNo() );
|
||||
appliSystNtfyPatiModel.shmsPmlYn( inDto.getShmsPmlYn() );
|
||||
appliSystNtfyPatiModel.ntfyCfmYn( inDto.getNtfyCfmYn() );
|
||||
|
||||
return appliSystNtfyPatiModel.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public AppliSystNtfyRgiInDTO convertAppliRequestToDto(AppliSystNtfyPatiRequest request) {
|
||||
if ( request == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
AppliSystNtfyRgiInDTO.AppliSystNtfyRgiInDTOBuilder appliSystNtfyRgiInDTO = AppliSystNtfyRgiInDTO.builder();
|
||||
|
||||
appliSystNtfyRgiInDTO.appliSystNtfyPatiId( request.getAppliSystNtfyPatiId() );
|
||||
appliSystNtfyRgiInDTO.appliSystNtfyKdCd( request.getAppliSystNtfyKdCd() );
|
||||
appliSystNtfyRgiInDTO.appliDutjCd( request.getAppliDutjCd() );
|
||||
appliSystNtfyRgiInDTO.appliDutjPrjcCd( request.getAppliDutjPrjcCd() );
|
||||
appliSystNtfyRgiInDTO.ntfyMsgCt( request.getNtfyMsgCt() );
|
||||
appliSystNtfyRgiInDTO.ntfyOccDt( request.getNtfyOccDt() );
|
||||
appliSystNtfyRgiInDTO.ntfyCfmDt( request.getNtfyCfmDt() );
|
||||
appliSystNtfyRgiInDTO.ntfyTrgtPrafNo( request.getNtfyTrgtPrafNo() );
|
||||
appliSystNtfyRgiInDTO.shmsPmlYn( request.getShmsPmlYn() );
|
||||
appliSystNtfyRgiInDTO.ntfyCfmYn( request.getNtfyCfmYn() );
|
||||
|
||||
return appliSystNtfyRgiInDTO.build();
|
||||
}
|
||||
|
||||
protected StrnTermResponse.StrnTerm strnTermToStrnTerm(StrnTermListOutDTO.StrnTerm strnTerm) {
|
||||
if ( strnTerm == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
StrnTermResponse.StrnTerm.StrnTermBuilder strnTerm1 = StrnTermResponse.StrnTerm.builder();
|
||||
|
||||
strnTerm1.strnTermHanNm( strnTerm.getStrnTermHanNm() );
|
||||
strnTerm1.strnTermEngcAbrNm( strnTerm.getStrnTermEngcAbrNm() );
|
||||
strnTerm1.strnTermEngNm( strnTerm.getStrnTermEngNm() );
|
||||
strnTerm1.strnTermScrnTermNm( strnTerm.getStrnTermScrnTermNm() );
|
||||
|
||||
return strnTerm1.build();
|
||||
}
|
||||
|
||||
protected List<StrnTermResponse.StrnTerm> strnTermListToStrnTermList(List<StrnTermListOutDTO.StrnTerm> list) {
|
||||
if ( list == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
List<StrnTermResponse.StrnTerm> list1 = new ArrayList<StrnTermResponse.StrnTerm>( list.size() );
|
||||
for ( StrnTermListOutDTO.StrnTerm strnTerm : list ) {
|
||||
list1.add( strnTermToStrnTerm( strnTerm ) );
|
||||
}
|
||||
|
||||
return list1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user