package kcc.com.cmm; import java.io.Serializable; /** * @Class Name : UserVO.java * @Description : Login VO class * @Modification Information * @ * @ 수정일 수정자 수정내용 * @ ------- -------- --------------------------- * @ 2018.09.27 ITN 최초 생성 * * @author ITN * @since 2018.09.27 * @version 1.0 * @see * */ public class UserVO implements Serializable{ /** * */ private static final long serialVersionUID = 1L; /** 이름 */ private String name; /** 이메일주소 */ private String email; /** 사용자구분 */ private String userSe; /** 고유아이디 */ private String uniqId; /** 로그인 후 이동할 페이지 */ private String url; /** 사용자 IP정보 */ private String ip; /** GPKI인증 DN */ private String dn; /** 핸드폰인증 DN */ private String mblDn; /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the email */ public String getEmail() { return email; } /** * @param email the email to set */ public void setEmail(String email) { this.email = email; } /** * @return the userSe */ public String getUserSe() { return userSe; } /** * @param userSe the userSe to set */ public void setUserSe(String userSe) { this.userSe = userSe; } /** * @return the uniqId */ public String getUniqId() { return uniqId; } /** * @param uniqId the uniqId to set */ public void setUniqId(String uniqId) { this.uniqId = uniqId; } /** * @return the url */ public String getUrl() { return url; } /** * @param url the url to set */ public void setUrl(String url) { this.url = url; } /** * @return the ip */ public String getIp() { return ip; } /** * @param ip the ip to set */ public void setIp(String ip) { this.ip = ip; } /** * @return the dn */ public String getDn() { return dn; } /** * @param dn the dn to set */ public void setDn(String dn) { this.dn = dn; } /** * @return the mblDn */ public String getMblDn() { return mblDn; } /** * @param mblDn the mblDn to set */ public void setMblDn(String mblDn) { this.mblDn = mblDn; } }