44 lines
920 B
Java
44 lines
920 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
import javax.persistence.*;
|
|
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import javax.validation.constraints.NotNull;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class ProgramPendidikanVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class ProgramPendidikanVO extends BaseMasterVO{
|
|
|
|
|
|
@Column(name = "Kode", nullable = false , length = 100)
|
|
@Caption(value = "Kode")
|
|
private Integer kode ;
|
|
public Integer getKode() {
|
|
return kode ;
|
|
}
|
|
public void setKode(Integer kode ) {
|
|
this.kode = kode ;
|
|
}
|
|
|
|
@Column(name = "Name", nullable = false , length = 100)
|
|
@Caption(value = "Name")
|
|
private String name ;
|
|
public String getName() {
|
|
return name ;
|
|
}
|
|
public void setName(String name ) {
|
|
this.name = name ;
|
|
}
|
|
|
|
|
|
} |