73 lines
1.4 KiB
Java
73 lines
1.4 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
import javax.persistence.*;
|
|
|
|
@Entity
|
|
@Table(name="VariabelD_T")
|
|
public class VariabelD extends BaseTransaction{
|
|
|
|
@ManyToOne(fetch=FetchType.LAZY)
|
|
@Caption(value="Object Variabel")
|
|
@JoinColumn(name="ObjectVariabelFk")
|
|
private Variabel variabel;
|
|
|
|
@Column(name="ObjectVariabelFk", insertable=false, updatable=false, nullable=true)
|
|
private String variabelId;
|
|
|
|
@Caption(value="valueI ")
|
|
@Column(name="valueI", nullable=true)
|
|
private String valueI ;
|
|
|
|
@Caption(value="valueII ")
|
|
@Column(name="valueII", nullable=true)
|
|
private String valueII ;
|
|
|
|
@Caption(value="hasil ")
|
|
@Column(name="hasil", nullable=true)
|
|
private String hasil ;
|
|
|
|
public Variabel getVariabel() {
|
|
return variabel;
|
|
}
|
|
|
|
public void setVariabel(Variabel variabel) {
|
|
this.variabel = variabel;
|
|
}
|
|
|
|
public String getVariabelId() {
|
|
return variabelId;
|
|
}
|
|
|
|
public void setVariabelId(String variabelId) {
|
|
this.variabelId = variabelId;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
}
|