27 lines
467 B
Java
27 lines
467 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* class Agama
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class AgamaVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Agama")
|
|
private String agama;
|
|
|
|
@Caption(value = "Kode Agama")
|
|
private Byte kdAgama;
|
|
|
|
@Caption(value = "QAgama")
|
|
private short qAgama;
|
|
|
|
}
|