| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.dnc.entity.DeviceInfo; |
| | | import org.jeecg.modules.dnc.response.CommonGenericTree; |
| | | import org.jeecg.modules.dnc.ucenter.UserDepartExt; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | |
| | | import java.util.Collection; |
| | |
| | | * @param paramId |
| | | * @return |
| | | */ |
| | | List<UserDepartExt> getUserPermsList(Integer nodeType, String paramId); |
| | | List<SysUser> getUserPermsList(Integer nodeType, String paramId); |
| | | /** |
| | | * 获取节点未分配的用户 |
| | | * @param nodeType |
| | |
| | | |
| | | /** |
| | | * 分配设备用户 |
| | | * @param deviceInfo |
| | | * @param mdcEquipment |
| | | * @param userList |
| | | * @return |
| | | */ |
| | | boolean assignAddUser(DeviceInfo deviceInfo, Collection<SysUser> userList); |
| | | boolean assignAddUser(MdcEquipment mdcEquipment, Collection<SysUser> userList); |
| | | |
| | | /** |
| | | * 删除设备用户 |
| | | * @param deviceInfo |
| | | * @param mdcEquipment |
| | | * @param userList |
| | | * @return |
| | | */ |
| | | boolean assignRemoveUser(DeviceInfo deviceInfo, Collection<SysUser> userList); |
| | | boolean assignRemoveUser(MdcEquipment mdcEquipment, Collection<SysUser> userList); |
| | | |
| | | /** |
| | | * 根据一组groupId 查找设备 |