- perbaikan get data plafon anggaran remunerasi - pembuatan fungsi simpan master anggaran remunerasi - pembuatan fungsi simpan master grade
131 lines
2.7 KiB
Java
131 lines
2.7 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class KelompokJabatanVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class NilaiKelompokJabatanVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "KelompokJabatan")
|
|
private KelompokJabatanVO kelompokJabatan;
|
|
|
|
private String detailKelompokJabatan;
|
|
|
|
@Caption(value = "Grade")
|
|
private GradeRemunerasiVO grade;
|
|
|
|
private Integer gradeId;
|
|
|
|
private String gradeDesc;
|
|
|
|
@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 KelompokJabatanVO getKelompokJabatan() {
|
|
return kelompokJabatan;
|
|
}
|
|
|
|
public void setKelompokJabatan(KelompokJabatanVO kelompokJabatan) {
|
|
this.kelompokJabatan = kelompokJabatan;
|
|
}
|
|
|
|
public String getDetailKelompokJabatan() {
|
|
return detailKelompokJabatan;
|
|
}
|
|
|
|
public void setDetailKelompokJabatan(String detailKelompokJabatan) {
|
|
this.detailKelompokJabatan = detailKelompokJabatan;
|
|
}
|
|
|
|
public GradeRemunerasiVO getGrade() {
|
|
return grade;
|
|
}
|
|
|
|
public void setGrade(GradeRemunerasiVO grade) {
|
|
this.grade = grade;
|
|
}
|
|
|
|
public Integer getGradeId() {
|
|
return gradeId;
|
|
}
|
|
|
|
public void setGradeId(Integer gradeId) {
|
|
this.gradeId = gradeId;
|
|
}
|
|
|
|
public String getGradeDesc() {
|
|
return gradeDesc;
|
|
}
|
|
|
|
public void setGradeDesc(String gradeDesc) {
|
|
this.gradeDesc = gradeDesc;
|
|
}
|
|
|
|
public Integer getNilaiTerendah() {
|
|
return nilaiTerendah;
|
|
}
|
|
|
|
public void setNilaiTerendah(Integer nilaiTerendah) {
|
|
this.nilaiTerendah = nilaiTerendah;
|
|
}
|
|
|
|
public Integer getNilaiTertinggi() {
|
|
return nilaiTertinggi;
|
|
}
|
|
|
|
public void setNilaiTertinggi(Integer nilaiTertinggi) {
|
|
this.nilaiTertinggi = nilaiTertinggi;
|
|
}
|
|
|
|
public Double getGajiHonorarium() {
|
|
return gajiHonorarium;
|
|
}
|
|
|
|
public void setGajiHonorarium(Double gajiHonorarium) {
|
|
this.gajiHonorarium = gajiHonorarium;
|
|
}
|
|
|
|
public Double getMinInsentif() {
|
|
return minInsentif;
|
|
}
|
|
|
|
public void setMinInsentif(Double minInsentif) {
|
|
this.minInsentif = minInsentif;
|
|
}
|
|
|
|
public Double getMaxInsentif() {
|
|
return maxInsentif;
|
|
}
|
|
|
|
public void setMaxInsentif(Double maxInsentif) {
|
|
this.maxInsentif = maxInsentif;
|
|
}
|
|
|
|
public Double getMaxTotalRemunerasi() {
|
|
return maxTotalRemunerasi;
|
|
}
|
|
|
|
public void setMaxTotalRemunerasi(Double maxTotalRemunerasi) {
|
|
this.maxTotalRemunerasi = maxTotalRemunerasi;
|
|
}
|
|
|
|
} |