137 lines
3.0 KiB
Java
137 lines
3.0 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.FetchType;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
|
|
import com.jasamedika.medifirst2000.entities.Eselon;
|
|
import com.jasamedika.medifirst2000.entities.Golongan;
|
|
import com.jasamedika.medifirst2000.entities.KomponenHarga;
|
|
import com.jasamedika.medifirst2000.entities.KotaKabupaten;
|
|
import com.jasamedika.medifirst2000.entities.Propinsi;
|
|
import com.jasamedika.medifirst2000.entities.SatuanStandar;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class SkBiayaPegawaiPerjalananDinasVO {
|
|
|
|
@ManyToOne(fetch=FetchType.LAZY)
|
|
@Caption(value="Object Propinsi")
|
|
private PropinsiVO propinsi;
|
|
|
|
@ManyToOne(fetch=FetchType.LAZY)
|
|
@Caption(value="Object KotaKabupaten")
|
|
private KotaKabupatenVO kotaKabupaten;
|
|
|
|
@ManyToOne(fetch=FetchType.LAZY)
|
|
@Caption(value="Object SatuanStandar")
|
|
private SatuanStandarVO satuanStandar;
|
|
|
|
@Column(name = "FactorRate")
|
|
@Caption(value = "Factor Rate")
|
|
private Float factorRate;
|
|
|
|
@Column(name = "OperatorFactorRate")
|
|
@Caption(value = "Operator Factor Rate")
|
|
private String operatorFactorRate;
|
|
|
|
@ManyToOne(fetch=FetchType.LAZY)
|
|
@Caption(value="Object Golongan")
|
|
private GolonganVO golongan;
|
|
|
|
@ManyToOne(fetch=FetchType.LAZY)
|
|
@Caption(value="Object Eselon")
|
|
private EselonVO eselon;
|
|
|
|
@Caption(value = "Harga1")
|
|
private Double harga1;
|
|
|
|
@Caption(value = "Harga2")
|
|
private Double harga2;
|
|
|
|
@ManyToOne(fetch=FetchType.LAZY)
|
|
@Caption(value="Object KomponenHarga")
|
|
private KomponenHargaVO komponenHarga;
|
|
|
|
public PropinsiVO getPropinsi() {
|
|
return propinsi;
|
|
}
|
|
|
|
public void setPropinsi(PropinsiVO propinsi) {
|
|
this.propinsi = propinsi;
|
|
}
|
|
|
|
public KotaKabupatenVO getKotaKabupaten() {
|
|
return kotaKabupaten;
|
|
}
|
|
|
|
public void setKotaKabupaten(KotaKabupatenVO kotaKabupaten) {
|
|
this.kotaKabupaten = kotaKabupaten;
|
|
}
|
|
|
|
public SatuanStandarVO getSatuanStandar() {
|
|
return satuanStandar;
|
|
}
|
|
|
|
public void setSatuanStandar(SatuanStandarVO satuanStandar) {
|
|
this.satuanStandar = satuanStandar;
|
|
}
|
|
|
|
public Float getFactorRate() {
|
|
return factorRate;
|
|
}
|
|
|
|
public void setFactorRate(Float factorRate) {
|
|
this.factorRate = factorRate;
|
|
}
|
|
|
|
public String getOperatorFactorRate() {
|
|
return operatorFactorRate;
|
|
}
|
|
|
|
public void setOperatorFactorRate(String operatorFactorRate) {
|
|
this.operatorFactorRate = operatorFactorRate;
|
|
}
|
|
|
|
public GolonganVO getGolongan() {
|
|
return golongan;
|
|
}
|
|
|
|
public void setGolongan(GolonganVO golongan) {
|
|
this.golongan = golongan;
|
|
}
|
|
|
|
public EselonVO getEselon() {
|
|
return eselon;
|
|
}
|
|
|
|
public void setEselon(EselonVO eselon) {
|
|
this.eselon = eselon;
|
|
}
|
|
|
|
public Double getHarga1() {
|
|
return harga1;
|
|
}
|
|
|
|
public void setHarga1(Double harga1) {
|
|
this.harga1 = harga1;
|
|
}
|
|
|
|
public Double getHarga2() {
|
|
return harga2;
|
|
}
|
|
|
|
public void setHarga2(Double harga2) {
|
|
this.harga2 = harga2;
|
|
}
|
|
|
|
public KomponenHargaVO getKomponenHarga() {
|
|
return komponenHarga;
|
|
}
|
|
|
|
public void setKomponenHarga(KomponenHargaVO komponenHarga) {
|
|
this.komponenHarga = komponenHarga;
|
|
}
|
|
|
|
}
|