53 lines
1010 B
Java
53 lines
1010 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class Negara
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class NegaraVO extends BaseMasterVO {
|
|
|
|
@Caption(value="Kode Negara")
|
|
private Byte kdNegara;
|
|
|
|
public void setKdNegara(Byte kdNegara) {
|
|
this.kdNegara = kdNegara;
|
|
}
|
|
|
|
@Column(name = "KdNegara", nullable = false )
|
|
public Byte getKdNegara(){
|
|
return this.kdNegara;
|
|
}
|
|
|
|
@Caption(value="Nama Negara")
|
|
private String namaNegara;
|
|
|
|
public void setNamaNegara(String namaNegara) {
|
|
this.namaNegara = namaNegara;
|
|
}
|
|
|
|
@Column(name = "NamaNegara", nullable = false , length = 50)
|
|
public String getNamaNegara(){
|
|
return this.namaNegara;
|
|
}
|
|
|
|
@Caption(value="QNegara")
|
|
private Byte qNegara;
|
|
|
|
public void setqNegara(Byte qNegara) {
|
|
this.qNegara = qNegara;
|
|
}
|
|
|
|
@Column(name = "QNegara", nullable = false )
|
|
public Byte getqNegara(){
|
|
return this.qNegara;
|
|
}
|
|
|
|
}
|
|
|