package com.hk.NumericalCollection.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import lombok.Data;
|
|
/**
|
*
|
* @TableName V_ORDER
|
*/
|
@TableName(value ="V_ORDER")
|
@Data
|
public class VOrder implements Serializable {
|
/**
|
*
|
*/
|
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 bgqty;
|
|
/**
|
*
|
*/
|
private Long yjqty;
|
|
/**
|
*
|
*/
|
private Long daa012;
|
|
/**
|
*
|
*/
|
private String engineeringNo;
|
|
/**
|
*
|
*/
|
private String colorName;
|
|
/**
|
*
|
*/
|
private String material;
|
|
/**
|
*
|
*/
|
private String moldId;
|
|
/**
|
*
|
*/
|
private String moldName;
|
|
/**
|
*
|
*/
|
private String moldModel;
|
|
/**
|
*
|
*/
|
private String daa018;
|
|
/**
|
*
|
*/
|
private Long modlLifeWorning;
|
|
/**
|
*
|
*/
|
private Long moldInseptionQty;
|
|
/**
|
*
|
*/
|
private BigDecimal todayFaultNum;
|
|
/**
|
*
|
*/
|
private BigDecimal todayOnlineTime;
|
|
/**
|
*
|
*/
|
private Integer todayOutput;
|
|
/**
|
*
|
*/
|
private String workStartDate;
|
|
/**
|
*
|
*/
|
private String workEndDate;
|
|
/**
|
*
|
*/
|
private BigDecimal todayRunTime;
|
|
/**
|
*
|
*/
|
private Long moldingCyc;
|
|
/**
|
*
|
*/
|
private String outItemNum;
|
|
/**
|
*
|
*/
|
private String editDate;
|
|
/**
|
*
|
*/
|
private Long jdl;
|
|
/**
|
*
|
*/
|
private Long blQty;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|