67 lines
1.5 KiB
Java
67 lines
1.5 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class GolonganPegawai
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "GolonganPegawai_M")
|
|
public class GolonganPegawaiVO extends BaseMasterVO {
|
|
@Caption(value="Golongan Pegawai")
|
|
private String golonganPegawai;
|
|
|
|
public void setGolonganPegawai(String golonganPegawai) {
|
|
this.golonganPegawai = golonganPegawai;
|
|
}
|
|
|
|
@Column(name = "GolonganPegawai", nullable = false , length = 20)
|
|
public String getGolonganPegawai(){
|
|
return this.golonganPegawai;
|
|
}
|
|
|
|
@Caption(value="Kode Golongan Pegawai")
|
|
private Byte kdGolonganPegawai;
|
|
|
|
public void setKdGolonganPegawai(Byte kdGolonganPegawai) {
|
|
this.kdGolonganPegawai = kdGolonganPegawai;
|
|
}
|
|
|
|
@Column(name = "KdGolonganPegawai", nullable = false )
|
|
public Byte getKdGolonganPegawai(){
|
|
return this.kdGolonganPegawai;
|
|
}
|
|
|
|
@Caption(value="No Urut")
|
|
private Byte noUrut;
|
|
|
|
public void setNoUrut(Byte noUrut) {
|
|
this.noUrut = noUrut;
|
|
}
|
|
|
|
@Column(name = "NoUrut", nullable = false )
|
|
public Byte getNoUrut(){
|
|
return this.noUrut;
|
|
}
|
|
|
|
@Caption(value="QGolongan Pegawai")
|
|
private Byte qGolonganPegawai;
|
|
|
|
public void setqGolonganPegawai(Byte qGolonganPegawai) {
|
|
this.qGolonganPegawai = qGolonganPegawai;
|
|
}
|
|
|
|
@Column(name = "QGolonganPegawai", nullable = false )
|
|
public Byte getqGolonganPegawai(){
|
|
return this.qGolonganPegawai;
|
|
}
|
|
|
|
|
|
}
|
|
|