기타 부분 처리중

This commit is contained in:
JSYOO 2021-12-21 11:03:46 +09:00
parent 12d47aac08
commit 8f1716a430
2 changed files with 8 additions and 1 deletions

View File

@ -169,7 +169,7 @@ public class CollectionServiceImpl implements CollectionService {
if(cVO == null) continue;
vo.setTitle (cVO.getTitle());
vo.setTitle (StringUtil.getString(cVO.getTitle() , vo.getTitle()));
vo.setTypeDivCd (StringUtil.getString(cVO.getTypeDivCd() , vo.getTypeDivCd()));
vo.setTypeCodeNm (StringUtil.getString(cVO.getTypeCodeNm() , vo.getTypeCodeNm()));

View File

@ -272,6 +272,13 @@ public class NlibSearchServiceImpl implements NlibSearchService{
CollectionVO vo = new CollectionVO();
vo.setMasterId(tmp.get("MASTER_ID").getAsString());
vo.setMngtNo(tmp.get("MNGT_NO").getAsString());
vo.setTitle(tmp.get("TITLE").getAsString());
vo.setTypeCodeNm(tmp.get("TYPE_CODE_NM").getAsString());
vo.setDtlsTypeDivNm(tmp.get("DTLS_TYPE_DIV_NM").getAsString());
vo.setSubjectNm(tmp.get("SUBJECT_NM").getAsString());
vo.setSubjectNmUp(tmp.get("SUBJECT_NM_UP").getAsString());
vo.setOrgNm(tmp.get("ORG_NM").getAsString());
vo.setCreatYyyy(tmp.get("CREAT_YYYY").getAsString());
list.add(vo);