64 lines
1.4 KiB
Java
64 lines
1.4 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 Imunisasi
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "Imunisasi_M")
|
|
public class ImunisasiVO extends BaseMasterVO {
|
|
@Caption(value="Imunisasi")
|
|
private String imunisasi;
|
|
|
|
public void setImunisasi(String imunisasi) {
|
|
this.imunisasi = imunisasi;
|
|
}
|
|
|
|
@Column(name = "Imunisasi", nullable = false , length = 30)
|
|
public String getImunisasi(){
|
|
return this.imunisasi;
|
|
}
|
|
|
|
@Caption(value="Kode Imunisasi")
|
|
private Byte kdImunisasi;
|
|
|
|
public void setKdImunisasi(Byte kdImunisasi) {
|
|
this.kdImunisasi = kdImunisasi;
|
|
}
|
|
|
|
@Column(name = "KdImunisasi", nullable = false )
|
|
public Byte getKdImunisasi(){
|
|
return this.kdImunisasi;
|
|
}
|
|
|
|
@Caption(value="QImunisasi")
|
|
private Byte qImunisasi;
|
|
|
|
public void setqImunisasi(Byte qImunisasi) {
|
|
this.qImunisasi = qImunisasi;
|
|
}
|
|
|
|
@Column(name = "QImunisasi", nullable = false )
|
|
public Byte getqImunisasi(){
|
|
return this.qImunisasi;
|
|
}
|
|
|
|
|
|
}
|
|
|