package org.jeecg.modules.dry.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
@Data
|
public class RealTimeReportVo {
|
private Boolean report_flag; // 提交标志
|
private String report_head_name; // 品名
|
private String report_head_batch ; //批次
|
private String report_head_num ; //数量--16框/355.8Kg
|
private String report_head_machine ; //设备
|
private String report_head_accepter; //接料人
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
private Date report_head_date ; //生产日期
|
private String report_head_leader ; //班组长
|
private String report_head_techer ; //工艺员
|
//检查
|
private Boolean report_check_field ; //生产现场
|
private Boolean report_check_file ; //执行文件
|
private Boolean report_check_tag ; //物料标示
|
private Boolean report_check_tool ; //称量器具
|
private String report_check_man ; //检查人
|
private Boolean report_check_status; //检查情况
|
private String report_check_qa ; //QA
|
private String report_check_record ; //异常记录
|
//生产
|
private Boolean report_product_view ; //外观检查
|
private Boolean report_product_wind ; //吹风
|
private Boolean report_product_sun ; //晒
|
private Boolean report_product_low_dry ; //低温干燥
|
private Boolean report_product_dry ; //干燥
|
private String report_product_start ; //开始时间
|
private String report_product_end ; //结束时间
|
private Integer report_product_total ; //干燥总时间
|
private Boolean report_product_check ; //干燥检查
|
private String report_product_man1 ; //操作人
|
private String report_product_man2 ; //复核人
|
private Double report_product_weight ; //操作后重量
|
private Double report_product_waste ; //废料数量
|
private Double report_product_use ; //收率
|
private String report_product_qa ; //QA
|
//清场
|
private Boolean report_clean_machine ; //设备清理
|
private Boolean report_clean_waste ; //废料清理
|
private Boolean report_clean_tool ; //工具清理
|
private Boolean report_clean_door ; //门窗清理
|
private Boolean report_clean_box ; //箱体清理
|
private Boolean report_clean_record ; //生产记录清理
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
private Date report_clean_date ; //清场日期
|
private String report_clean_man ; //清场人
|
private Boolean report_clean_confirm ; //清场确认
|
private String report_clean_qa ; //QA
|
}
|