62 lines
1.6 KiB
Java
62 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 TempatLahirBayi
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "TempatLahirBayi_M")
|
|
public class TempatLahirBayiVO extends BaseMasterVO {
|
|
@Caption(value = "Kode Tempat Lahir Bayi")
|
|
private Byte kdTempatLahirBayi;
|
|
|
|
@Column(name = "KdTempatLahirBayi", nullable = false)
|
|
public Byte getKdTempatLahirBayi() {
|
|
return kdTempatLahirBayi;
|
|
}
|
|
|
|
public void setKdTempatLahirBayi(Byte kdTempatLahirBayi) {
|
|
this.kdTempatLahirBayi = kdTempatLahirBayi;
|
|
}
|
|
|
|
@Caption(value = "QTempat Lahir Bayi")
|
|
private Byte qTempatLahirBayi;
|
|
|
|
public void setqTempatLahirBayi(Byte qTempatLahirBayi) {
|
|
this.qTempatLahirBayi = qTempatLahirBayi;
|
|
}
|
|
|
|
@Column(name = "QTempatLahirBayi", nullable = false)
|
|
public Byte getqTempatLahirBayi() {
|
|
return this.qTempatLahirBayi;
|
|
}
|
|
|
|
@Caption(value = "Tempat Lahir Bayi")
|
|
private String namaTempatLahirBayi;
|
|
|
|
@Column(name = "TempatLahirBayi", nullable = false, length = 50)
|
|
public String getNamaTempatLahirBayi() {
|
|
return namaTempatLahirBayi;
|
|
}
|
|
|
|
public void setNamaTempatLahirBayi(String namaTempatLahirBayi) {
|
|
this.namaTempatLahirBayi = namaTempatLahirBayi;
|
|
}
|
|
|
|
}
|