package com.ruoyi.approve.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
* 审批模板节点审批人表
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-05-18 11:20:30
|
*/
|
@Getter
|
@Setter
|
@ToString
|
@TableName("approval_template_node_approver")
|
@ApiModel(value = "ApprovalTemplateNodeApprover对象", description = "审批模板节点审批人表")
|
public class ApprovalTemplateNodeApprover implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键ID
|
*/
|
@Schema(description = "主键ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 审批节点ID
|
*/
|
@Schema(description ="审批节点ID")
|
private Long nodeId;
|
|
/**
|
* 审批模板ID
|
*/
|
@Schema(description ="审批模板ID")
|
private Long templateId;
|
|
/**
|
* 审批人ID
|
*/
|
@Schema(description ="审批人ID")
|
private Long approverId;
|
|
/**
|
* 审批人名称冗余
|
*/
|
@Schema(description ="审批人名称冗余")
|
private String approverName;
|
|
/**
|
* 审批人排序
|
*/
|
@Schema(description ="审批人排序")
|
private Integer sortNo;
|
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
@TableField(fill = FieldFill.INSERT)
|
private Long createUser;
|
@TableField(fill = FieldFill.INSERT)
|
private Long deleted ;
|
@TableField(fill = FieldFill.INSERT)
|
private Long deptId;
|
|
}
|