19 lines
425 B
Java
19 lines
425 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;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class OrderAmbulanceVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "strukOrder")
|
|
private StrukOrderVO strukOrder;
|
|
|
|
@Caption(value = "orderPelayanan")
|
|
private OrderPelayananVO orderPelayanan;
|
|
|
|
}
|