package com.ruoyi.project.domain; 
 | 
  
 | 
import com.baomidou.mybatisplus.annotation.IdType; 
 | 
import com.baomidou.mybatisplus.annotation.TableId; 
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * 资金审批规则对象 service_fundflowrule 
 | 
 * 
 | 
 * @author ruoyi 
 | 
 * @date 2022-04-27 
 | 
 */ 
 | 
@Data 
 | 
@ApiModel("资金审批规则") 
 | 
public class ServiceFundflowrule extends BaseEntity { 
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    /** 
 | 
     * $column.columnComment 
 | 
     */ 
 | 
    @ApiModelProperty("$column.columnComment") 
 | 
    //数据库自增改成@TableId(type = IdType.AUTO) 
 | 
    @TableId(type = IdType.AUTO) 
 | 
    private Long id; 
 | 
  
 | 
    /** 
 | 
     * 资金类别 见字典sys_ConsolationType 
 | 
     */ 
 | 
    @ApiModelProperty("资金类别 见字典sys_ConsolationType") 
 | 
    @Excel(name = "资金类别 见字典sys_ConsolationType") 
 | 
    private String applytype; 
 | 
  
 | 
    /** 
 | 
     * 审核人编号 
 | 
     */ 
 | 
    @ApiModelProperty("审核人编号") 
 | 
    @Excel(name = "审核人编号") 
 | 
    private String checkuserno; 
 | 
  
 | 
    /** 
 | 
     * 审核人姓名 
 | 
     */ 
 | 
    @ApiModelProperty("审核人姓名") 
 | 
    @Excel(name = "审核人姓名") 
 | 
    private String checkusername; 
 | 
  
 | 
    /** 
 | 
     * 是否要验证部门,只审核同部门的 
 | 
     */ 
 | 
    @ApiModelProperty("是否要验证部门,只审核同部门的") 
 | 
    @Excel(name = "是否要验证部门,只审核同部门的") 
 | 
    private Integer verificationdept; 
 | 
  
 | 
    /** 
 | 
     * 当前审核级别 
 | 
     */ 
 | 
    @ApiModelProperty("当前审核级别") 
 | 
    @Excel(name = "当前审核级别") 
 | 
    private Integer flowlevel; 
 | 
  
 | 
    /** 
 | 
     * 总审核级别 
 | 
     */ 
 | 
    @ApiModelProperty("总审核级别") 
 | 
    @Excel(name = "总审核级别") 
 | 
    private Integer totallevel; 
 | 
  
 | 
    /** 
 | 
     * 费用类别  1:差旅费模块  2:费用申请模块 
 | 
     */ 
 | 
    @ApiModelProperty("费用类别  1:差旅费模块  2:费用申请模块") 
 | 
    @Excel(name = "费用类别  1:差旅费模块  2:费用申请模块") 
 | 
    private Integer fundtype; 
 | 
  
 | 
    /** 
 | 
     * 是否为必审人   0:否     1:是 
 | 
     */ 
 | 
    @ApiModelProperty("是否为必审人   0:否     1:是") 
 | 
    @Excel(name = "是否为必审人   0:否     1:是") 
 | 
    private Integer mustAudite; 
 | 
  
 | 
} 
 |