42 lines
919 B
Java
42 lines
919 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 PersyaratanPelamarVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class PersyaratanPelamarVO extends BaseMasterVO{
|
|
@Column(name = "No", nullable = false , length = 100)
|
|
@Caption(value = "No")
|
|
private Integer no ;
|
|
public Integer getNo() {
|
|
return no ;
|
|
}
|
|
public void setNo(Integer no ) {
|
|
this.no = no ;
|
|
}
|
|
|
|
@Column(name = "Uraian", nullable = false , length = 100)
|
|
@Caption(value = "Uraian")
|
|
private String uraian ;
|
|
public String getUraian() {
|
|
return uraian ;
|
|
}
|
|
public void setUraian(String uraian ) {
|
|
this.uraian = uraian ;
|
|
}
|
|
|
|
|
|
} |