28 lines
656 B
Java
28 lines
656 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 ItPelaksanaanPerbaikanSukuCadangVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "It Pelaksanaan Perbaikan")
|
|
private ItPelaksanaanPerbaikanVO itPelaksanaanPerbaikan;
|
|
|
|
@Caption(value = "Stok Produk Global")
|
|
private StokProdukGlobalVO stokProdukGlobal;
|
|
|
|
@Caption(value = "Tujuan Ruangan")
|
|
private RuanganVO tujuanRuangan;
|
|
|
|
private Integer RuanganTujuanId;
|
|
|
|
private Integer qty;
|
|
|
|
private Integer stokProdukGlobalId;
|
|
|
|
}
|