99 lines
2.4 KiB
Java
99 lines
2.4 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import java.io.Serializable;
|
|
import org.hibernate.envers.Audited;
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
import javax.persistence.*;
|
|
|
|
import org.hibernate.validator.constraints.NotEmpty;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseMaster;
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import org.hibernate.annotations.Cascade;
|
|
import org.hibernate.annotations.NotFound;
|
|
import org.hibernate.annotations.NotFoundAction;
|
|
import org.hibernate.validator.constraints.Length;
|
|
import org.hibernate.validator.internal.util.logging.Messages;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
import com.fasterxml.jackson.annotation.JsonManagedReference;
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import org.hibernate.envers.Audited;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
|
|
/**
|
|
* class PasienDaftar
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Entity // @Audited
|
|
@Table(name = "SurveiDetail_M")
|
|
|
|
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
|
public class SurveiDetail extends BaseMaster {
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "survei")
|
|
@Caption(value = "survei")
|
|
@JsonBackReference
|
|
private Survei survei;
|
|
|
|
public Survei getSurvei() {
|
|
return survei;
|
|
}
|
|
|
|
public void setSurvei(Survei survei) {
|
|
this.survei = survei;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
@Column(name = "survei", insertable = false, updatable = false, nullable = true)
|
|
private Integer surveiId;
|
|
|
|
@Column(name = "name", nullable = false)
|
|
@Caption(value = "name")
|
|
private String name;
|
|
|
|
@Column(name = "report", nullable = true)
|
|
@Caption(value = "report")
|
|
private String report;
|
|
|
|
public String getReport() {
|
|
return report;
|
|
}
|
|
|
|
public void setReport(String report) {
|
|
this.report = report;
|
|
}
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.surveidetail_m_id_seq")
|
|
@javax.persistence.SequenceGenerator(name = "public.surveidetail_m_id_seq", sequenceName = "public.surveidetail_m_id_seq", allocationSize = 1)
|
|
@Column(name = "id")
|
|
protected Integer id;
|
|
|
|
public Integer getId() {
|
|
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
} |