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 EventBayi
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "EventBayi_M")
|
|
public class EventBayiVO extends BaseMasterVO {
|
|
@Caption(value="Event Bayi")
|
|
private String eventBayi;
|
|
|
|
public void setEventBayi(String eventBayi) {
|
|
this.eventBayi = eventBayi;
|
|
}
|
|
|
|
@Column(name = "EventBayi", nullable = false , length = 20)
|
|
public String getEventBayi(){
|
|
return this.eventBayi;
|
|
}
|
|
|
|
@Caption(value="Kode Event Bayi")
|
|
private Byte kdEventBayi;
|
|
|
|
public void setKdEventBayi(Byte kdEventBayi) {
|
|
this.kdEventBayi = kdEventBayi;
|
|
}
|
|
|
|
@Column(name = "KdEventBayi", nullable = false )
|
|
public Byte getKdEventBayi(){
|
|
return this.kdEventBayi;
|
|
}
|
|
|
|
@Caption(value="QEvent Bayi")
|
|
private Byte qEventBayi;
|
|
|
|
public void setqEventBayi(Byte qEventBayi) {
|
|
this.qEventBayi = qEventBayi;
|
|
}
|
|
|
|
@Column(name = "QEventBayi", nullable = false )
|
|
public Byte getqEventBayi(){
|
|
return this.qEventBayi;
|
|
}
|
|
|
|
|
|
}
|
|
|