55 lines
1017 B
Java
55 lines
1017 B
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.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.entities.Variabel;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class VariabelDVO extends BaseTransactionVO{
|
|
|
|
private VariabelVO variabel;
|
|
|
|
private String valueI ;
|
|
|
|
private String valueII ;
|
|
|
|
private String hasil ;
|
|
|
|
public VariabelVO getVariabel() {
|
|
return variabel;
|
|
}
|
|
|
|
public void setVariabel(VariabelVO variabel) {
|
|
this.variabel = variabel;
|
|
}
|
|
|
|
public String getValueI() {
|
|
return valueI;
|
|
}
|
|
|
|
public void setValueI(String valueI) {
|
|
this.valueI = valueI;
|
|
}
|
|
|
|
public String getValueII() {
|
|
return valueII;
|
|
}
|
|
|
|
public void setValueII(String valueII) {
|
|
this.valueII = valueII;
|
|
}
|
|
|
|
public String getHasil() {
|
|
return hasil;
|
|
}
|
|
|
|
public void setHasil(String hasil) {
|
|
this.hasil = hasil;
|
|
}
|
|
|
|
}
|