26 lines
414 B
Java
26 lines
414 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class CssdPengemasanDetailVO extends BaseTransactionVO {
|
|
|
|
private ProdukVO produk;
|
|
|
|
private String hasil;
|
|
|
|
private Double qtyProduk;
|
|
|
|
private Boolean status;
|
|
|
|
private Date jamMulai;
|
|
|
|
private Date jamSelesai;
|
|
|
|
}
|