xuhy
3 天以前 9c9a91d2724c9a158fe4e95a8fbda6340459f8b4
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
93
94
95
96
97
98
package com.ruoyi.system.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
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.time.LocalDateTime;
 
/**
 * <p>
 * 中试、生产验证分析报告;辅料;产品报告
 * </p>
 *
 * @author xiaochen
 * @since 2025-04-08
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_qa_produce_report")
@ApiModel(value="TQaProduceReport对象", description="中试、生产验证分析报告;辅料;产品报告")
public class TQaProduceReport  extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private String id;
 
    @ApiModelProperty(value = "项目组id")
    @TableField("team_id")
    private String teamId;
 
    @ApiModelProperty(value = "提交用户id、化验师")
    @TableField("commit_person_id")
    private Long commitPersonId;
 
    @ApiModelProperty(value = "报告标题")
    @TableField("report_title")
    private String reportTitle;
 
    @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 = "报告类型 1=中试 2=辅料 3=产品报告")
    @TableField("report_type")
    private Integer reportType;
 
    @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=已驳回 5=已撤销 ")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "评定人")
    @TableField("evaluate_person_id")
    private Long evaluatePersonId;
 
    @ApiModelProperty(value = "评定时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("evaluate_time")
    private LocalDateTime evaluateTime;
 
    @ApiModelProperty(value = "评定分数  逗号分隔")
    @TableField("evaluate_score")
    private String evaluateScore;
 
}