28 lines
554 B
Java
28 lines
554 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 JenisPengantarPasien
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class JenisPengantarPasienVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Jenis Pengantar")
|
|
private String jenisPengantar;
|
|
|
|
@Caption(value = "Kode Jenis Pengantar")
|
|
private Byte kdJenisPengantar;
|
|
|
|
@Caption(value = "QJenis Pengantar")
|
|
private Byte qJenisPengantar;
|
|
|
|
}
|