66 lines
1.3 KiB
Java
66 lines
1.3 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class PapPengambilanSpesimenVO extends MedicalRecordTransactionVO{
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "BahanSampleFk")
|
|
@Caption(value="Bahan Sample")
|
|
private BahanSampleVO bahanSample;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "StrukOrderFk")
|
|
@Caption(value="Struk Order")
|
|
private StrukOrderVO strukOrder;
|
|
|
|
@Column(name = "Jumlah")
|
|
@Caption(value="Jumlah")
|
|
private Integer jumlah;
|
|
|
|
@Column(name = "TglAmbilSpesimen")
|
|
@Caption(value="Tanggal Ambil Spesimen")
|
|
private Date tglAmbilSpesimen;
|
|
|
|
public BahanSampleVO getBahanSample() {
|
|
return bahanSample;
|
|
}
|
|
|
|
public void setBahanSample(BahanSampleVO bahanSample) {
|
|
this.bahanSample = bahanSample;
|
|
}
|
|
|
|
public Integer getJumlah() {
|
|
return jumlah;
|
|
}
|
|
|
|
public void setJumlah(Integer jumlah) {
|
|
this.jumlah = jumlah;
|
|
}
|
|
|
|
public Date getTglAmbilSpesimen() {
|
|
return tglAmbilSpesimen;
|
|
}
|
|
|
|
public void setTglAmbilSpesimen(Date tglAmbilSpesimen) {
|
|
this.tglAmbilSpesimen = tglAmbilSpesimen;
|
|
}
|
|
|
|
public StrukOrderVO getStrukOrder() {
|
|
return strukOrder;
|
|
}
|
|
|
|
public void setStrukOrder(StrukOrderVO strukOrder) {
|
|
this.strukOrder = strukOrder;
|
|
}
|
|
|
|
|
|
|
|
}
|