李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
 *    Copyright (c) 2018-2025, ztt All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 * Neither the name of the pig4cloud.com developer nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 * Author: ztt
 */
 
package com.chinaztt.mes.quality.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 检测汇报项目表
 *
 * @author cxf
 * @date 2021-04-06 14:29:45
 */
@Data
@TableName("quality_report_sample_item")
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "检测汇报项目表")
public class ReportSampleItem extends Model<ReportSampleItem> {
private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    @ApiModelProperty(value="id")
    private Long id;
    /**
     * 检测项id
     */
    @ApiModelProperty(value="检测项id")
    private Long itemsId;
    /**
     * 检测样品id
     */
    @ApiModelProperty(value="检测样品id")
    private Long reportSampleId;
    /**
     * 排序
     */
    @ApiModelProperty(value="排序")
    private Long sort;
    /**
     * 检测项目
     */
    @ApiModelProperty(value="检测项目")
    private String itemName;
    /**
     * 检测值
     */
    @ApiModelProperty(value="检测值")
    private String itemValue;
    /**
     * 计算值
     */
    @ApiModelProperty(value="计算值")
    private String calItemValue;
    /**
     * 采集值
     */
    @ApiModelProperty(value="采集值")
    private String acqItemValue;
 
    @ApiModelProperty(value="参考值")
    private String itemReference;
    /**
     * 是否合格
     */
    @ApiModelProperty(value="是否合格")
    private Boolean isQualified;
    /**
     * 备注
     */
    @ApiModelProperty(value="备注")
    private String remark;
 
    @ApiModelProperty(value = "检测项目编号")
    private String itemCode;
    @ApiModelProperty(value = "检测项目类型")
    private String itemType;
    @ApiModelProperty(value = "判断公式(是否合格)")
    private String judgeFormula;
    @ApiModelProperty(value = "值公式(针对计算出来的值)")
    private String valueFormula;
    @ApiModelProperty(value = "参数格式")
    private String parameterFormat;
 
    /**
     * 检测人
     */
    @ApiModelProperty(value="检测人")
    private String testUser;
 
    /**
     * 计算值
     */
    @ApiModelProperty(value="计算值")
    private String testValue;
 
 
    //-----------------------------------------兼容跳线车间新增(用于对接检测终端服务程序)
 
    /**
     * 参数项的检测类型
     */
    @ApiModelProperty(value = "参数项的检测类型")
    private String paramType;
    /**
     * 通道
     */
    @ApiModelProperty(value = "通道")
    private String aisle;
    /**
     * 部位
     */
    @ApiModelProperty(value = "部位")
    private String position;
    //-----------------------------------------兼容跳线车间新增(用于对接检测终端服务程序)
 
    @ApiModelProperty(value = "线芯")
    private String wireCore;
 
    @ApiModelProperty(value = "继承检测零件号")
    private String extendsPartNo;
 
    @ApiModelProperty(value = "继承检测工艺路线id")
    private Long extendsRoutingId;
 
    @ApiModelProperty(value = "继承检测工艺路线编号")
    private String extendsRoutingNo;
 
    @ApiModelProperty(value = "继承检测工序id")
    private Long extendsOperationId;
 
    @ApiModelProperty(value = "继承检测工序编号")
    private String extendsOperationNo;
 
    @ApiModelProperty(value = "继承检测标准id")
    private Long extendsTestStandardId;
 
    @ApiModelProperty(value = "继承检测标准编号")
    private String extendsTestStandardNo;
 
    @ApiModelProperty(value = "继承检测标准参数id")
    private Long extendsTestStandardParamId;
 
    @ApiModelProperty(value = "继承检测标准参数编号")
    private String extendsTestStandardParamNo;
 
    @ApiModelProperty(value = "工艺文件检测标准参数明细表id")
    private Long technologyDocumentStandardParamId;
 
    @ApiModelProperty(value = "是否成功继承检测标准项")
    private Boolean extendsResultFlag;
 
    @ApiModelProperty(value = "单位")
    private String unit;
 
    @ApiModelProperty(value = "是否抽检")
    private Boolean isCheck;
}