35 lines
724 B
Java
35 lines
724 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 SatuanHasil
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class SatuanHasilVO extends BaseMasterVO {
|
|
|
|
@NotNull(message = "Object DepartemenVO Harus Diisi")
|
|
@Caption(value = "Object Departemen")
|
|
private DepartemenVO departemen;
|
|
|
|
private Integer departemenId;
|
|
|
|
@Caption(value = "Kode Satuan Hasil")
|
|
private Byte kdSatuanHasil;
|
|
|
|
@Caption(value = "QSatuan Hasil")
|
|
private Byte qSatuanHasil;
|
|
|
|
@Caption(value = "Satuan Hasil")
|
|
private String satuanHasil;
|
|
|
|
}
|