37 lines
755 B
Java
37 lines
755 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 PapGigiKiriSatuVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "sebelas")
|
|
private String sebelas;
|
|
|
|
@Caption(value = "sebelas")
|
|
private String duabelas;
|
|
|
|
@Caption(value = "tigabelas")
|
|
private String tigabelas;
|
|
|
|
@Caption(value = "empatbelas")
|
|
private String empatbelas;
|
|
|
|
@Caption(value = "limabelas")
|
|
private String limabelas;
|
|
|
|
@Caption(value = "enambelas")
|
|
private String enambelas;
|
|
|
|
@Caption(value = "tujuhbelas")
|
|
private String tujuhbelas;
|
|
|
|
@Caption(value = "delapanbelas")
|
|
private String delapanbelas;
|
|
|
|
}
|