다시 수정

This commit is contained in:
yoon 2025-01-24 11:06:34 +09:00
parent 4795be7748
commit 8972228213
2 changed files with 28 additions and 20 deletions

View File

@ -26,25 +26,27 @@ import java.util.Date;
@ToString
public class MemberVo {
private Long id;
private String loginId; // 사용자 아이디
private String role; // 권한
private String token; // 토큰
private String profile; // 프로필사진
private String name; // 이름
private String password; // 비밀번호
private String passwordhint;// 비밀번호힌트
private String passwordRes; // 비밀번호힌트답변
private int position; // 직급
private String address; // 주소
private String zipcode; // 우편번호
private String phone; // 전화번호
private Date regist; // 가입요청일
private Date isCdt; // 입사일
private String isUsed; // 허가여부
private String isDel; // 퇴사여부
private String isLea; // 휴직여부
private int color; // 색상
private int mbit; // MBTI
private Boolean remember; // 로그인 유지
private String loginId; // 사용자 아이디
private String role; // 권한
private String token; // 토큰
private String profile; // 프로필사진
private String name; // 이름
private String password; // 비밀번호
private String passwordhint; // 비밀번호힌트
private String passwordRes; // 비밀번호힌트답변
private int position; // 직급
private String address; // 주소
private String addressDetail; // 상세주소
private String zipcode; // 우편번호
private Date birth; // 생년월일
private String phone; // 전화번호
private Date regist; // 가입요청일
private Date isCdt; // 입사일
private String isUsed; // 허가여부
private String isDel; // 퇴사여부
private String isLea; // 휴직여부
private int color; // 색상
private int mbit; // MBTI
private Boolean remember; // 로그인 유지
}

View File

@ -15,7 +15,9 @@
, MEMBERPWR AS passwordRes
, MEMBERPOS AS position
, MEMBERARR AS address
, MEMBERDTL AS addressDetail
, MEMBERZIP AS zipcode
, MEMBERBTH AS birth
, MEMBERTEL AS phone
, MEMBERRDT AS regist
, MEMBERCDT AS isCdt
@ -43,7 +45,9 @@
MEMBERPWR,
MEMBERPOS,
MEMBERARR,
MEMBERDTL,
MEMBERZIP,
MEMBERBTH,
MEMBERTEL,
MEMBERRDT,
MEMBERCDT,
@ -63,7 +67,9 @@
#{memberPwr},
#{memberPos},
#{memberArr},
#{memberDtl},
#{memberZip},
#{memberBth},
#{memberTel},
#{memberRdt},
#{memberCdt},