package com.ruoyi.quality.pojo; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.time.LocalDateTime; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Getter; import lombok.Setter; /** *
* 检测标准参数 *
* * @author 芯导软件(江苏)有限公司 * @since 2026-01-13 03:39:49 */ @Getter @Setter @TableName("quality_test_standard_param") @Schema(name = "QualityTestStandardParam对象", description = "检测标准参数") public class QualityTestStandardParam implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; @Schema(description = "参数项") private String parameterItem; @Schema(description = "单位") private String unit; @Schema(description = "标准值") private String standardValue; @Schema(description = "内控值") private String controlValue; @Schema(description = "创建时间") @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @Schema(description = "创建用户") @TableField(fill = FieldFill.INSERT) private Long createUser; @Schema(description = "修改时间") @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @Schema(description = "修改用户") @TableField(fill = FieldFill.INSERT_UPDATE) private Long updateUser; @Schema(description = "租户ID") @TableField(fill = FieldFill.INSERT) private Long tenantId; @Schema(description = "关联检测标准主表id") private Long testStandardId; @Schema(description = "默认值") private String defaultValue; @TableField(fill = FieldFill.INSERT) private Long deptId; }