다시 수정
This commit is contained in:
parent
4795be7748
commit
8972228213
@ -26,25 +26,27 @@ import java.util.Date;
|
|||||||
@ToString
|
@ToString
|
||||||
public class MemberVo {
|
public class MemberVo {
|
||||||
private Long id;
|
private Long id;
|
||||||
private String loginId; // 사용자 아이디
|
private String loginId; // 사용자 아이디
|
||||||
private String role; // 권한
|
private String role; // 권한
|
||||||
private String token; // 토큰
|
private String token; // 토큰
|
||||||
private String profile; // 프로필사진
|
private String profile; // 프로필사진
|
||||||
private String name; // 이름
|
private String name; // 이름
|
||||||
private String password; // 비밀번호
|
private String password; // 비밀번호
|
||||||
private String passwordhint;// 비밀번호힌트
|
private String passwordhint; // 비밀번호힌트
|
||||||
private String passwordRes; // 비밀번호힌트답변
|
private String passwordRes; // 비밀번호힌트답변
|
||||||
private int position; // 직급
|
private int position; // 직급
|
||||||
private String address; // 주소
|
private String address; // 주소
|
||||||
private String zipcode; // 우편번호
|
private String addressDetail; // 상세주소
|
||||||
private String phone; // 전화번호
|
private String zipcode; // 우편번호
|
||||||
private Date regist; // 가입요청일
|
private Date birth; // 생년월일
|
||||||
private Date isCdt; // 입사일
|
private String phone; // 전화번호
|
||||||
private String isUsed; // 허가여부
|
private Date regist; // 가입요청일
|
||||||
private String isDel; // 퇴사여부
|
private Date isCdt; // 입사일
|
||||||
private String isLea; // 휴직여부
|
private String isUsed; // 허가여부
|
||||||
private int color; // 색상
|
private String isDel; // 퇴사여부
|
||||||
private int mbit; // MBTI
|
private String isLea; // 휴직여부
|
||||||
private Boolean remember; // 로그인 유지
|
private int color; // 색상
|
||||||
|
private int mbit; // MBTI
|
||||||
|
private Boolean remember; // 로그인 유지
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,9 @@
|
|||||||
, MEMBERPWR AS passwordRes
|
, MEMBERPWR AS passwordRes
|
||||||
, MEMBERPOS AS position
|
, MEMBERPOS AS position
|
||||||
, MEMBERARR AS address
|
, MEMBERARR AS address
|
||||||
|
, MEMBERDTL AS addressDetail
|
||||||
, MEMBERZIP AS zipcode
|
, MEMBERZIP AS zipcode
|
||||||
|
, MEMBERBTH AS birth
|
||||||
, MEMBERTEL AS phone
|
, MEMBERTEL AS phone
|
||||||
, MEMBERRDT AS regist
|
, MEMBERRDT AS regist
|
||||||
, MEMBERCDT AS isCdt
|
, MEMBERCDT AS isCdt
|
||||||
@ -43,7 +45,9 @@
|
|||||||
MEMBERPWR,
|
MEMBERPWR,
|
||||||
MEMBERPOS,
|
MEMBERPOS,
|
||||||
MEMBERARR,
|
MEMBERARR,
|
||||||
|
MEMBERDTL,
|
||||||
MEMBERZIP,
|
MEMBERZIP,
|
||||||
|
MEMBERBTH,
|
||||||
MEMBERTEL,
|
MEMBERTEL,
|
||||||
MEMBERRDT,
|
MEMBERRDT,
|
||||||
MEMBERCDT,
|
MEMBERCDT,
|
||||||
@ -63,7 +67,9 @@
|
|||||||
#{memberPwr},
|
#{memberPwr},
|
||||||
#{memberPos},
|
#{memberPos},
|
||||||
#{memberArr},
|
#{memberArr},
|
||||||
|
#{memberDtl},
|
||||||
#{memberZip},
|
#{memberZip},
|
||||||
|
#{memberBth},
|
||||||
#{memberTel},
|
#{memberTel},
|
||||||
#{memberRdt},
|
#{memberRdt},
|
||||||
#{memberCdt},
|
#{memberCdt},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user