36 lines
878 B
Java
36 lines
878 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.HashSet;
|
|
import java.util.Set;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class IpsrsKontakServiceVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Ipsrs Maintenance")
|
|
private IpsrsMaintenanceVO ipsrsMaintenance;
|
|
|
|
@Caption(value = "Jenis Periode")
|
|
private String jenisPeriode;
|
|
|
|
@Caption(value = "jadwal KontakService Service")
|
|
private String jadwalKontakService;
|
|
|
|
@Caption(value = "Alert Kontak Service")
|
|
private String alertKontakService;
|
|
|
|
@Caption(value = "status Kontak Service")
|
|
private String statusKontakService;
|
|
|
|
@Caption(value = "Rekanan")
|
|
private RekananVO rekanan;
|
|
|
|
private Set<IpsrsTeknisiKontakServiceVO> ipsrsTeknisiKontakService = new HashSet<>();
|
|
|
|
}
|