114 lines
2.0 KiB
Java
114 lines
2.0 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
|
|
public class UnitCostDetailVO extends BaseTransactionVO {
|
|
|
|
private UnitCostVO unitCost;
|
|
|
|
private Integer unitCostId;
|
|
|
|
private UnitCostDetailJenisVO unitCostDetailJenis;
|
|
private Integer unitCostDetailJenisId;
|
|
|
|
private ProdukVO produk;
|
|
private Integer produkId;
|
|
|
|
private SatuanStandarVO satuanStandar;
|
|
|
|
private Integer satuanStandarId;
|
|
|
|
private Integer qty;
|
|
|
|
private Double harga;
|
|
|
|
|
|
|
|
public UnitCostVO getUnitCost() {
|
|
return unitCost;
|
|
}
|
|
|
|
public void setUnitCost(UnitCostVO unitCost) {
|
|
this.unitCost = unitCost;
|
|
}
|
|
|
|
public Integer getUnitCostId() {
|
|
return unitCostId;
|
|
}
|
|
|
|
public void setUnitCostId(Integer unitCostId) {
|
|
this.unitCostId = unitCostId;
|
|
}
|
|
|
|
|
|
|
|
public Integer getUnitCostDetailJenisId() {
|
|
return unitCostDetailJenisId;
|
|
}
|
|
|
|
public void setUnitCostDetailJenisId(Integer unitCostDetailJenisId) {
|
|
this.unitCostDetailJenisId = unitCostDetailJenisId;
|
|
}
|
|
|
|
|
|
|
|
public Integer getProdukId() {
|
|
return produkId;
|
|
}
|
|
|
|
public void setProdukId(Integer produkId) {
|
|
this.produkId = produkId;
|
|
}
|
|
|
|
|
|
|
|
public Integer getSatuanStandarId() {
|
|
return satuanStandarId;
|
|
}
|
|
|
|
public void setSatuanStandarId(Integer satuanStandarId) {
|
|
this.satuanStandarId = satuanStandarId;
|
|
}
|
|
|
|
public Integer getQty() {
|
|
return qty;
|
|
}
|
|
|
|
public void setQty(Integer qty) {
|
|
this.qty = qty;
|
|
}
|
|
|
|
public Double getHarga() {
|
|
return harga;
|
|
}
|
|
|
|
public void setHarga(Double harga) {
|
|
this.harga = harga;
|
|
}
|
|
|
|
public UnitCostDetailJenisVO getUnitCostDetailJenis() {
|
|
return unitCostDetailJenis;
|
|
}
|
|
|
|
public void setUnitCostDetailJenis(UnitCostDetailJenisVO unitCostDetailJenis) {
|
|
this.unitCostDetailJenis = unitCostDetailJenis;
|
|
}
|
|
|
|
public ProdukVO getProduk() {
|
|
return produk;
|
|
}
|
|
|
|
public void setProduk(ProdukVO produk) {
|
|
this.produk = produk;
|
|
}
|
|
|
|
public SatuanStandarVO getSatuanStandar() {
|
|
return satuanStandar;
|
|
}
|
|
|
|
public void setSatuanStandar(SatuanStandarVO satuanStandar) {
|
|
this.satuanStandar = satuanStandar;
|
|
}
|
|
|
|
}
|