31 lines
692 B
Java
31 lines
692 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;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
/**
|
|
* class DataPenilaianResikoAnak
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class DataPenilaianResikoAnakVO extends BaseMasterVO {
|
|
|
|
@NotNull(message = "Name tidak boleh kosong")
|
|
@Caption(value = "Name")
|
|
private String name;
|
|
|
|
@NotNull(message = "Children tidak boleh kosong")
|
|
@Caption(value = "Children")
|
|
private String children;
|
|
|
|
@NotNull(message = "Score tidak boleh kosong")
|
|
@Caption(value = "Score")
|
|
private String score;
|
|
|
|
} |