54 lines
1.7 KiB
Java
54 lines
1.7 KiB
Java
/************************************************************
|
|
*
|
|
* @packageName : io.company.localhost.vo
|
|
* @fileName : MemberVo.java
|
|
* @author : 조인제
|
|
* @date : 24.12.06
|
|
* @description :
|
|
*
|
|
* ===========================================================
|
|
* DATE AUTHOR NOTE
|
|
* -----------------------------------------------------------
|
|
* 24.12.06 조인제 최초 생성
|
|
*
|
|
*************************************************************/
|
|
package io.company.localhost.vo;
|
|
|
|
import lombok.*;
|
|
|
|
import java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@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 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 String usercolor; // usercolor
|
|
private Boolean remember; // 로그인 유지
|
|
}
|
|
|