liusheng
2024-02-23 52df965c9cbaa015520b4379393a0041eb9ae8da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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;
 
}