명시적 변수 초기화

This commit is contained in:
KNKIM 2021-07-23 11:16:52 +09:00
parent 365498e6ca
commit b775148d1a

View File

@ -32,56 +32,57 @@ public class NlibLoginVO implements Serializable {
private static final long serialVersionUID = -8274004534207618049L; private static final long serialVersionUID = -8274004534207618049L;
/** 아이디 */ /** 아이디 */
private String id; private String id = null;
/** 이름 */ /** 이름 */
private String name; private String name = null;
/** 주민등록번호 */ /** 주민등록번호 */
private String ihidNum; private String ihidNum = null;
/** 이메일주소 */ /** 이메일주소 */
private String email; private String email = null;
/** 비밀번호 */ /** 비밀번호 */
private String password; private String password = null;
/** 비밀번호 힌트 */ /** 비밀번호 힌트 */
private String passwordHint; private String passwordHint = null;
/** 비밀번호 정답 */ /** 비밀번호 정답 */
private String passwordCnsr; private String passwordCnsr = null;
/** 사용자구분 */ /** 사용자구분 */
private String userSe; private String userSe = null;
/** 조직(부서)ID */ /** 조직(부서)ID */
private String orgnztId; private String orgnztId = null;
/** 조직(부서)명 */ /** 조직(부서)명 */
private String orgnztNm; private String orgnztNm = null;
/** 고유아이디 */ /** 고유아이디 */
private String uniqId; private String uniqId = null;
/** 로그인 후 이동할 페이지 */ /** 로그인 후 이동할 페이지 */
private String url; private String url = null;
/** 사용자 IP정보 */ /** 사용자 IP정보 */
private String ip; private String ip = null;
/** GPKI인증 DN */ /** GPKI인증 DN */
private String dn; private String dn = null;
/** 인증키 */ /** 인증키 */
private String authKey; private String authKey = null;
/** 페이지번호 */ /** 페이지번호 */
private String page; private String page = null;
/** 게시물 수 */ /** 게시물 수 */
private String rows; private String rows = null;
/** 핸드폰 번호 */ /** 핸드폰 번호 */
private String phone; private String phone = null;
/** 우편번호 */ /** 우편번호 */
private String zipNo; private String zipNo = null;
/** 도로명주소 */ /** 도로명주소 */
private String roadAddrPart; private String roadAddrPart = null;
/** 상세주소 */ /** 상세주소 */
private String addrDetail; private String addrDetail = null;
/** 생년월일 */ /** 생년월일 */
private String birthday; private String birthday = null;
/** 생일 년도 */ /** 생일 년도 */
private String birth_yy; private String birth_yy = null;
/** 생일 월 */ /** 생일 월 */
private String birth_mm; private String birth_mm = null;
/** 생일 날짜 */ /** 생일 날짜 */
private String birth_dd; private String birth_dd = null;
public String getAuthKey() { public String getAuthKey() {
return authKey; return authKey;