| | |
| | | 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.MdcProduction; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | |
| | | import java.util.Collection; |
| | |
| | | |
| | | /** |
| | | * 分配设备用户 |
| | | * @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 查找设备 |