90 lines
1.8 KiB
Java
90 lines
1.8 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.ManyToOne;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class PenyusunanDetailTRPNPBVO extends BaseTransactionVO {
|
|
|
|
@ManyToOne
|
|
@Caption(value = "Object Produk")
|
|
private PenyusunanTRPNPBVO penyusunanTRPNPB;
|
|
|
|
@Caption(value = "Volume Realisasi")
|
|
private float volumeRealisasi;
|
|
|
|
@Caption(value = "Harga")
|
|
private Double harga;
|
|
|
|
@Caption(value = "Total Realisasi")
|
|
private Double totalRealisasi;
|
|
|
|
@Caption(value = "Volume Target")
|
|
private float volumeTarget;
|
|
|
|
@Caption(value = "Total Target")
|
|
private Double totalTarget;
|
|
|
|
@ManyToOne
|
|
@Caption(value = "Object Produk")
|
|
private ProdukVO produk;
|
|
|
|
public PenyusunanTRPNPBVO getPenyusunanTRPNPB() {
|
|
return penyusunanTRPNPB;
|
|
}
|
|
|
|
public void setPenyusunanTRPNPB(PenyusunanTRPNPBVO penyusunanTRPNPB) {
|
|
this.penyusunanTRPNPB = penyusunanTRPNPB;
|
|
}
|
|
|
|
public float getVolumeRealisasi() {
|
|
return volumeRealisasi;
|
|
}
|
|
|
|
public void setVolumeRealisasi(float volumeRealisasi) {
|
|
this.volumeRealisasi = volumeRealisasi;
|
|
}
|
|
|
|
public Double getHarga() {
|
|
return harga;
|
|
}
|
|
|
|
public void setHarga(Double harga) {
|
|
this.harga = harga;
|
|
}
|
|
|
|
public Double getTotalRealisasi() {
|
|
return totalRealisasi;
|
|
}
|
|
|
|
public void setTotalRealisasi(Double totalRealisasi) {
|
|
this.totalRealisasi = totalRealisasi;
|
|
}
|
|
|
|
public float getVolumeTarget() {
|
|
return volumeTarget;
|
|
}
|
|
|
|
public void setVolumeTarget(float volumeTarget) {
|
|
this.volumeTarget = volumeTarget;
|
|
}
|
|
|
|
public Double getTotalTarget() {
|
|
return totalTarget;
|
|
}
|
|
|
|
public void setTotalTarget(Double totalTarget) {
|
|
this.totalTarget = totalTarget;
|
|
}
|
|
|
|
public ProdukVO getProduk() {
|
|
return produk;
|
|
}
|
|
|
|
public void setProduk(ProdukVO produk) {
|
|
this.produk = produk;
|
|
}
|
|
|
|
}
|