51 lines
805 B
Java
51 lines
805 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
|
|
public class TabelAcuanIndeksIKIVO extends BaseMasterVO{
|
|
|
|
private Double nilaiBawah;
|
|
|
|
private Double nilaiAtas;
|
|
|
|
private Double indeks;
|
|
|
|
private String kriteria;
|
|
|
|
public Double getNilaiBawah() {
|
|
return nilaiBawah;
|
|
}
|
|
|
|
public void setNilaiBawah(Double nilaiBawah) {
|
|
this.nilaiBawah = nilaiBawah;
|
|
}
|
|
|
|
public Double getNilaiAtas() {
|
|
return nilaiAtas;
|
|
}
|
|
|
|
public void setNilaiAtas(Double nilaiAtas) {
|
|
this.nilaiAtas = nilaiAtas;
|
|
}
|
|
|
|
public Double getIndeks() {
|
|
return indeks;
|
|
}
|
|
|
|
public void setIndeks(Double indeks) {
|
|
this.indeks = indeks;
|
|
}
|
|
|
|
public String getKriteria() {
|
|
return kriteria;
|
|
}
|
|
|
|
public void setKriteria(String kriteria) {
|
|
this.kriteria = kriteria;
|
|
}
|
|
|
|
|
|
|
|
}
|