lxp
2025-03-12 11af23e0c7976eed1211ba2ca0beae3a12e19310
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
package com.ruoyi.inspect.pojo;
 
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 lombok.Data;
 
import java.io.Serializable;
 
/**
 * 报告审批签名配置
 * @TableName ins_report_approve_config
 */
@TableName(value ="ins_report_approve_config")
@Data
public class InsReportApproveConfig implements Serializable {
    /**
     * 主键
     */
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /**
     * 编制人
     */
    private Integer editor;
 
    /**
     * 审核人
     */
    private Integer examiner;
 
    /**
     * 批准人
     */
    private Integer approver;
 
    /**
     * 实验室
     */
    private String laboratory;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}