啊鑫
2025-02-18 f91c09e452ce121a66755e8b6f133efeac4edead
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
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;
}