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;
|
}
|
}
|