73 lines
1.7 KiB
Java
73 lines
1.7 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.FetchType;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.OneToOne;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.entities.IpsrsPerbaikan;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class IpsrsStatusPerbaikanVO extends BaseTransactionVO{
|
|
|
|
@OneToOne(fetch = FetchType.LAZY)
|
|
@Caption(value = "Ipsrs Perbaikan")
|
|
private IpsrsPerbaikanVO ipsrsPerbaikan;
|
|
|
|
@Caption(value = "Status Pengerjaan")
|
|
private Integer statusPengerjaan;
|
|
|
|
@Caption(value = "Status Respon")
|
|
private Integer statusRespon;
|
|
|
|
@Caption(value = "WaktuRespon")
|
|
private Long waktuRespon;
|
|
|
|
@Caption(value = "Ket Status Respon")
|
|
private String ketStatusRespon;
|
|
|
|
public IpsrsPerbaikanVO getIpsrsPerbaikan() {
|
|
return ipsrsPerbaikan;
|
|
}
|
|
|
|
public void setIpsrsPerbaikan(IpsrsPerbaikanVO ipsrsPerbaikan) {
|
|
this.ipsrsPerbaikan = ipsrsPerbaikan;
|
|
}
|
|
|
|
public Integer getStatusPengerjaan() {
|
|
return statusPengerjaan;
|
|
}
|
|
|
|
public void setStatusPengerjaan(Integer statusPengerjaan) {
|
|
this.statusPengerjaan = statusPengerjaan;
|
|
}
|
|
|
|
public Integer getStatusRespon() {
|
|
return statusRespon;
|
|
}
|
|
|
|
public void setStatusRespon(Integer statusRespon) {
|
|
this.statusRespon = statusRespon;
|
|
}
|
|
|
|
public Long getWaktuRespon() {
|
|
return waktuRespon;
|
|
}
|
|
|
|
public void setWaktuRespon(Long waktuRespon) {
|
|
this.waktuRespon = waktuRespon;
|
|
}
|
|
|
|
public String getKetStatusRespon() {
|
|
return ketStatusRespon;
|
|
}
|
|
|
|
public void setKetStatusRespon(String ketStatusRespon) {
|
|
this.ketStatusRespon = ketStatusRespon;
|
|
}
|
|
|
|
|
|
}
|