• Y
  • List All
  • Feedback
    • This Project
    • This Group
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
2025_PROJECT / orgasis star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
orgasissrcmainjavakcccomcmmComDefaultCodeVO.java
Download as .zip file
File name
Commit message
Commit date
src/main
메뉴관리 > eng 영역 추가
02-04
.gitignore
5648 관리자 메인비주얼관리 수정
01-26
GEMINI.md
메뉴관리 > eng 영역 추가
02-04
README.md
first commit
2025-12-11
pom.xml
first commit
2025-12-11
File name
Commit message
Commit date
java/kcc
메뉴관리 > eng 영역 추가
02-04
resources
메뉴관리 > eng 영역 추가
02-04
webapp
메뉴관리 > eng 영역 추가
02-04
File name
Commit message
Commit date
com
팝업관리 오류 수정
01-29
let
메뉴관리 > eng 영역 추가
02-04
web
메뉴관리 > eng 영역 추가
02-04
xxx
first commit
2025-12-11
File name
Commit message
Commit date
cmm
포토 getImage.do 컨트롤러 이동
01-28
sym/log/ulg
first commit
2025-12-11
uss/ion
팝업관리 오류 수정
01-29
utl
first commit
2025-12-11
File name
Commit message
Commit date
aspect
first commit
2025-12-11
captcha
first commit
2025-12-11
exception
first commit
2025-12-11
filter
first commit
2025-12-11
interceptor
first commit
2025-12-11
service
first commit
2025-12-11
spring
first commit
2025-12-11
taglibs
first commit
2025-12-11
util
first commit
2025-12-11
web
포토 getImage.do 컨트롤러 이동
01-28
AltibaseClobStringTypeHandler.java
first commit
2025-12-11
CmmUtil.java
first commit
2025-12-11
ComDefaultCodeVO.java
first commit
2025-12-11
ComDefaultVO.java
first commit
2025-12-11
EgovComCrossSiteHndlr.java
first commit
2025-12-11
EgovComExcepHndlr.java
first commit
2025-12-11
EgovComOthersExcepHndlr.java
first commit
2025-12-11
EgovComTraceHandler.java
first commit
2025-12-11
EgovMessageSource.java
first commit
2025-12-11
EgovMultiPartEmail.java
first commit
2025-12-11
EgovWebUtil.java
first commit
2025-12-11
ImagePaginationRenderer.java
first commit
2025-12-11
ImagePaginationRendererWeb.java
first commit
2025-12-11
JsonResult.java
first commit
2025-12-11
LoginVO.java
first commit
2025-12-11
ReadVO.java
first commit
2025-12-11
SessionVO.java
first commit
2025-12-11
UserVO.java
first commit
2025-12-11
hehihoho3@gmail.com 2025-12-11 03b6c6a first commit UNIX
Raw Open in browser Change history
package kcc.com.cmm; import java.io.Serializable; import org.apache.commons.lang3.builder.ToStringBuilder; /** * 클래스 * @author 공통서비스개발팀 이삼섭 * @since 2009.06.01 * @version 1.0 * @see * * <pre> * << 개정이력(Modification Information) >> * * 수정일 수정자 수정내용 * ------- -------- --------------------------- * 2009.3.11 이삼섭 최초 생성 * * </pre> */ @SuppressWarnings("serial") public class ComDefaultCodeVO implements Serializable { /** 코드 ID */ private String codeId = ""; /** 상세코드 */ private String code = ""; /** 코드명 */ private String codeNm = ""; /** 코드설명 */ private String codeDc = ""; /** 특정테이블명 */ private String tableNm = ""; //특정테이블에서 코드정보를추출시 사용 /** 상세 조건 여부 */ private String haveDetailCondition = "N"; /** 상세 조건 */ private String detailCondition = ""; /** * codeId attribute를 리턴한다. * * @return the codeId */ public String getCodeId() { return codeId; } /** * codeId attribute 값을 설정한다. * * @param codeId * the codeId to set */ public void setCodeId(String codeId) { this.codeId = codeId; } /** * code attribute를 리턴한다. * * @return the code */ public String getCode() { return code; } /** * code attribute 값을 설정한다. * * @param code * the code to set */ public void setCode(String code) { this.code = code; } /** * codeNm attribute를 리턴한다. * * @return the codeNm */ public String getCodeNm() { return codeNm; } /** * codeNm attribute 값을 설정한다. * * @param codeNm * the codeNm to set */ public void setCodeNm(String codeNm) { this.codeNm = codeNm; } /** * codeDc attribute를 리턴한다. * * @return the codeDc */ public String getCodeDc() { return codeDc; } /** * codeDc attribute 값을 설정한다. * * @param codeDc * the codeDc to set */ public void setCodeDc(String codeDc) { this.codeDc = codeDc; } /** * tableNm attribute를 리턴한다. * * @return the tableNm */ public String getTableNm() { return tableNm; } /** * tableNm attribute 값을 설정한다. * * @param tableNm * the tableNm to set */ public void setTableNm(String tableNm) { this.tableNm = tableNm; } /** * haveDetailCondition attribute를 리턴한다. * * @return the haveDetailCondition */ public String getHaveDetailCondition() { return haveDetailCondition; } /** * haveDetailCondition attribute 값을 설정한다. * * @param haveDetailCondition * the haveDetailCondition to set */ public void setHaveDetailCondition(String haveDetailCondition) { this.haveDetailCondition = haveDetailCondition; } /** * detailCondition attribute를 리턴한다. * * @return the detailCondition */ public String getDetailCondition() { return detailCondition; } /** * detailCondition attribute 값을 설정한다. * * @param detailCondition * the detailCondition to set */ public void setDetailCondition(String detailCondition) { this.detailCondition = detailCondition; } /** * toString 메소드를 대치한다. */ public String toString() { return ToStringBuilder.reflectionToString(this); } }

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up