64 lines
1.6 KiB
Java
64 lines
1.6 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 JenisPendidikan
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "JenisPendidikan_M")
|
|
public class JenisPendidikanVO extends BaseMasterVO {
|
|
@Caption(value="Jenis Pendidikan")
|
|
private String jenisPendidikan;
|
|
|
|
public void setJenisPendidikan(String jenisPendidikan) {
|
|
this.jenisPendidikan = jenisPendidikan;
|
|
}
|
|
|
|
@Column(name = "JenisPendidikan", nullable = false , length = 30)
|
|
public String getJenisPendidikan(){
|
|
return this.jenisPendidikan;
|
|
}
|
|
|
|
@Caption(value="Kode Jenis Pendidikan")
|
|
private String kdJenisPendidikan;
|
|
|
|
public void setKdJenisPendidikan(String kdJenisPendidikan) {
|
|
this.kdJenisPendidikan = kdJenisPendidikan;
|
|
}
|
|
|
|
@Column(name = "KdJenisPendidikan", nullable = false , length = 1)
|
|
public String getKdJenisPendidikan(){
|
|
return this.kdJenisPendidikan;
|
|
}
|
|
|
|
@Caption(value="QJenis Pendidikan")
|
|
private Byte qJenisPendidikan;
|
|
|
|
public void setqJenisPendidikan(Byte qJenisPendidikan) {
|
|
this.qJenisPendidikan = qJenisPendidikan;
|
|
}
|
|
|
|
@Column(name = "QJenisPendidikan", nullable = false )
|
|
public Byte getqJenisPendidikan(){
|
|
return this.qJenisPendidikan;
|
|
}
|
|
|
|
|
|
}
|
|
|