69 lines
1.4 KiB
Java
69 lines
1.4 KiB
Java
package com.eactive.httpmockserver.user.entity;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* COMTNEMPLYRSCRTYESTBS 사용자보안설정
|
|
*
|
|
* @author
|
|
* @version 1.0
|
|
*/
|
|
@Entity
|
|
@Table(name = "COMTNEMPLYRSCRTYESTBS")
|
|
public class UserSecurity implements Serializable {
|
|
public UserSecurity() {
|
|
}
|
|
|
|
public UserSecurity(String authorCode) {
|
|
this.authorCode = authorCode;
|
|
}
|
|
|
|
/**
|
|
* 권한코드
|
|
*/
|
|
@Column(name = "AUTHOR_CODE", nullable = false)
|
|
private String authorCode;
|
|
|
|
/**
|
|
* 회원유형코드
|
|
*/
|
|
@Column(name = "MBER_TY_CODE", nullable = true)
|
|
private String memberTypeCode;
|
|
|
|
/**
|
|
* 보안설정대상ID
|
|
*/
|
|
@Id
|
|
@Column(name = "SCRTY_DTRMN_TRGET_ID", nullable = false)
|
|
private String userEsntlId;
|
|
|
|
|
|
public String getAuthorCode() {
|
|
return authorCode;
|
|
}
|
|
|
|
public void setAuthorCode(String authorCode) {
|
|
this.authorCode = authorCode;
|
|
}
|
|
|
|
public String getMemberTypeCode() {
|
|
return memberTypeCode;
|
|
}
|
|
|
|
public void setMemberTypeCode(String memberTypeCode) {
|
|
this.memberTypeCode = memberTypeCode;
|
|
}
|
|
|
|
public String getUserEsntlId() {
|
|
return userEsntlId;
|
|
}
|
|
|
|
public void setUserEsntlId(String userEsntlId) {
|
|
this.userEsntlId = userEsntlId;
|
|
}
|
|
}
|