64 lines
1.5 KiB
Java
64 lines
1.5 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 KeadaanUmum
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "KeadaanUmum_M")
|
|
public class KeadaanUmumVO extends BaseMasterVO {
|
|
@Caption(value="Kode Keadaan Umum")
|
|
private Byte kdKeadaanUmum;
|
|
|
|
public void setKdKeadaanUmum(Byte kdKeadaanUmum) {
|
|
this.kdKeadaanUmum = kdKeadaanUmum;
|
|
}
|
|
|
|
@Column(name = "KdKeadaanUmum", nullable = false )
|
|
public Byte getKdKeadaanUmum(){
|
|
return this.kdKeadaanUmum;
|
|
}
|
|
|
|
@Caption(value="Keadaan Umum")
|
|
private String keadaanUmum;
|
|
|
|
public void setKeadaanUmum(String keadaanUmum) {
|
|
this.keadaanUmum = keadaanUmum;
|
|
}
|
|
|
|
@Column(name = "KeadaanUmum", nullable = false , length = 30)
|
|
public String getKeadaanUmum(){
|
|
return this.keadaanUmum;
|
|
}
|
|
|
|
@Caption(value="QKeadaan Umum")
|
|
private Byte qKeadaanUmum;
|
|
|
|
public void setqKeadaanUmum(Byte qKeadaanUmum) {
|
|
this.qKeadaanUmum = qKeadaanUmum;
|
|
}
|
|
|
|
@Column(name = "QKeadaanUmum", nullable = false )
|
|
public Byte getqKeadaanUmum(){
|
|
return this.qKeadaanUmum;
|
|
}
|
|
|
|
|
|
}
|
|
|