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;
|
}
|