| | |
| | | |
| | | 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; |
| | | |
| | |
| | | private String testValue; |
| | | |
| | | /** |
| | | * 判断类型:大于等于/小于等于/范围/文字描述 |
| | | */ |
| | | @Excel(name = "判断类型") |
| | | private String judgeType; |
| | | |
| | | /** |
| | | * 是否必要判断:0-否,1-是 |
| | | */ |
| | | @Excel(name = "是否必要判断") |
| | | private Integer isRequired; |
| | | |
| | | /** |
| | | * 单项是否合格:0-不合格,1-合格,null-未判断 |
| | | */ |
| | | @Excel(name = "单项是否合格") |
| | | private Integer isQualified; |
| | | |
| | | /** |
| | | * 范围下限值 |
| | | */ |
| | | @Excel(name = "范围下限值") |
| | | private java.math.BigDecimal minValue; |
| | | |
| | | /** |
| | | * 范围上限值 |
| | | */ |
| | | @Excel(name = "范围上限值") |
| | | private java.math.BigDecimal maxValue; |
| | | |
| | | /** |
| | | * 检验ID |
| | | */ |
| | | @Excel(name = "检验ID") |
| | |
| | | |
| | | |
| | | |
| | | @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; |
| | | |