64 lines
1.6 KiB
Java
64 lines
1.6 KiB
Java
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 CaraLahirBayi
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "CaraLahirBayi_M")
|
|
public class CaraLahirBayiVO extends BaseMasterVO {
|
|
@Caption(value="Cara Lahir Bayi")
|
|
private String caraLahirBayi;
|
|
|
|
public void setCaraLahirBayi(String caraLahirBayi) {
|
|
this.caraLahirBayi = caraLahirBayi;
|
|
}
|
|
|
|
@Column(name = "CaraLahirBayi", nullable = false , length = 30)
|
|
public String getCaraLahirBayi(){
|
|
return this.caraLahirBayi;
|
|
}
|
|
|
|
@Caption(value="Kode Cara Lahir Bayi")
|
|
private Byte kdCaraLahirBayi;
|
|
|
|
public void setKdCaraLahirBayi(Byte kdCaraLahirBayi) {
|
|
this.kdCaraLahirBayi = kdCaraLahirBayi;
|
|
}
|
|
|
|
@Column(name = "KdCaraLahirBayi", nullable = false )
|
|
public Byte getKdCaraLahirBayi(){
|
|
return this.kdCaraLahirBayi;
|
|
}
|
|
|
|
@Caption(value="QCara Lahir Bayi")
|
|
private Byte qCaraLahirBayi;
|
|
|
|
public void setqCaraLahirBayi(Byte qCaraLahirBayi) {
|
|
this.qCaraLahirBayi = qCaraLahirBayi;
|
|
}
|
|
|
|
@Column(name = "QCaraLahirBayi", nullable = false )
|
|
public Byte getqCaraLahirBayi(){
|
|
return this.qCaraLahirBayi;
|
|
}
|
|
|
|
|
|
}
|
|
|