127 lines
3.3 KiB
Java
127 lines
3.3 KiB
Java
package seed.map;
|
|
|
|
import java.util.Date;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.SequenceGenerator;
|
|
import javax.persistence.Table;
|
|
|
|
import org.hibernate.annotations.Proxy;
|
|
|
|
@Entity
|
|
@SequenceGenerator(name="sequence", sequenceName="SEQ_SURVEY_AUTH", allocationSize=1)
|
|
@Table(name = "T_SURVEY_AUTH")
|
|
@Proxy(lazy=true)
|
|
public class T_SURVEY_AUTH {
|
|
|
|
@Id
|
|
@Column(name = "SURVEY_AUTH_IDX", nullable=false, insertable=true, updatable=false)
|
|
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="sequence")
|
|
private Integer surveyAuthIdx;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name="SURVEY_SET_IDX", nullable=false, insertable=true, updatable= false)
|
|
private T_SURVEY_SET tSurveySet;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name="GROUP_IDX", nullable=false, insertable=true, updatable= false)
|
|
private T_GROUP tGroup;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name="MEMBER_IDX", nullable=false, insertable=true, updatable= true)
|
|
private T_MEMBER tMember;
|
|
|
|
@Column(name = "SURVEY_AUTH_LIST", length=1, nullable=false, insertable=true, updatable=true)
|
|
private String surveyAuthList;
|
|
|
|
@Column(name = "SURVEY_AUTH_WRITE", length=1, nullable=false, insertable=true, updatable=true)
|
|
private String surveyAuthWrite;
|
|
|
|
@Column(name = "SURVEY_AUTH_RESULT", length=1, nullable=false, insertable=true, updatable=true)
|
|
private String surveyAuthResult;
|
|
|
|
@Column(name = "SURVEY_AUTH_REGDATE", columnDefinition="TIMESTAMP", nullable=false, insertable=true, updatable=true)
|
|
private Date surveyAuthRegDate;
|
|
|
|
@Column(name = "SURVEY_AUTH_MODDATE", columnDefinition="TIMESTAMP", nullable=false, insertable=true, updatable=true)
|
|
private Date surveyAuthModDate;
|
|
|
|
public Integer getSurveyAuthIdx() {
|
|
return surveyAuthIdx;
|
|
}
|
|
|
|
public void setSurveyAuthIdx(Integer surveyAuthIdx) {
|
|
this.surveyAuthIdx = surveyAuthIdx;
|
|
}
|
|
|
|
public T_SURVEY_SET gettSurveySet() {
|
|
return tSurveySet;
|
|
}
|
|
|
|
public void settSurveySet(T_SURVEY_SET tSurveySet) {
|
|
this.tSurveySet = tSurveySet;
|
|
}
|
|
|
|
public T_GROUP gettGroup() {
|
|
return tGroup;
|
|
}
|
|
|
|
public void settGroup(T_GROUP tGroup) {
|
|
this.tGroup = tGroup;
|
|
}
|
|
|
|
public T_MEMBER gettMember() {
|
|
return tMember;
|
|
}
|
|
|
|
public void settMember(T_MEMBER tMember) {
|
|
this.tMember = tMember;
|
|
}
|
|
|
|
public String getSurveyAuthList() {
|
|
return surveyAuthList;
|
|
}
|
|
|
|
public void setSurveyAuthList(String surveyAuthList) {
|
|
this.surveyAuthList = surveyAuthList;
|
|
}
|
|
|
|
public String getSurveyAuthWrite() {
|
|
return surveyAuthWrite;
|
|
}
|
|
|
|
public void setSurveyAuthWrite(String surveyAuthWrite) {
|
|
this.surveyAuthWrite = surveyAuthWrite;
|
|
}
|
|
|
|
public String getSurveyAuthResult() {
|
|
return surveyAuthResult;
|
|
}
|
|
|
|
public void setSurveyAuthResult(String surveyAuthResult) {
|
|
this.surveyAuthResult = surveyAuthResult;
|
|
}
|
|
|
|
public Date getSurveyAuthRegDate() {
|
|
return surveyAuthRegDate;
|
|
}
|
|
|
|
public void setSurveyAuthRegDate(Date surveyAuthRegDate) {
|
|
this.surveyAuthRegDate = surveyAuthRegDate;
|
|
}
|
|
|
|
public Date getSurveyAuthModDate() {
|
|
return surveyAuthModDate;
|
|
}
|
|
|
|
public void setSurveyAuthModDate(Date surveyAuthModDate) {
|
|
this.surveyAuthModDate = surveyAuthModDate;
|
|
}
|
|
}
|