27 lines
458 B
Java
27 lines
458 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;
|
|
|
|
/**
|
|
* class Agama
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class DetailPioVO extends BaseTransactionVO {
|
|
|
|
private String pertanyaan;
|
|
|
|
private String pemberiInformasi;
|
|
|
|
private String jawaban;
|
|
|
|
@Caption(value = "Pio")
|
|
private PioVO pio;
|
|
|
|
}
|