29 lines
573 B
Java
29 lines
573 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 java.util.Date;
|
|
|
|
/**
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
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;
|
|
|
|
} |