| | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * |
| | | * 检验项目的结果 |
| | | * @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("") |
| | | @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") |