38 lines
749 B
Java
38 lines
749 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class PemindahanEmbrioDariSimpanBekuVO extends BaseMasterVO {
|
|
|
|
@Column(name = "Tanggal", nullable = false , length = 100)
|
|
@Caption(value="Tanggal")
|
|
private Date tanggal;
|
|
|
|
@Column(name = "Jumlah", nullable = false , length = 100)
|
|
@Caption(value="Jumlah")
|
|
private Integer jumlah;
|
|
|
|
public Date getTanggal() {
|
|
return tanggal;
|
|
}
|
|
|
|
public void setTanggal(Date tanggal) {
|
|
this.tanggal = tanggal;
|
|
}
|
|
|
|
public Integer getJumlah() {
|
|
return jumlah;
|
|
}
|
|
|
|
public void setJumlah(Integer jumlah) {
|
|
this.jumlah = jumlah;
|
|
}
|
|
|
|
|
|
}
|