53 lines
1.0 KiB
Java
53 lines
1.0 KiB
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;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @author Salman
|
|
* @version 1.0.0
|
|
* @since 17/12/2024
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class BowidickVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Tanggal")
|
|
private Date tanggal;
|
|
|
|
@Caption(value="Object Mesin")
|
|
private MesinVO mesin;
|
|
|
|
private Integer mesinId;
|
|
|
|
@Caption(value = "Program Mesin")
|
|
private String programMesin;
|
|
|
|
@Caption(value = "Suhu")
|
|
private String suhu;
|
|
|
|
@Caption(value = "Hasil")
|
|
private String hasil;
|
|
|
|
@Caption(value="Object Supervisor")
|
|
private PegawaiVO supervisor;
|
|
|
|
private Integer supervisorId;
|
|
|
|
@Caption(value="Object Operator")
|
|
private PegawaiVO operator;
|
|
|
|
private Integer operatorId;
|
|
|
|
private PencatatanSuhuMesinVO pencatatanSuhuMesin;
|
|
|
|
private String pencatatanSuhuMesinId;
|
|
|
|
private String keterangan;
|
|
|
|
}
|