40 lines
847 B
Java
40 lines
847 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;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
/**
|
|
* class BahanSample
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class BahanSampleVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Kode Bahan Sample")
|
|
private String kdBahanSample;
|
|
|
|
@NotNull(message = "Object DepartemenVO Harus Diisi")
|
|
@Caption(value = "Object Departemen")
|
|
private DepartemenVO departemen;
|
|
|
|
private Integer departemenId;
|
|
|
|
@Caption(value = "Object Satuan Kecil")
|
|
private SatuanKecilVO satuanKecil;
|
|
|
|
private Integer satuanKecilId;
|
|
|
|
@Caption(value = "Nama Bahan Sample")
|
|
private String namaBahanSample;
|
|
|
|
@Caption(value = "QBahan Sample")
|
|
private short qBahanSample;
|
|
|
|
}
|