fix : 유저 관련 수정

main
이범준 1 year ago
parent b9e9fe17a3
commit d986c6db07

@ -18,16 +18,17 @@ public class XitLoginVO implements Serializable{
* serialVersionUID * serialVersionUID
*/ */
private static final long serialVersionUID = 4351132649093520622L; private static final long serialVersionUID = 4351132649093520622L;
/** 고유아이디 */
/** 아이디 */ private String uniqId;
/** 계정아이디 */
private String id; private String id;
/** 비밀번호 */
private String passwd;
/** 이름 */ /** 이름 */
private String name; private String name;
/** 이메일주소 */ /** 이메일주소 */
private String email; private String email;
/** 비밀번호 */
private String passwd;
/** 비밀번호 힌트 */ /** 비밀번호 힌트 */
private String passwdHint; private String passwdHint;
/** 비밀번호 정답 */ /** 비밀번호 정답 */
@ -40,8 +41,7 @@ public class XitLoginVO implements Serializable{
private String orgId; private String orgId;
/** 조직명 */ /** 조직명 */
private String orgnztNm; private String orgnztNm;
/** 고유아이디 */
private String uniqId;
/** 로그인 후 이동할 페이지 */ /** 로그인 후 이동할 페이지 */
private String url; private String url;
/** 사용자 IP정보 */ /** 사용자 IP정보 */
@ -84,7 +84,8 @@ public class XitLoginVO implements Serializable{
} else if(obj instanceof XitUserInfoVO) { } else if(obj instanceof XitUserInfoVO) {
//업무사용자 //업무사용자
XitUserInfoVO vo = (XitUserInfoVO)obj; XitUserInfoVO vo = (XitUserInfoVO)obj;
this.id = vo.getUserId(); this.uniqId = vo.getUserId();
this.id = vo.getUserAcnt();
this.name = vo.getUserNm(); this.name = vo.getUserNm();
this.passwd = vo.getPasswd(); this.passwd = vo.getPasswd();
this.email = vo.getEmlAdrs(); this.email = vo.getEmlAdrs();
@ -93,7 +94,6 @@ public class XitLoginVO implements Serializable{
this.orgnztNm = vo.getOrgnztNm(); this.orgnztNm = vo.getOrgnztNm();
this.grpId = vo.getGrpId(); this.grpId = vo.getGrpId();
this.nsttCd = vo.getNsttCd(); this.nsttCd = vo.getNsttCd();
this.uniqId = vo.getUserKey();
this.jobDataAuthor = vo.getJobDataAuthor(); this.jobDataAuthor = vo.getJobDataAuthor();
this.userManageAuthor = vo.getUserManageAuthor(); this.userManageAuthor = vo.getUserManageAuthor();
this.elctrnsanctnUseYn = vo.getElctrnsanctnUseYn(); this.elctrnsanctnUseYn = vo.getElctrnsanctnUseYn();

@ -17,8 +17,8 @@ public class XitUserInfoChangeDtlsVO extends BaseVO {
* serialVersionUID * serialVersionUID
*/ */
private static final long serialVersionUID = 5110481577978255607L; private static final long serialVersionUID = 5110481577978255607L;
protected String userId; //고유 id
protected String userId; //사용자 id protected String userAcnt; //계정 id
protected String changeDe; //변경 일 protected String changeDe; //변경 일
protected String orgId; //조직 id protected String orgId; //조직 id
protected String grpId; //그룹 id protected String grpId; //그룹 id
@ -37,13 +37,13 @@ public class XitUserInfoChangeDtlsVO extends BaseVO {
protected String nsttCd; //소속기관 코드 protected String nsttCd; //소속기관 코드
protected String stts; //사용자 상태 코드 protected String stts; //사용자 상태 코드
protected String userKey; //고유 id
public String getUserId() { public String getUserAcnt() {
return userId; return userAcnt;
} }
public void setUserId(String userId) { public void setUserAcnt(String userAcnt) {
this.userId = userId; this.userAcnt = userAcnt;
} }
public String getChangeDe() { public String getChangeDe() {
return changeDe; return changeDe;
@ -144,11 +144,11 @@ public class XitUserInfoChangeDtlsVO extends BaseVO {
public void setStts(String stts) { public void setStts(String stts) {
this.stts = stts; this.stts = stts;
} }
public String getUserKey() { public String getUserId() {
return userKey; return userId;
} }
public void setUserKey(String userKey) { public void setUserId(String userId) {
this.userKey = userKey; this.userId = userId;
} }

@ -23,12 +23,13 @@ public class XitUserInfoVO extends XitUserEtcOptionVO {
* serialVersionUID * serialVersionUID
*/ */
private static final long serialVersionUID = -4545167436366021662L; private static final long serialVersionUID = -4545167436366021662L;
// protected String userId; //사용자 id protected String userId; //고유 id
protected String orgId; //조직 id protected String userAcnt; //계정 id
protected String userNm; //사용자 명
protected String passwd; //비밀번호 protected String passwd; //비밀번호
protected String passwd2; //비밀번호 protected String passwd2; //비밀번호
protected String orgId; //조직 id
protected String userNm; //사용자 명
protected String empNo; //사원 번호 protected String empNo; //사원 번호
protected String gender; //성별 코드 protected String gender; //성별 코드
protected String brdt; //생일 protected String brdt; //생일
@ -46,7 +47,7 @@ public class XitUserInfoVO extends XitUserEtcOptionVO {
protected String grpId; //그룹 id - 업무그룹(sgg_cd) protected String grpId; //그룹 id - 업무그룹(sgg_cd)
protected String nsttCd; //소속기관 코드 - 시스템코드(sysSeCd) protected String nsttCd; //소속기관 코드 - 시스템코드(sysSeCd)
protected String stts; //사용자 상태 코드 protected String stts; //사용자 상태 코드
protected String userKey; //고유 id
protected String crtfcDn; //인증 dn 값 protected String crtfcDn; //인증 dn 값
protected String regDt; //가입 일 protected String regDt; //가입 일

Loading…
Cancel
Save