30 lines
733 B
Java
30 lines
733 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
import java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class PembatalanPasienVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Pasien Daftar")
|
|
@NotNull(message = "Tanggal Retur Harus Diisi")
|
|
private PasienDaftarVO pasienDaftar;
|
|
|
|
@Caption(value = "Tanggal Retur")
|
|
@NotNull(message = "Tanggal Retur Harus Diisi")
|
|
private Date tglRetur;
|
|
|
|
@Caption(value = "Keterangan Lainnya")
|
|
private String keteranganaLainnya;
|
|
|
|
@Caption(value = "Keterangan Alasan")
|
|
private String keteranganAlasan;
|
|
|
|
}
|