xuhy
2 天以前 9961fd3e734552a21a30c12cea39ebf3ff57227f
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
package com.ruoyi.system.model;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * QA检测项报告
 * </p>
 *
 * @author xiaochen
 * @since 2025-04-08
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_qa_test_item_report")
@ApiModel(value="TQaTestItemReport对象", description="QA检测项报告")
public class TQaTestItemReport  extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private String id;
 
    @ApiModelProperty(value = "检测项id")
    @TableField("item_id")
    private String itemId;
 
    @ApiModelProperty(value = "报告内容 1=国家标准 2=分析方法开发 3=方法验证报告 4=方法确认 5=操作规程 6=方法转移记录清单")
    @TableField("report_content")
    private String reportContent;
 
    @ApiModelProperty(value = "报告编号")
    @TableField("report_code")
    private String reportCode;
 
    @ApiModelProperty(value = "制定人")
    @TableField("develop_person")
    private String developPerson;
 
    @ApiModelProperty(value = "制定日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("develop_date")
    private LocalDateTime developDate;
 
    @ApiModelProperty(value = "制定正文")
    @TableField("report_text")
    private String reportText;
 
    @ApiModelProperty(value = "审批人")
    @TableField("audit_person_id")
    private Long auditPersonId;
 
    @ApiModelProperty(value = "审批时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("audit_time")
    private LocalDateTime auditTime;
 
    @ApiModelProperty(value = "审批意见")
    @TableField("audit_remark")
    private String auditRemark;
 
    @ApiModelProperty(value = "状态  -1=草稿箱 1=待审核 2=已通过 3=已驳回 4=已撤销")
    @TableField("status")
    private Integer status;
 
}