package com.gs.xky.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 来料检验从表
|
*
|
* @TableName MES_QA_ITEMS_DETECT_DETAIL5
|
*/
|
@TableName(value = "MES_QA_ITEMS_DETECT_DETAIL5")
|
@Data
|
public class MesQaItemsDetectDetail5 implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
/**
|
*
|
*/
|
@TableId
|
private Long id;
|
/**
|
* 标准值类型
|
*/
|
private String ftextType;
|
/**
|
* 标准值
|
*/
|
private Long fstand;
|
/**
|
* 上公差
|
*/
|
private String fupAllow;
|
/**
|
* 下公差
|
*/
|
private String fdownAllow;
|
/**
|
* 检验水准
|
*/
|
private String sampleSizeNo;
|
/**
|
* 检验水平
|
*/
|
private String fcheckLevel;
|
/**
|
* 拒收水平
|
*/
|
private String facLevel;
|
/**
|
* 检验项目
|
*/
|
private String fcheckItem;
|
/**
|
* 规格要求
|
*/
|
private String fspecRequ;
|
/**
|
* 抽检数量
|
*/
|
private Long checkQyt;
|
/**
|
* 检验结果
|
*/
|
private String fcheckResu;
|
/**
|
* AC数量
|
*/
|
private Long facQty;
|
/**
|
* RE数量
|
*/
|
private Long freQty;
|
/**
|
* 不合格数
|
*/
|
private Long fngQty;
|
/**
|
* 不良率
|
*/
|
private BigDecimal fngRate;
|
/**
|
* 已录入数量
|
*/
|
private BigDecimal fenterQty;
|
/**
|
*
|
*/
|
private String releaseNo;
|
/**
|
*
|
*/
|
private String company;
|
/**
|
*
|
*/
|
private String factory;
|
/**
|
* 检验项目描述
|
*/
|
private String fcheckItemDesc;
|
/**
|
* 工序号
|
*/
|
private String procNo;
|
/**
|
* 工作中心编码
|
*/
|
private String workshopCenterCode;
|
/**
|
* 单位
|
*/
|
private String funit;
|
/**
|
* 特定修改
|
*/
|
private Integer givenModify;
|
/**
|
* 检验工具
|
*/
|
private String fcheckTool;
|
/**
|
* 更新人
|
*/
|
private String lastupdateBy;
|
/**
|
* 更新时间
|
*/
|
private Date lastupdateDate;
|
}
|