wangting
2024-12-26 fa261e8c1220b31af54e8167e4de9c3320b1af27
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
package com.vci.client.framework.systemConfig.object;
 
import com.vci.client.common.objects.DeptObject;
import com.vci.client.common.objects.UserObject;
 
public class UserCompInfoObject {
    private DeptObject deptObj;
    private UserObject userObj;
    private String roleObj;
    public DeptObject getDeptObj() {
        return deptObj;
    }
    public void setDeptObj(DeptObject deptObj) {
        this.deptObj = deptObj;
    }
    public UserObject getUserObj() {
        return userObj;
    }
    public void setUserObj(UserObject userObj) {
        this.userObj = userObj;
    }
    public String getRoleObj() {
        return roleObj;
    }
    public void setRoleObj(String roleObj) {
        this.roleObj = roleObj;
    }
}