/*
|
* 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;
|
}
|