Lius
8 天以前 0a19d4923b0a048aee0cda91c37f25bc6e140d54
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
package org.jeecg.modules.system.vo;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @Description: 用户角色vo
 * @author: jeecg-boot
 */
@Data
public class SysUserRoleVO implements Serializable{
    private static final long serialVersionUID = 1L;
 
    /**部门id*/
    private String roleId;
    /**对应的用户id集合*/
    private List<String> userIdList;
 
    public SysUserRoleVO() {
        super();
    }
 
    public SysUserRoleVO(String roleId, List<String> userIdList) {
        super();
        this.roleId = roleId;
        this.userIdList = userIdList;
    }
 
}