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
| package com.gkhy.safePlatform.specialWork.model.query;
|
| public class ApprovalRuleListQuery {
|
| //企业ID
| private Long eid;
|
| //部门ID
| private Long depId;
|
| //状态
| private Byte status;
|
| //作业类型
| private Byte workType;
|
| //创建人ID
| private Long createUid;
|
| //创建人员姓名
| private String createUname;
|
| //分页标识,true需要分页,false不分页
| private Boolean pageable;
|
| //页大小
| private Long pageSize;
|
| //查询页数
| private Long pageIndex;
|
| }
|
|