62 lines
1.5 KiB
Java
62 lines
1.5 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class GolonganDarahRhesusVO extends BaseMasterVO{
|
|
/*
|
|
@JoinColumn(name = "ObjectGolonganDarahFk")
|
|
@Caption(value = "GolonganDarah")
|
|
private GolonganDarahVO golonganDarah;
|
|
|
|
@JoinColumn(name = "ObjectRhesusFk")
|
|
@Caption(value = "Rhesus")
|
|
private RhesusVO rhesus;
|
|
|
|
public GolonganDarahVO getGolonganDarah() {
|
|
return golonganDarah;
|
|
}
|
|
|
|
public void setGolonganDarah(GolonganDarahVO golonganDarah) {
|
|
this.golonganDarah = golonganDarah;
|
|
}
|
|
|
|
public RhesusVO getRhesus() {
|
|
return rhesus;
|
|
}
|
|
|
|
public void setRhesus(RhesusVO rhesus) {
|
|
this.rhesus = rhesus;
|
|
}
|
|
*/
|
|
|
|
@Column(name = "idGolDarahAndRhesus")
|
|
@Caption(value = "idGolDarahAndRhesus")
|
|
private String idGolDarahAndRhesus;
|
|
|
|
@Column(name = "nameGolDarahAndRhesus")
|
|
@Caption(value = "nameGolDarahAndRhesus")
|
|
private String nameGolDarahAndRhesus;
|
|
|
|
public String getIdGolDarahAndRhesus() {
|
|
return idGolDarahAndRhesus;
|
|
}
|
|
|
|
public void setIdGolDarahAndRhesus(String idGolDarahAndRhesus) {
|
|
this.idGolDarahAndRhesus = idGolDarahAndRhesus;
|
|
}
|
|
|
|
public String getNameGolDarahAndRhesus() {
|
|
return nameGolDarahAndRhesus;
|
|
}
|
|
|
|
public void setNameGolDarahAndRhesus(String nameGolDarahAndRhesus) {
|
|
this.nameGolDarahAndRhesus = nameGolDarahAndRhesus;
|
|
}
|
|
|
|
}
|