Persiapan service duplikat racikan detail sebagai relasi pelayanan pasien saat split jumlah pelayanan
22 lines
488 B
Java
22 lines
488 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;
|
|
|
|
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;
|
|
}
|