| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.system.entity.MdcUserProduction; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | import org.jeecg.modules.system.model.ProductionIdModel; |
| | | |
| | | import java.util.List; |
| | |
| | | * 根据指定用户id查询产线id集合 |
| | | */ |
| | | List<String> queryProductionIdsByUserId(String userId); |
| | | |
| | | /** |
| | | * 删除一组对象 |
| | | * @param mdcUserProductions |
| | | * @return |
| | | */ |
| | | boolean removeByCollection(List<MdcUserProduction> mdcUserProductions); |
| | | |
| | | /** |
| | | * 获取已分配的用户列表 |
| | | * @param proId |
| | | * @return |
| | | */ |
| | | List<SysUser> getUserPermsByGroupId(String proId); |
| | | |
| | | /** |
| | | * 获取未分配的用户列表 |
| | | * @param proId |
| | | * @return |
| | | */ |
| | | List<SysUser> getUserNonPermsByGroupId(String proId); |
| | | |
| | | /** |
| | | * 获取未分配的用户 |
| | | * @param proId |
| | | * @return |
| | | */ |
| | | List<SysUser> getUserNonPermsByDeviceId(String proId); |
| | | |
| | | /** |
| | | * 获取已分配的用户 |
| | | * @param proId |
| | | * @return |
| | | */ |
| | | List<SysUser> getUserPermsByDeviceId(String proId); |
| | | |
| | | |
| | | MdcUserProduction getByUserIdAndGroupId(String userId, String proId); |
| | | } |