77 lines
1.6 KiB
Java
77 lines
1.6 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.Table;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class DraftSuratRuanganVO extends BaseTransactionVO {
|
|
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "ObjectRuanganFk")
|
|
@Caption(value="ruangan")
|
|
private RuanganVO ruangan;
|
|
|
|
@Column(name = "ObjectRuanganFk", insertable=false,updatable=false, nullable = true)
|
|
private Integer ruanganId;
|
|
|
|
@Column(name = "isVerifikasi")
|
|
public Boolean isVerifikasi;
|
|
|
|
@Column(name = "fileName", nullable = true)
|
|
@Caption(value="fileName")
|
|
private String fileName;
|
|
|
|
@Column(name = "status")
|
|
public Boolean status;
|
|
|
|
public RuanganVO getRuangan() {
|
|
return ruangan;
|
|
}
|
|
|
|
public void setRuangan(RuanganVO ruangan) {
|
|
this.ruangan = ruangan;
|
|
}
|
|
|
|
public Integer getRuanganId() {
|
|
return ruanganId;
|
|
}
|
|
|
|
public void setRuanganId(Integer ruanganId) {
|
|
this.ruanganId = ruanganId;
|
|
}
|
|
|
|
public Boolean getIsVerifikasi() {
|
|
return isVerifikasi;
|
|
}
|
|
|
|
public void setIsVerifikasi(Boolean isVerifikasi) {
|
|
this.isVerifikasi = isVerifikasi;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return fileName;
|
|
}
|
|
|
|
public void setFileName(String fileName) {
|
|
this.fileName = fileName;
|
|
}
|
|
|
|
public Boolean getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(Boolean status) {
|
|
this.status = status;
|
|
}
|
|
|
|
|
|
}
|