| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("quality_test_standard_param") |
| | | @ApiModel(value = "QualityTestStandardParam对象", description = "检测标准参数") |
| | | @Schema(name = "QualityTestStandardParam对象", description = "检测标准参数") |
| | | public class QualityTestStandardParam implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("参数项") |
| | | @Schema(description = "参数项") |
| | | private String parameterItem; |
| | | |
| | | @ApiModelProperty("单位") |
| | | @Schema(description = "单位") |
| | | private String unit; |
| | | |
| | | @ApiModelProperty("标准值") |
| | | @Schema(description = "标准值") |
| | | private String standardValue; |
| | | |
| | | @ApiModelProperty("内控值") |
| | | @Schema(description = "内控值") |
| | | private String controlValue; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | |
| | | @ApiModelProperty("修改时间") |
| | | @Schema(description = "修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("修改用户") |
| | | @Schema(description = "修改用户") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Long updateUser; |
| | | |
| | | @ApiModelProperty("租户ID") |
| | | @Schema(description = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @ApiModelProperty("关联检测标准主表id") |
| | | @Schema(description = "关联检测标准主表id") |
| | | private Long testStandardId; |
| | | |
| | | @ApiModelProperty("默认值") |
| | | @Schema(description = "默认值") |
| | | private String defaultValue; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |