25 lines
599 B
Java
25 lines
599 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseMaster;
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class TahunPerolehanVO extends BaseMasterVO{
|
|
|
|
@Column(name = "TahunPerolehan", nullable = false, length = 100)
|
|
@Caption(value = "Tahun Perolehan")
|
|
private String tahunPerolehan;
|
|
|
|
public String getTahunPerolehan() {
|
|
return tahunPerolehan;
|
|
}
|
|
|
|
public void setTahunPerolehan(String tahunPerolehan) {
|
|
this.tahunPerolehan = tahunPerolehan;
|
|
}
|
|
|
|
|
|
}
|