refactor: 이노닉스 Enum 필드 추가
This commit is contained in:
parent
325bc7daff
commit
722df12dad
@ -1,8 +1,8 @@
|
|||||||
package kcc.com.cmm.service;
|
package kcc.com.cmm.service;
|
||||||
|
|
||||||
public enum AdrInnorixFileEnumVO {
|
public enum AdrInnorixFileEnumVO {
|
||||||
/** 과거사건문서 > 문서관리 */ adjReqMgrPastFileRegist("PST_", "", "", "")
|
/** 과거사건문서 > 문서관리 */ adjReqMgrPastFileRegist("PST_", "", "", "", "")
|
||||||
/** 조정진행목록 > 사건문서 > 문서등록 */ , docRegPop("CHGDATE_", "정진행관리>>조정진행목록>조정진행상세>사건문서>P>문서등록", "A160", "")
|
/** 조정진행목록 > 사건문서 > 문서등록 */ , docRegPop("CHGDATE_", "정진행관리>>조정진행목록>조정진행상세>사건문서>P>문서등록", "A160", "", "")
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
@ -10,12 +10,14 @@ public enum AdrInnorixFileEnumVO {
|
|||||||
private final String p_code_desc;
|
private final String p_code_desc;
|
||||||
private final String p_stat_cd;
|
private final String p_stat_cd;
|
||||||
private final String p_adrHstryMgrSeq;
|
private final String p_adrHstryMgrSeq;
|
||||||
|
private final String p_updateQuery;
|
||||||
|
|
||||||
AdrInnorixFileEnumVO(String p_file_nm_prefix, String p_code_desc, String p_stat_cd, String p_adrHstryMgrSeq) {
|
AdrInnorixFileEnumVO(String p_file_nm_prefix, String p_code_desc, String p_stat_cd, String p_adrHstryMgrSeq, String p_updateQuery) {
|
||||||
this.p_file_nm_prefix = p_file_nm_prefix;
|
this.p_file_nm_prefix = p_file_nm_prefix;
|
||||||
this.p_code_desc = p_code_desc;
|
this.p_code_desc = p_code_desc;
|
||||||
this.p_stat_cd = p_stat_cd;
|
this.p_stat_cd = p_stat_cd;
|
||||||
this.p_adrHstryMgrSeq = p_adrHstryMgrSeq;
|
this.p_adrHstryMgrSeq = p_adrHstryMgrSeq;
|
||||||
|
this.p_updateQuery = p_updateQuery;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getP_file_nm_prefix() {
|
public String getP_file_nm_prefix() {
|
||||||
@ -33,6 +35,10 @@ public enum AdrInnorixFileEnumVO {
|
|||||||
public String getP_adrHstryMgrSeq() {
|
public String getP_adrHstryMgrSeq() {
|
||||||
return p_adrHstryMgrSeq;
|
return p_adrHstryMgrSeq;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getP_updateQuery() {
|
||||||
|
return p_updateQuery;
|
||||||
|
}
|
||||||
|
|
||||||
public AdrInnorixFileVO conversion(AdrInnorixFileEnumVO enumVO, AdrInnorixFileVO adrInnorixFileListVO) {
|
public AdrInnorixFileVO conversion(AdrInnorixFileEnumVO enumVO, AdrInnorixFileVO adrInnorixFileListVO) {
|
||||||
|
|
||||||
|
|||||||
@ -36,6 +36,7 @@ public class AdrInnorixFileVO extends ComDefaultVO implements Serializable {
|
|||||||
public String p_code_desc = ""; // dest
|
public String p_code_desc = ""; // dest
|
||||||
public String p_stat_cd = ""; // 상태 코드
|
public String p_stat_cd = ""; // 상태 코드
|
||||||
public String p_adrHstryMgrSeq = "";
|
public String p_adrHstryMgrSeq = "";
|
||||||
|
public String p_updateQuery = "";
|
||||||
public String rpplDocSeq = "";
|
public String rpplDocSeq = "";
|
||||||
public String rpplSeq = "";
|
public String rpplSeq = "";
|
||||||
public String adrDocCn1 = "";
|
public String adrDocCn1 = "";
|
||||||
@ -192,6 +193,14 @@ public class AdrInnorixFileVO extends ComDefaultVO implements Serializable {
|
|||||||
this.p_adrHstryMgrSeq = p_adrHstryMgrSeq;
|
this.p_adrHstryMgrSeq = p_adrHstryMgrSeq;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getP_updateQuery() {
|
||||||
|
return p_updateQuery;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setP_updateQuery(String p_updateQuery) {
|
||||||
|
this.p_updateQuery = p_updateQuery;
|
||||||
|
}
|
||||||
|
|
||||||
public String getRpplDocSeq() {
|
public String getRpplDocSeq() {
|
||||||
return rpplDocSeq;
|
return rpplDocSeq;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -87,6 +87,7 @@ public class InnorixFileServiceImpl extends EgovAbstractServiceImpl implements I
|
|||||||
|
|
||||||
adrInnorixFileListVO.setRpplDocSeq(this.insertAdrRpplDoc(adrInnorixFileListVO));
|
adrInnorixFileListVO.setRpplDocSeq(this.insertAdrRpplDoc(adrInnorixFileListVO));
|
||||||
|
|
||||||
|
// P_code_desc가 없으면 이력을 넣지 않음.
|
||||||
if(StringUtils.isNotEmpty(adrInnorixFileListVO.getP_code_desc()))
|
if(StringUtils.isNotEmpty(adrInnorixFileListVO.getP_code_desc()))
|
||||||
this.ansSubmitAjax(adrInnorixFileListVO);
|
this.ansSubmitAjax(adrInnorixFileListVO);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user