28 lines
502 B
Java
28 lines
502 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 EventBayi
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class EventBayiVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Event Bayi")
|
|
private String eventBayi;
|
|
|
|
@Caption(value = "Kode Event Bayi")
|
|
private Byte kdEventBayi;
|
|
|
|
@Caption(value = "QEvent Bayi")
|
|
private Byte qEventBayi;
|
|
|
|
}
|