package com.hk.NumericalCollection.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* 订单详细信息视图实体类
|
* @TableName V_ORDER_DETAIL
|
*/
|
@TableName(value = "V_ORDER_BYCL")
|
@Data
|
public class VOrderDetail implements Serializable {
|
/**
|
* 主键ID
|
*/
|
private Long id;
|
|
/**
|
* 工单号
|
*/
|
private String daa001;
|
|
/**
|
* 机台号
|
*/
|
private String machineNo;
|
|
/**
|
* 工单日期
|
*/
|
private String daa014;
|
|
/**
|
* 客户代码
|
*/
|
private String daa003;
|
|
/**
|
* 物料编码
|
*/
|
private String daa002;
|
|
/**
|
* 规格型号
|
*/
|
private String daa004;
|
|
/**
|
* 计划数量
|
*/
|
private Long daa008;
|
|
/**
|
* 已完成数量
|
*/
|
private Long daa011;
|
|
/**
|
* 地址代码
|
*/
|
private String addressCode;
|
|
/**
|
* 需求数量
|
*/
|
private Long daa012;
|
|
/**
|
* 备注
|
*/
|
private String daa018;
|
|
/**
|
* 报工数量
|
*/
|
private Long blQty;
|
|
/**
|
* 员工姓名
|
*/
|
private String staffName;
|
|
/**
|
* 报工日期
|
*/
|
private String bgDate;
|
|
/**
|
* 工序名称
|
*/
|
private String procName;
|
|
/**
|
* 编辑日期
|
*/
|
private String editDate;
|
|
/**
|
* 工作开始日期
|
*/
|
private String workStartDate;
|
|
/**
|
* 工作结束日期
|
*/
|
private String workEndDate;
|
|
/**
|
* 进度率
|
*/
|
private Long jdl;
|
|
/**
|
* 今日运行时间
|
*/
|
private BigDecimal todayRunTime;
|
|
/**
|
* 今日故障次数
|
*/
|
private BigDecimal todayFaultNum;
|
|
/**
|
* 今日在线时间
|
*/
|
private BigDecimal todayOnlineTime;
|
|
/**
|
* 今日产量
|
*/
|
private Integer todayOutput;
|
|
/**
|
* 报工数量汇总
|
*/
|
private Long bgqty;
|
|
/**
|
* 已交数量
|
*/
|
private Long yjqty;
|
|
/**
|
* 刀具编号
|
*/
|
private String cutterId;
|
|
/**
|
* 刀具名称
|
*/
|
private String cutterName;
|
|
/**
|
* 刀具型号
|
*/
|
private String cutterModel;
|
|
/**
|
* 刀具寿命预警
|
*/
|
private Long modlLifeWorning;
|
|
/**
|
* 生产数量
|
*/
|
private Long produceNum;
|
|
/**
|
* 切削周期
|
*/
|
private Long cutteringCyc;
|
|
/**
|
* 物料编号
|
*/
|
private String itemNo;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|