2021-01-07 11:34:56 +07:00

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 ProsesLahirBayi
*
* @author Generator
*/
//@Entity
//@Table(name = "ProsesLahirBayi_M")
public class ProsesLahirBayiVO extends BaseMasterVO {
@Caption(value="Kode Proses Lahir Bayi")
private Byte kdProsesLahirBayi;
public void setKdProsesLahirBayi(Byte kdProsesLahirBayi) {
this.kdProsesLahirBayi = kdProsesLahirBayi;
}
@Column(name = "KdProsesLahirBayi", nullable = false )
public Byte getKdProsesLahirBayi(){
return this.kdProsesLahirBayi;
}
@Caption(value="Proses Lahir Bayi")
private String prosesLahirBayi;
public void setProsesLahirBayi(String prosesLahirBayi) {
this.prosesLahirBayi = prosesLahirBayi;
}
@Column(name = "ProsesLahirBayi", nullable = false , length = 30)
public String getProsesLahirBayi(){
return this.prosesLahirBayi;
}
@Caption(value="QProses Lahir Bayi")
private Byte qProsesLahirBayi;
public void setqProsesLahirBayi(Byte qProsesLahirBayi) {
this.qProsesLahirBayi = qProsesLahirBayi;
}
@Column(name = "QProsesLahirBayi", nullable = false )
public Byte getqProsesLahirBayi(){
return this.qProsesLahirBayi;
}
}