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 JenisJurnal
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "JenisJurnal_M")
|
|
public class JenisJurnalVO extends BaseMasterVO {
|
|
@Caption(value="Jenis Jurnal")
|
|
private String jenisJurnal;
|
|
|
|
public void setJenisJurnal(String jenisJurnal) {
|
|
this.jenisJurnal = jenisJurnal;
|
|
}
|
|
|
|
@Column(name = "JenisJurnal", nullable = false , length = 30)
|
|
public String getJenisJurnal(){
|
|
return this.jenisJurnal;
|
|
}
|
|
|
|
@Caption(value="Kode Jenis Jurnal")
|
|
private Byte kdJenisJurnal;
|
|
|
|
public void setKdJenisJurnal(Byte kdJenisJurnal) {
|
|
this.kdJenisJurnal = kdJenisJurnal;
|
|
}
|
|
|
|
@Column(name = "KdJenisJurnal", nullable = false )
|
|
public Byte getKdJenisJurnal(){
|
|
return this.kdJenisJurnal;
|
|
}
|
|
|
|
@Caption(value="QJenis Jurnal")
|
|
private Byte qJenisJurnal;
|
|
|
|
public void setqJenisJurnal(Byte qJenisJurnal) {
|
|
this.qJenisJurnal = qJenisJurnal;
|
|
}
|
|
|
|
@Column(name = "QJenisJurnal", nullable = false )
|
|
public Byte getqJenisJurnal(){
|
|
return this.qJenisJurnal;
|
|
}
|
|
|
|
|
|
}
|
|
|