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
| package org.dromara.qa.qm.domain;
|
| import org.dromara.common.mybatis.core.domain.BaseEntity;
| import com.baomidou.mybatisplus.annotation.*;
| import lombok.Data;
| import lombok.EqualsAndHashCode;
|
| import java.io.Serial;
|
| /**
| * 规程检验项目对象 qm_checkitem
| *
| * @author zhuguifei
| * @date 2026-03-12
| */
| @Data
| @TableName("qm_checkitem")
| public class QmCheckitem {
|
| @Serial
| private static final long serialVersionUID = 1L;
|
| /**
| * 编码
| */
| @TableId(value = "id")
| private String id;
|
| /**
| * 检验项目代码
| */
| private String itemCode;
|
| /**
| * 检验项目名称
| */
| private String itemName;
|
| /**
| * 单位
| */
| private String unit;
|
| /**
| * 启用
| */
| private Long enable;
|
| /**
| * 删除
| */
| private Long del;
|
| /**
| * 检验项描述
| */
| private String itemDes;
|
| /**
| * 规程代码
| */
| private String stdCode;
|
| /**
| * 仪器描述
| */
| private String instrumentDes;
|
| /**
| * 缺陷位置-外观用
| */
| private String location;
|
| /**
| * 分A,B,C,D四个级别
| */
| private String checkLevel;
|
| /**
| * 是否合成项
| */
| private Long ismix;
|
| /**
| * 关联项ID
| */
| private String rid;
|
| /**
| * 类别 0:成品 1辅料
| */
| private Long category;
|
| /**
| * 仪器编码
| */
| private String instrumentCode;
|
| /**
| * 分值
| */
| private Long score;
|
|
| }
|
|