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 SatuanWaktu
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "SatuanWaktu_M")
|
|
public class SatuanWaktuVO extends BaseMasterVO {
|
|
@Caption(value="Kode Satuan Waktu")
|
|
private Byte kdSatuanWaktu;
|
|
|
|
public void setKdSatuanWaktu(Byte kdSatuanWaktu) {
|
|
this.kdSatuanWaktu = kdSatuanWaktu;
|
|
}
|
|
|
|
@Column(name = "KdSatuanWaktu", nullable = false )
|
|
public Byte getKdSatuanWaktu(){
|
|
return this.kdSatuanWaktu;
|
|
}
|
|
|
|
@Caption(value="QSatuan Waktu")
|
|
private Byte qSatuanWaktu;
|
|
|
|
public void setqSatuanWaktu(Byte qSatuanWaktu) {
|
|
this.qSatuanWaktu = qSatuanWaktu;
|
|
}
|
|
|
|
@Column(name = "QSatuanWaktu", nullable = false )
|
|
public Byte getqSatuanWaktu(){
|
|
return this.qSatuanWaktu;
|
|
}
|
|
|
|
@Caption(value="Satuan Waktu")
|
|
private String satuanWaktu;
|
|
|
|
public void setSatuanWaktu(String satuanWaktu) {
|
|
this.satuanWaktu = satuanWaktu;
|
|
}
|
|
|
|
@Column(name = "SatuanWaktu", nullable = false , length = 30)
|
|
public String getSatuanWaktu(){
|
|
return this.satuanWaktu;
|
|
}
|
|
|
|
|
|
}
|
|
|