58 lines
1.2 KiB
Java
58 lines
1.2 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
/**
|
|
* class Departemen
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class DepartemenVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "AlamatVO Email")
|
|
private String alamatEmail;
|
|
|
|
@Caption(value = "Faksimile")
|
|
private String faksimile;
|
|
|
|
@Caption(value = "Fixed Phone")
|
|
private String fixedPhone;
|
|
|
|
@Caption(value = "Kode Departemen")
|
|
private String kdDepartemen;
|
|
|
|
@NotNull(message = "Object Jenis Perawatan Harus Diisi")
|
|
@Caption(value = "Object Jenis Perawatan")
|
|
private JenisPerawatanVO jenisPerawatan;
|
|
|
|
private Integer jenisPerawatanId;
|
|
|
|
@Caption(value = "Object PegawaiVO Kepala")
|
|
private LoginUserVO pegawaiKepala;
|
|
|
|
private Integer pegawaiKepalaId;
|
|
|
|
@Caption(value = "Mobile Phone")
|
|
private String mobilePhone;
|
|
|
|
@Caption(value = "Nama Departemen")
|
|
private String namaDepartemen;
|
|
|
|
@Caption(value = "Prefix No Antrian")
|
|
private String prefixNoAntrian;
|
|
|
|
@Caption(value = "QDepartemen")
|
|
private Byte qDepartemen;
|
|
|
|
@Caption(value = "Website")
|
|
private String website;
|
|
|
|
}
|