- penambahan vo plafon remunerasi
This commit is contained in:
parent
d540507db4
commit
764a0e8294
@ -0,0 +1,85 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
public class PlafonRemunerasiKemenkeuVO extends BaseMasterVO {
|
||||
|
||||
@Caption(value = "Grade")
|
||||
private String grade;
|
||||
|
||||
@Caption(value = "NilaiTerendah")
|
||||
private Integer nilaiTerendah;
|
||||
|
||||
@Caption(value = "NilaiTertinggi")
|
||||
private Integer nilaiTertinggi;
|
||||
|
||||
@Caption(value = "Gaji Honorarium")
|
||||
private Double gajiHonorarium;
|
||||
|
||||
@Caption(value = "Minimal Insentif")
|
||||
private Double minInsentif;
|
||||
|
||||
@Caption(value = "Maksimal Insentif")
|
||||
private Double maxInsentif;
|
||||
|
||||
@Caption(value = "Maksimal Total Remunerasi")
|
||||
private Double maxTotalRemunerasi;
|
||||
|
||||
public String getGrade() {
|
||||
return grade;
|
||||
}
|
||||
|
||||
public Integer getNilaiTerendah() {
|
||||
return nilaiTerendah;
|
||||
}
|
||||
|
||||
public Integer getNilaiTertinggi() {
|
||||
return nilaiTertinggi;
|
||||
}
|
||||
|
||||
public Double getGajiHonorarium() {
|
||||
return gajiHonorarium;
|
||||
}
|
||||
|
||||
public Double getMinInsentif() {
|
||||
return minInsentif;
|
||||
}
|
||||
|
||||
public Double getMaxInsentif() {
|
||||
return maxInsentif;
|
||||
}
|
||||
|
||||
public Double getMaxTotalRemunerasi() {
|
||||
return maxTotalRemunerasi;
|
||||
}
|
||||
|
||||
public void setGrade(String grade) {
|
||||
this.grade = grade;
|
||||
}
|
||||
|
||||
public void setNilaiTerendah(Integer nilaiTerendah) {
|
||||
this.nilaiTerendah = nilaiTerendah;
|
||||
}
|
||||
|
||||
public void setNilaiTertinggi(Integer nilaiTertinggi) {
|
||||
this.nilaiTertinggi = nilaiTertinggi;
|
||||
}
|
||||
|
||||
public void setGajiHonorarium(Double gajiHonorarium) {
|
||||
this.gajiHonorarium = gajiHonorarium;
|
||||
}
|
||||
|
||||
public void setMinInsentif(Double minInsentif) {
|
||||
this.minInsentif = minInsentif;
|
||||
}
|
||||
|
||||
public void setMaxInsentif(Double maxInsentif) {
|
||||
this.maxInsentif = maxInsentif;
|
||||
}
|
||||
|
||||
public void setMaxTotalRemunerasi(Double maxTotalRemunerasi) {
|
||||
this.maxTotalRemunerasi = maxTotalRemunerasi;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user