hsy
2026-08-28 a8e4132c3e2e9c3b3fcb0360901b35571b6464ea
src/main/java/com/ruoyi/quality/pojo/QualityInspectParam.java
@@ -2,11 +2,12 @@
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotBlank;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
/**
@@ -50,6 +51,24 @@
    private String controlValue;
    /**
     * 参数类型(0-文字, 1-数字)
     */
    @Excel(name = "参数类型")
    private Integer parameterType;
    /**
     * 最大值
     */
    @Excel(name = "最大值")
    private BigDecimal maxValue;
    /**
     * 最小值
     */
    @Excel(name = "最小值")
    private BigDecimal minValue;
    /**
     * 检验值
     */
    @Excel(name = "检验值")
@@ -64,25 +83,32 @@
    @ApiModelProperty(value = "创建时间")
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    @ApiModelProperty(value = "创建用户")
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @ApiModelProperty(value = "修改时间")
    @Schema(description = "修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
    @ApiModelProperty(value = "修改用户")
    @Schema(description = "修改用户")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
    @ApiModelProperty(value = "租户ID")
    @Schema(description = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    // 导出使用
    @TableField(select = false, exist = false)
    private Integer index;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}