| | |
| | | package com.yuanchu.mom.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | | * |
| | | * 检验项目的结果 |
| | | * @TableName ins_product_result |
| | | */ |
| | | @TableName(value ="ins_product_result") |
| | |
| | | /** |
| | | * |
| | | */ |
| | | @TableId |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /** |
| | |
| | | private String insValue; |
| | | |
| | | /** |
| | | * 1:合格 0:不合格 |
| | | * 计算值 |
| | | */ |
| | | private Integer insResult; |
| | | private String comValue; |
| | | |
| | | /** |
| | | * 最终值 |
| | | * 设备值 |
| | | */ |
| | | private String lastValue; |
| | | private String equipValue; |
| | | |
| | | @ApiModelProperty("") |
| | | private String equipName; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | /** |
| | | * |
| | | */ |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("") |
| | | |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | /** |
| | | * |
| | | */ |
| | | |
| | | @ApiModelProperty("修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime updateTime; |
| | | |
| | | /** |
| | | * 次数(检测次数) |
| | | */ |
| | | private Integer num; |
| | | } |