啊鑫
2025-02-17 30a83b7337706fff402a5e360dca96745d48f59a
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
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.util.Date;
 
/**
 * IQC检验
 *
 * @TableName MES_QA_ITEMS_DETECT_DETAIL12
 */
@TableName(value = "MES_QA_ITEMS_DETECT_DETAIL12")
@Data
public class MesQaItemsDetectDetail12 implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
    /**
     *
     */
    @TableId
    private Long id;
    /**
     * 检验结果
     */
    private String fcheckResu;
    /**
     * 检验项目
     */
    private String fcheckItem;
    /**
     * 物料条码
     */
    private String itemBarcode;
    /**
     *
     */
    private String releaseNo;
    /**
     *
     */
    private Long mainId;
    /**
     *
     */
    private Date createDate;
    /**
     *
     */
    private String company;
    /**
     *
     */
    private String factory;
    /**
     *
     */
    private String fstand;
    /**
     * 生成人
     */
    private String lastupdateBy;
    /**
     *
     */
    private String createBy;
}