70 lines
1.5 KiB
Java
70 lines
1.5 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
|
|
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.JsonIgnoreProperties;
|
|
import com.google.gson.annotations.Expose;
|
|
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;
|
|
|
|
/**
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class MapKartuPengendaliToMetodeSubDetailVO extends BaseTransactionVO {
|
|
|
|
private String noRec;
|
|
|
|
@Caption(value="Tanggal Mulai")
|
|
private Date tanggalMulai;
|
|
|
|
@Caption(value="Tanggal Selesai")
|
|
private Date tanggalSelesai;
|
|
|
|
@Caption(value="keterangan")
|
|
private String keterangan;
|
|
|
|
public String getNoRec() {
|
|
return noRec;
|
|
}
|
|
|
|
public void setNoRec(String noRec) {
|
|
this.noRec = noRec;
|
|
}
|
|
|
|
public Date getTanggalMulai() {
|
|
return tanggalMulai;
|
|
}
|
|
|
|
public void setTanggalMulai(Date tanggalMulai) {
|
|
this.tanggalMulai = tanggalMulai;
|
|
}
|
|
|
|
public Date getTanggalSelesai() {
|
|
return tanggalSelesai;
|
|
}
|
|
|
|
public void setTanggalSelesai(Date tanggalSelesai) {
|
|
this.tanggalSelesai = tanggalSelesai;
|
|
}
|
|
|
|
public String getKeterangan() {
|
|
return keterangan;
|
|
}
|
|
|
|
public void setKeterangan(String keterangan) {
|
|
this.keterangan = keterangan;
|
|
}
|
|
|
|
|
|
|
|
} |