zss
6 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package com.yuanchu.mom.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
 
/**
 * <p>
 * 设备校准 - 校准记录
 * </p>
 *
 * @author
 * @since 2024-09-27 10:20:01
 */
@Getter
@Setter
@TableName("device_metric_record")
@ApiModel(value = "DeviceMetricRecord对象", description = "设备校准 - 校准记录")
public class DeviceMetricRecord implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty("主键id")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty("记录编号")
    private String processNumber;
 
    @ApiModelProperty("计量单位")
    private String unitOfMeasure;
 
    @ApiModelProperty("校准日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date calibrationDate;
 
    @ApiModelProperty("下次校准日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date nextCalibrationDate;
 
    @ApiModelProperty("计算器具")
    private String calculatingApparatus;
 
    @ApiModelProperty("计算标准量程")
    private String standardRange;
 
    @ApiModelProperty("计量标准不确定度")
    private String calibrationStandardUncertainty;
 
    @ApiModelProperty("依据文件")
    private String byDocument;
 
    @ApiModelProperty("证书编号")
    private String certificateSerialNumber;
 
    @ApiModelProperty("状态")
    private String status;
 
    @ApiModelProperty("原文件名称")
    private String fileName;
 
    @ApiModelProperty("系统生成文件名称")
    private String systemFileName;
 
    @ApiModelProperty("备注")
    private String remark;
 
    @ApiModelProperty("设备id")
    private Integer deviceId;
 
    @ApiModelProperty("创建时间 / 登记日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @ApiModelProperty("登记人")
    private String createUser;
 
    @ApiModelProperty("calibrate:校准;examine:核查")
    private String type;
 
    @ApiModelProperty("确认时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date confirmDate;
}