38 lines
729 B
Java
38 lines
729 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;
|
|
|
|
/**
|
|
* @author Salman
|
|
* @version 1.0.0
|
|
* @since 17/12/2024
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class CssdBmhpVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Cssd Alat")
|
|
private CssdSetAlatVO cssdSetAlat;
|
|
|
|
private Integer cssdSetAlatId;
|
|
|
|
@Caption(value = "Nama Barang")
|
|
private ProdukVO namaBarang;
|
|
|
|
private Integer namaBarangId;
|
|
|
|
@Caption(value = "Jumlah")
|
|
private Integer jumlah;
|
|
|
|
@Caption(value = "Satuan")
|
|
private SatuanStandarVO satuan;
|
|
|
|
private Integer satuanId;
|
|
|
|
protected Integer id;
|
|
|
|
}
|