liujie
2025-05-26 08c37794bd32cf5798ce581b472b1fae4f376d61
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package com.ruoyi.system.bo;
 
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.util.List;
 
public class ProcessTaskListBO extends BasePage {
    /**
     * 任务名称
     */
    @ApiModelProperty(value = "任务名称")
    private String name;
 
    /**
     * 任务名称
     */
    @ApiModelProperty(value = "任务名称")
    private String moduleName;
//    /**
//     * 流程实例状态( 0,审批中 1,审批通过 2,审批拒绝 3)
//     */
//    private Integer instanceState;
    /**
     * 创建人
     */
    @ApiModelProperty(value = "创建人")
    private String createBy;
 
    @ApiModelProperty(value = "乙方名称")
    private String partyTwoName;
    @ApiModelProperty(value = "合同编号")
    private String contractNumber;
    @ApiModelProperty(value = "合同名称")
    private String contractName;
    @ApiModelProperty(value = "合同状态")
    private String status;
    @ApiModelProperty(value = "前端忽略")
    private List<String> instanceIds;
 
    @ApiModelProperty(value = "时间筛选 1=1天 2=7天 3=30天")
    private Integer timeType;
 
    @ApiModelProperty(value = "排序  1=最早到达 2=最新到达")
    private Integer sortBy=2;
 
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getModuleName() {
        return moduleName;
    }
 
    public void setModuleName(String moduleName) {
        this.moduleName = moduleName;
    }
 
    public String getCreateBy() {
        return createBy;
    }
 
    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }
 
    public String getPartyTwoName() {
        return partyTwoName;
    }
 
    public void setPartyTwoName(String partyTwoName) {
        this.partyTwoName = partyTwoName;
    }
 
    public String getContractNumber() {
        return contractNumber;
    }
 
    public void setContractNumber(String contractNumber) {
        this.contractNumber = contractNumber;
    }
 
    public String getContractName() {
        return contractName;
    }
 
    public void setContractName(String contractName) {
        this.contractName = contractName;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public List<String> getInstanceIds() {
        return instanceIds;
    }
 
    public void setInstanceIds(List<String> instanceIds) {
        this.instanceIds = instanceIds;
    }
 
    public Integer getTimeType() {
        return timeType;
    }
 
    public void setTimeType(Integer timeType) {
        this.timeType = timeType;
    }
 
    public Integer getSortBy() {
        return sortBy;
    }
 
    public void setSortBy(Integer sortBy) {
        this.sortBy = sortBy;
    }
}