28 lines
576 B
Java
28 lines
576 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class PapGigiKananTigaVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "tujuhsatu")
|
|
private String tujuhsatu;
|
|
|
|
@Caption(value = "tujuhdua")
|
|
private String tujuhdua;
|
|
|
|
@Caption(value = "tujuhtiga")
|
|
private String tujuhtiga;
|
|
|
|
@Caption(value = "tujuhempat")
|
|
private String tujuhempat;
|
|
|
|
@Caption(value = "tujuhlima")
|
|
private String tujuhlima;
|
|
|
|
}
|