30 lines
619 B
Java
30 lines
619 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.entities.StrukVerifikasi;
|
|
|
|
public class OrderPelayananCustomVO extends BaseTransactionVO {
|
|
|
|
private String norecOrderPelayanan;
|
|
|
|
private Boolean status;
|
|
|
|
public String getNorecOrderPelayanan() {
|
|
return norecOrderPelayanan;
|
|
}
|
|
|
|
public void setNorecOrderPelayanan(String norecOrderPelayanan) {
|
|
this.norecOrderPelayanan = norecOrderPelayanan;
|
|
}
|
|
|
|
public Boolean getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(Boolean status) {
|
|
this.status = status;
|
|
}
|
|
|
|
|
|
}
|