package com.jasamedika.medifirst2000.vo; import java.io.Serializable; import javax.persistence.*; import java.util.Date; import org.hibernate.validator.constraints.NotEmpty; import com.jasamedika.medifirst2000.base.vo.BaseMasterVO; import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.Length; import org.hibernate.validator.internal.util.logging.Messages; import com.fasterxml.jackson.annotation.JsonManagedReference; import com.jasamedika.medifirst2000.base.vo.BaseMasterVO; import com.jasamedika.medifirst2000.helper.Caption; /** * class MetodologiBayiTabung * * @author Generator */ //@Entity //@Table(name = "MetodologiBayiTabung_M") public class MetodologiBayiTabungVO extends BaseMasterVO { @Caption(value="Kode Metodologi Bayi Tabung") private Byte kdMetodologiBayiTabung; public void setKdMetodologiBayiTabung(Byte kdMetodologiBayiTabung) { this.kdMetodologiBayiTabung = kdMetodologiBayiTabung; } @Column(name = "KdMetodologiBayiTabung", nullable = false ) public Byte getKdMetodologiBayiTabung(){ return this.kdMetodologiBayiTabung; } @Caption(value="Metodologi Bayi Tabung") private String metodologiBayiTabung; public void setMetodologiBayiTabung(String metodologiBayiTabung) { this.metodologiBayiTabung = metodologiBayiTabung; } @Column(name = "MetodologiBayiTabung", nullable = false , length = 75) public String getMetodologiBayiTabung(){ return this.metodologiBayiTabung; } @Caption(value="QMetodologi Bayi Tabung") private Byte qMetodologiBayiTabung; public void setqMetodologiBayiTabung(Byte qMetodologiBayiTabung) { this.qMetodologiBayiTabung = qMetodologiBayiTabung; } @Column(name = "QMetodologiBayiTabung", nullable = false ) public Byte getqMetodologiBayiTabung(){ return this.qMetodologiBayiTabung; } }