생년월일 등 추가

This commit is contained in:
KNKIM 2021-08-18 11:12:29 +09:00
parent f67b444687
commit 803e8e98b1

View File

@ -65,6 +65,9 @@ public class NlibLoginVO implements Serializable {
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; /* 로그인 인증키 */
@ -360,5 +363,20 @@ public class NlibLoginVO implements Serializable {
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;
}
} }