wlzboy
2025-12-04 af8cab142a6b15c06e131a8474574dd5b00df982
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 +
                '}';
    }
}