| | |
| | | } |
| | | |
| | | /** |
| | | * 根据用户id和车间id获取用户拥有的车间id |
| | | * @param userId |
| | | * @param productionId |
| | | * @return |
| | | */ |
| | | @Override |
| | | public String findFirstProduction(String userId, String productionId) { |
| | | return this.baseMapper.findFirstProduction(userId, productionId); |
| | | } |
| | | |
| | | /** |
| | | * 根据用户id查询用户工段权限 |
| | | */ |
| | | @Override |
| | | public String findThreeProductionId(String userId) { |
| | | return this.baseMapper.findThreeProductionId(userId); |
| | | } |
| | | |
| | | @Override |
| | | public MdcProduction findProductionList(String equipmentId) { |
| | | return this.baseMapper.findProductionList(equipmentId); |
| | | } |
| | | |
| | | /** |
| | | * delete 方法调用 递归查找子集id |
| | | */ |
| | | private void checkChildrenExists(String id, List<String> idList) { |