gongchunyi
2026-04-30 5dc34f36049194d1a124eb60dd68cb17e498caec
src/main/java/com/ruoyi/quality/pojo/QualityInspect.java
@@ -31,7 +31,7 @@
    /**
     * 类别(0:原材料检验;1:过程检验;2:出厂检验)
     */
    @Excel(name = "类别",readConverterExp = "0=原材料检验,1=过程检验,2=出厂检验")
    @Excel(name = "类别", readConverterExp = "0=原材料检验,1=过程检验,2=出厂检验")
    @NotBlank(message = "类别不能为空!!")
    private Integer inspectType;
@@ -41,8 +41,6 @@
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "检测日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date checkTime;
    /**
@@ -60,8 +58,13 @@
    /**
     * 工序(过程检验)
     */
    @Excel(name = "工序")
    @Excel(name = "部件类型")
    private String process;
    /**
     * 工序类型
     */
    private Integer processType;
    /**
     * 检验员
@@ -112,7 +115,6 @@
    private String checkResult;
    @ApiModelProperty(value = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
@@ -144,7 +146,15 @@
     * 报工id
     */
    private Long productMainId;
    private Long productModelId;
    //不合格现象
    private String defectivePhenomena;
    @ApiModelProperty("关联检测标准主表id")
    private Long testStandardId;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}