생년월일 등 추가
This commit is contained in:
parent
f67b444687
commit
803e8e98b1
@ -64,6 +64,9 @@ public class NlibLoginVO implements Serializable {
|
|||||||
private String twitterId; /* 트위터아이디 */
|
private String twitterId; /* 트위터아이디 */
|
||||||
private String googleId; /* 구글플러스아이디 */
|
private String googleId; /* 구글플러스아이디 */
|
||||||
private String boardRowCnt; /* 글목록수 */
|
private String boardRowCnt; /* 글목록수 */
|
||||||
|
|
||||||
|
private String birthdate; /* 생년월일 */
|
||||||
|
private String gender; /* 성별(M:남자,F:여자) */
|
||||||
|
|
||||||
private String authKey; /* 로그인 인증키 */
|
private String authKey; /* 로그인 인증키 */
|
||||||
|
|
||||||
@ -359,6 +362,21 @@ public class NlibLoginVO implements Serializable {
|
|||||||
public void setAuthKey(String authKey) {
|
public void setAuthKey(String authKey) {
|
||||||
this.authKey = authKey;
|
this.authKey = authKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getBirthdate() {
|
||||||
|
return birthdate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBirthdate(String birthdate) {
|
||||||
|
this.birthdate = birthdate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getGender() {
|
||||||
|
return gender;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGender(String gender) {
|
||||||
|
this.gender = gender;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user