Helius
2021-07-02 a31466965504b949403770c7c03eb9ee873640a9
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
package com.xzx.gc.model.query;
 
 
import com.xzx.gc.annotation.Query;
 
/**
 * 字典表单查询条件
 */
public class WorkflowQuery extends PageParam {
 
    @Query(name = "用户列表", display = true,fuzzy=true)
    private String userIds;
    @Query(name = "角色列表", display = true,fuzzy=true)
    private String roleIds;
    @Query(name = "机构列表", display = true,fuzzy=true)
    private String orgIds;
    public String getUserIds() {
        return userIds;
    }
    public void setUserIds(String userIds) {
        this.userIds = userIds;
    }
    public String getRoleIds() {
        return roleIds;
    }
    public void setRoleIds(String roleIds) {
        this.roleIds = roleIds;
    }
    public String getOrgIds() {
        return orgIds;
    }
    public void setOrgIds(String orgIds) {
        this.orgIds = orgIds;
    }
  
    
    
    
    
    
 
}