zss
2025-02-19 30db5b326ae164d1256726191bd36a0d24f5f335
inspect-server/src/main/java/com/yuanchu/mom/pojo/InsProduct.java
@@ -3,6 +3,7 @@
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yuanchu.mom.annotation.ValueTableShow;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -14,9 +15,10 @@
/**
 * 检验项目
 *
 * @TableName ins_product
 */
@TableName(value ="ins_product")
@TableName(value = "ins_product")
@Data
public class InsProduct implements Serializable {
    /**
@@ -25,9 +27,14 @@
    @TableId(type = IdType.AUTO)
    private Integer id;
    @ValueTableShow(value = 1, name = "样品编号")
    @TableField(exist = false,select = false)
    private String sampleCode;
    /**
     * 检验项
     */
    @ValueTableShow(value = 2, name = "检验项")
    private String inspectionItem;
    private String inspectionItemEn;
@@ -44,6 +51,7 @@
    /**
     * 检验项子类
     */
    @ValueTableShow(value = 2, name = "检验项子类")
    private String inspectionItemSubclass;
    private String inspectionItemSubclassEn;
@@ -61,16 +69,19 @@
    /**
     * 样品分类
     */
    @ValueTableShow(value = 3, name = "样品分类")
    private String sampleType;
    /**
     * 样品
     */
    @ValueTableShow(value = 4, name = "样品")
    private String sample;
    /**
     * 型号
     */
    @ValueTableShow(value = 5, name = "型号")
    private String model;
    private String methodS;
@@ -78,6 +89,7 @@
    /**
     * 子实验室
     */
    @ValueTableShow(value = 6, name = "试验室")
    private String sonLaboratory;
    /**
@@ -136,7 +148,7 @@
    private String method;
    /**
     * 预计时间(天)
     * 预计时间(h)
     */
    private Integer manDay;
@@ -148,9 +160,13 @@
    /**
     * 要求值
     */
    @ValueTableShow(value = 7, name = "要求值")
    private String ask;
    /**要求描述*/
    /**
     * 要求描述
     */
    @ValueTableShow(value = 8, name = "要求描述")
    private String tell;
    /**
@@ -160,7 +176,7 @@
    private String lastValue;
    /**
     * 1:合格 0:不合格
     * 1:合格 0:不合格 3:不判定
     */
    private Integer insResult;
@@ -205,11 +221,17 @@
    private InsProductResult insProductResult;
    @TableField(exist = false)
    private List<InsProductResult2> insProductResult2;
    @TableField(exist = false)
    private String templateName;
    private String dic;
    //温度
    private String temperature;
    //湿度
    private String humidity;
    private Integer insFiberId;
    private Integer standardMethodListId;
    private Integer insFibersId;
}
}