wlzboy
1 天以前 08f95b2f159b56fa3bd4f4b348855989de8aa456
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.ruoyi.system.domain.vo;
 
import java.util.List;
 
/**
 * 分公司用户查询VO
 * 
 * @author ruoyi
 */
public class BranchUserQueryVO
{
    /** 分公司ID列表 */
    private List<Long> branchDeptIds;
 
    public List<Long> getBranchDeptIds()
    {
        return branchDeptIds;
    }
 
    public void setBranchDeptIds(List<Long> branchDeptIds)
    {
        this.branchDeptIds = branchDeptIds;
    }
 
    @Override
    public String toString()
    {
        return "BranchUserQueryVO{" +
                "branchDeptIds=" + branchDeptIds +
                '}';
    }
}