31 lines
585 B
Java
31 lines
585 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 StatusPulang
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class StatusPulangVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Is Send Out")
|
|
private Byte isSendOut;
|
|
|
|
@Caption(value = "Kode Status Pulang")
|
|
private Byte kdStatusPulang;
|
|
|
|
@Caption(value = "QStatus Pulang")
|
|
private Byte qStatusPulang;
|
|
|
|
@Caption(value = "Status Pulang")
|
|
private String statusPulang;
|
|
|
|
}
|