39 lines
857 B
Java
39 lines
857 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;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class SiklusGiziVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Siklus Ke")
|
|
private Integer siklusKe;
|
|
|
|
@Caption(value = "Object Jenis Waktu")
|
|
private JenisWaktuVO jenisWaktu;
|
|
|
|
@Caption(value = "Object Jenis Diet")
|
|
private JenisDietVO jenisDiet;
|
|
|
|
@Caption(value = "Object Kelas")
|
|
private KelasVO kelas;
|
|
|
|
@Caption(value = "Object Kategori Produk")
|
|
private KategoryProdukVO kategoriProduk;
|
|
|
|
@Caption(value = "Object Produk")
|
|
private ProdukVO produk;
|
|
|
|
@Caption(value = "Object Bentuk Produk")
|
|
private BentukProdukVO bentukProduk;
|
|
|
|
@Caption(value = "qty")
|
|
private Double qty;
|
|
|
|
@Caption(value = "isCito")
|
|
private Byte isCito;
|
|
|
|
} |