34 lines
819 B
Java
34 lines
819 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;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class DataPesertaPerusahanYangBekerjaSamaVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Data Perusahaan Yang Bekerja Sama")
|
|
private DataPerusahaanYangBekerjaSamaVO dataPerusahaanYangBekerjaSama;
|
|
|
|
@Caption(value = "Nama Peserta")
|
|
private String namaPeserta;
|
|
|
|
@Caption(value = "Jenis Kelamin")
|
|
private JenisKelaminVO jenisKelamin;
|
|
|
|
@Caption(value = "Jumlah Keluarga")
|
|
private Integer jumlahKeluarga;
|
|
|
|
@Caption(value = "Plafon Yang Dijamin")
|
|
private String plafonYangDijamin;
|
|
|
|
@Caption(value = "Alamat")
|
|
private String alamat;
|
|
|
|
@Caption(value = "No Tlp")
|
|
private String noTlp;
|
|
|
|
}
|