“zhuo”
2023-08-10 390e54f20695b7f369fb50f584447d193543539d
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
99
100
101
102
package com.yuanchu.limslaboratory.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 审核年度计划表
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-08-10 11:50:11
 */
@Getter
@Setter
@TableName("cnas_annual_plan")
public class CnasAnnualPlan implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 性质,0:内审,1:管理评审
     */
    private Integer auditType;
 
    /**
     * 部门
     */
    private String department;
 
    /**
     * 审核目的
     */
    private String auditPurpose;
 
    /**
     * 审核组长
     */
    private String auditLeader;
 
    /**
     * 审核组员
     */
    private String auditEmp;
 
    /**
     * 审核依据
     */
    private String auditPursuant;
 
    /**
     * 审核范围
     */
    private String auditScope;
 
    /**
     * 编制人员
     */
    private String writeUser;
 
    /**
     * 录入人员
     */
    private String keyboarder;
 
    /**
     * 计划时间
     */
    private LocalDateTime planTime;
 
    /**
     * 不合格项目数
     */
    private Integer count;
 
    /**
     * 审核状态,0:即将开始,1:完成,2:逾期
     */
    private Integer auditState;
 
    private Integer state;
 
    /**
     * 审核日期
     */
    private LocalDateTime auditTime;
 
    private LocalDateTime createTime;
 
    private LocalDateTime updateTime;
}