package com.gkhy.exam.system.domain; 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 io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; @Setter @Getter @TableName("flow_approve") @ApiModel(value = "flowApprove",description = "流程管理") public class FlowApprove { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "企业id") @TableField("company_id") private Integer companyId; @TableField(exist = false) private String companyName; @ApiModelProperty(value = "流程名称") @TableField("flow_name") private String flowName; @ApiModelProperty(value = "审批人") @TableField("approve_user_id") private Integer approveUserId; @TableField(exist = false) private String approveUserName; @TableField(exist = false) private Integer deptId; @TableField(exist = false) private String deptName; @ApiModelProperty(value = "是否删除") @TableField("del_flag") private String delFlag; }