无关风月
2 天以前 165e73d176191ae75b57c70e049c0cfd552bbdfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.system.applet.query;
 
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "我审批的分页列表query")
public class LeaveListUserQuery extends BasePage {
 
    @ApiModelProperty(value = "姓名")
    private String leavePersonName;
    @ApiModelProperty(value = "人员ids 前端忽略")
    private List<Long> userIds;
    @ApiModelProperty(value = "类型1=我审批的 2=我申请的")
    private String type;
    @ApiModelProperty(value = "类型1=待审批 2=已审批")
    private String auditStatus;
    @ApiModelProperty(value = "当前登陆人id 前端忽略")
    private String userId;
}