liusheng
2024-04-24 a894bc6373154d5cfd28b7f46df3c4cfa01a7b9b
ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceFundflowrule.java
@@ -10,56 +10,78 @@
/**
 * 资金审批规则对象 service_fundflowrule
 *
 *
 * @author ruoyi
 * @date 2022-04-27
 */
@Data
@ApiModel("资金审批规则")
public class ServiceFundflowrule extends BaseEntity
{
public class ServiceFundflowrule extends BaseEntity {
    private static final long serialVersionUID = 1L;
    /** $column.columnComment */
    /**
     * $column.columnComment
     */
    @ApiModelProperty("$column.columnComment")
    //数据库自增改成@TableId(type = IdType.AUTO)
    @TableId(type = IdType.AUTO)
    private Long id;
    /** 资金类别 见字典sys_ConsolationType */
    /**
     * 资金类别 见字典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:费用申请模块 */
    /**
     * 费用类别  1:差旅费模块  2:费用申请模块
     */
    @ApiModelProperty("费用类别  1:差旅费模块  2:费用申请模块")
    @Excel(name = "费用类别  1:差旅费模块  2:费用申请模块")
    private Integer fundtype;
    /**
     * 是否为必审人   0:否     1:是
     */
    @ApiModelProperty("是否为必审人   0:否     1:是")
    @Excel(name = "是否为必审人   0:否     1:是")
    private Integer mustAudite;
}