• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
chominsoo4245 / mjon_git star
Forked from hylee / mjon_git
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
mjon_gitsrcmainjavaitncomcmmComDefaultCodeVO.java
Download as .zip file
File name
Commit message
Commit date
DATABASE
mjon_git
2023-06-12
src/main
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
.codetogether.ignore
mjon_git
2023-06-12
.gitignore
gitignore 적용
2023-06-12
pom.xml
플러그인 추가 원복
2024-02-16
File name
Commit message
Commit date
java
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
resources
2024-06-12 관리자 로그인 검색 쿼리 수정
2024-06-12
webapp
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
File name
Commit message
Commit date
egovframework
mjon_git
2023-06-12
itn
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
File name
Commit message
Commit date
com
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
let
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
web
메인메뉴 및 사이트맵에서 선거 후보자 정보가 없는 경우 선거문자 메뉴가 안보이도록 처리
2024-02-08
File name
Commit message
Commit date
api/web
mjon_git
2023-06-12
cmm
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
sym/log/ulg
mjon_git
2023-06-12
usr/search/web
mjon_git
2023-06-12
uss
IP 차단 관련 오류 확인전
2024-04-09
utl
mjon_git
2023-06-12
File name
Commit message
Commit date
aspect
mjon_git
2023-06-12
captcha
mjon_git
2023-06-12
filter
mjon_git
2023-06-12
interceptor
알림톡 발송내용 필터검사 하지 않도록 추가
2024-06-10
service
mjon_git
2023-06-12
taglibs
mjon_git
2023-06-12
util
[사용자] 맞춤제작 > 내보관함 ==> 검색기간 기본값 제공
2024-07-04
web
첨부파일 다운로드시 원본 파일명에 "," 가 포함된 경우 "_"로 변환하여 다운로드 되도록 변경 - 관리자 파일 다운로드시 오류가 발생하여 변경 처리 함.
2023-10-11
AltibaseClobStringTypeHandler.java
mjon_git
2023-06-12
ComDefaultCodeVO.java
mjon_git
2023-06-12
ComDefaultVO.java
mjon_git
2023-06-12
EgovComCrossSiteHndlr.java
mjon_git
2023-06-12
EgovComExcepHndlr.java
mjon_git
2023-06-12
EgovComOthersExcepHndlr.java
mjon_git
2023-06-12
EgovComTraceHandler.java
mjon_git
2023-06-12
EgovMessageSource.java
mjon_git
2023-06-12
EgovMultiPartEmail.java
mjon_git
2023-06-12
EgovWebUtil.java
mjon_git
2023-06-12
ImagePaginationRenderer.java
mjon_git
2023-06-12
ImagePaginationRendererWeb.java
mjon_git
2023-06-12
JsonResult.java
mjon_git
2023-06-12
LoginVO.java
선거문자 비로그인시 발신번호 조회가 안되도록 수정
2023-07-27
ReadVO.java
mjon_git
2023-06-12
SessionVO.java
mjon_git
2023-06-12
UserVO.java
mjon_git
2023-06-12
hylee 2023-06-12 8aa85c5 mjon_git UNIX
Raw Open in browser Change history
package itn.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