65 lines
1.4 KiB
Java
65 lines
1.4 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 javax.validation.constraints.NotNull;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import com.jasamedika.medifirst2000.base.BaseMaster;
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class Agama
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class DiputuskanDetailVO extends BaseTransactionVO {
|
|
|
|
@NotNull(message="Value tidak boleh kosong")
|
|
@Caption(value="value")
|
|
private String value;
|
|
|
|
@ManyToOne
|
|
@Caption(value="Object Kasus Penyakit Last")
|
|
private PasienDaftarVO pasienDaftar;
|
|
|
|
@ManyToOne
|
|
@Caption(value="Diputuskan Harus Di isi")
|
|
private DiputuskanVO diputuskan;
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public PasienDaftarVO getPasienDaftar() {
|
|
return pasienDaftar;
|
|
}
|
|
|
|
public void setPasienDaftar(PasienDaftarVO pasienDaftar) {
|
|
this.pasienDaftar = pasienDaftar;
|
|
}
|
|
|
|
public DiputuskanVO getDiputuskan() {
|
|
return diputuskan;
|
|
}
|
|
|
|
public void setDiputuskan(DiputuskanVO diputuskan) {
|
|
this.diputuskan = diputuskan;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|