package com.jasamedika.medifirst2000.vo; import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO; import com.jasamedika.medifirst2000.helper.Caption; import lombok.Getter; import lombok.Setter; import java.util.Date; @Getter @Setter public class StrukRacikanVO extends BaseTransactionVO { @Caption(value = "No Racikan") private String noRacikan; @Caption(value = "Tanggal Racikan") private Date tglRacikan; @Caption(value = "No Order") private StrukOrderVO strukOrder; }