59 lines
1.2 KiB
Java
59 lines
1.2 KiB
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;
|
|
|
|
/**
|
|
* class RegistrasiKeanggotaanVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class RegistrasiKeanggotaanVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "NomorAnggota")
|
|
private String nomorAnggota;
|
|
|
|
@NotNull(message = "Tipe Keanggotaan Harus Diisi")
|
|
@Caption(value = "Tipe Keanggotaan")
|
|
private TipeKeanggotaanVO tipeKeanggotaan;
|
|
|
|
private Integer tipeKeanggotaanId;
|
|
|
|
@Caption(value = "Tanggal")
|
|
private Date tanggal;
|
|
|
|
@Caption(value = "Nama")
|
|
private String nama;
|
|
|
|
@Caption(value = "TanggalLahir")
|
|
private Date tanggalLahir;
|
|
|
|
@Caption(value = "NomorHP")
|
|
private String nomorHP;
|
|
|
|
@NotNull(message = "Jenis Kelamin Harus Diisi")
|
|
@Caption(value = "Jenis Kelamin")
|
|
private JenisKelaminVO jenisKelamin;
|
|
|
|
private Integer jenisKelaminId;
|
|
|
|
@Caption(value = "TempatLahir")
|
|
private String tempatLahir;
|
|
|
|
@Caption(value = "AsalInstansi")
|
|
private String asalInstansi;
|
|
|
|
@Caption(value = "Email")
|
|
private String email;
|
|
|
|
@Caption(value = "Alamat")
|
|
private String alamat;
|
|
|
|
} |