204 lines
4.0 KiB
Java
204 lines
4.0 KiB
Java
package com.jasamedika.medifirst2000.dto;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class RuangRapatDto {
|
|
|
|
public RuangRapatDto() {
|
|
|
|
}
|
|
|
|
private List<Map<String, Object>> listJenisKonsumsi;
|
|
private List<Map<String, Object>> listPenambahan;
|
|
private String noRecStrukOrder;
|
|
private String noOrder;
|
|
private Integer unitPemesanId;
|
|
private String unitPemesan;
|
|
private Integer ruangRapatId;
|
|
private String ruangRapat;
|
|
private String temaRapat;
|
|
private Date tglPelayananAwal;
|
|
private Date tglPelayananAkhir;
|
|
private Integer jumlahPeserta;
|
|
private Integer jumlahPanitia;
|
|
private Integer jenisKonsumsiId;
|
|
private String jenisKonsumsi;
|
|
private String noRecPenambahan;
|
|
private String namaBarang;
|
|
private Integer jumlah;
|
|
private Double harga;
|
|
private String satuan;
|
|
private String status;
|
|
|
|
public Integer getRuangRapatId() {
|
|
return ruangRapatId;
|
|
}
|
|
|
|
public void setRuangRapatId(Integer ruangRapatId) {
|
|
this.ruangRapatId = ruangRapatId;
|
|
}
|
|
|
|
public String getRuangRapat() {
|
|
return ruangRapat;
|
|
}
|
|
|
|
public void setRuangRapat(String ruangRapat) {
|
|
this.ruangRapat = ruangRapat;
|
|
}
|
|
|
|
public List<Map<String, Object>> getListJenisKonsumsi() {
|
|
return listJenisKonsumsi;
|
|
}
|
|
|
|
public void setListJenisKonsumsi(List<Map<String, Object>> listJenisKonsumsi) {
|
|
this.listJenisKonsumsi = listJenisKonsumsi;
|
|
}
|
|
|
|
public List<Map<String, Object>> getListPenambahan() {
|
|
return listPenambahan;
|
|
}
|
|
|
|
public void setListPenambahan(List<Map<String, Object>> listPenambahan) {
|
|
this.listPenambahan = listPenambahan;
|
|
}
|
|
|
|
public String getNoRecStrukOrder() {
|
|
return noRecStrukOrder;
|
|
}
|
|
|
|
public void setNoRecStrukOrder(String noRecStrukOrder) {
|
|
this.noRecStrukOrder = noRecStrukOrder;
|
|
}
|
|
|
|
public String getNoOrder() {
|
|
return noOrder;
|
|
}
|
|
|
|
public void setNoOrder(String noOrder) {
|
|
this.noOrder = noOrder;
|
|
}
|
|
|
|
public Integer getUnitPemesanId() {
|
|
return unitPemesanId;
|
|
}
|
|
|
|
public void setUnitPemesanId(Integer unitPemesanId) {
|
|
this.unitPemesanId = unitPemesanId;
|
|
}
|
|
|
|
public String getUnitPemesan() {
|
|
return unitPemesan;
|
|
}
|
|
|
|
public void setUnitPemesan(String unitPemesan) {
|
|
this.unitPemesan = unitPemesan;
|
|
}
|
|
|
|
public String getTemaRapat() {
|
|
return temaRapat;
|
|
}
|
|
|
|
public void setTemaRapat(String temaRapat) {
|
|
this.temaRapat = temaRapat;
|
|
}
|
|
|
|
public Date getTglPelayananAwal() {
|
|
return tglPelayananAwal;
|
|
}
|
|
|
|
public void setTglPelayananAwal(Date tglPelayananAwal) {
|
|
this.tglPelayananAwal = tglPelayananAwal;
|
|
}
|
|
|
|
public Date getTglPelayananAkhir() {
|
|
return tglPelayananAkhir;
|
|
}
|
|
|
|
public void setTglPelayananAkhir(Date tglPelayananAkhir) {
|
|
this.tglPelayananAkhir = tglPelayananAkhir;
|
|
}
|
|
|
|
public Integer getJumlahPeserta() {
|
|
return jumlahPeserta;
|
|
}
|
|
|
|
public void setJumlahPeserta(Integer jumlahPeserta) {
|
|
this.jumlahPeserta = jumlahPeserta;
|
|
}
|
|
|
|
public Integer getJumlahPanitia() {
|
|
return jumlahPanitia;
|
|
}
|
|
|
|
public void setJumlahPanitia(Integer jumlahPanitia) {
|
|
this.jumlahPanitia = jumlahPanitia;
|
|
}
|
|
|
|
public Integer getJenisKonsumsiId() {
|
|
return jenisKonsumsiId;
|
|
}
|
|
|
|
public void setJenisKonsumsiId(Integer jenisKonsumsiId) {
|
|
this.jenisKonsumsiId = jenisKonsumsiId;
|
|
}
|
|
|
|
public String getJenisKonsumsi() {
|
|
return jenisKonsumsi;
|
|
}
|
|
|
|
public void setJenisKonsumsi(String jenisKonsumsi) {
|
|
this.jenisKonsumsi = jenisKonsumsi;
|
|
}
|
|
|
|
public String getNoRecPenambahan() {
|
|
return noRecPenambahan;
|
|
}
|
|
|
|
public void setNoRecPenambahan(String noRecPenambahan) {
|
|
this.noRecPenambahan = noRecPenambahan;
|
|
}
|
|
|
|
public String getNamaBarang() {
|
|
return namaBarang;
|
|
}
|
|
|
|
public void setNamaBarang(String namaBarang) {
|
|
this.namaBarang = namaBarang;
|
|
}
|
|
|
|
public Integer getJumlah() {
|
|
return jumlah;
|
|
}
|
|
|
|
public void setJumlah(Integer jumlah) {
|
|
this.jumlah = jumlah;
|
|
}
|
|
|
|
public Double getHarga() {
|
|
return harga;
|
|
}
|
|
|
|
public void setHarga(Double harga) {
|
|
this.harga = harga;
|
|
}
|
|
|
|
public String getSatuan() {
|
|
return satuan;
|
|
}
|
|
|
|
public void setSatuan(String satuan) {
|
|
this.satuan = satuan;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
}
|