| | |
| | | import org.jeecg.modules.system.model.ProductionIdModel; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: 产线表 |
| | |
| | | List<MdcProduction> queryProdByPid(String pid); |
| | | |
| | | /** |
| | | * 递归查询所有子节点 |
| | | */ |
| | | List<MdcProduction> recursionChildrenByPid(String pid); |
| | | |
| | | /** |
| | | * 根据用户id获取产线下拉树选项 |
| | | */ |
| | | List<ProductionIdModel> loadProductionTreeOptions(String userId); |
| | |
| | | * @return |
| | | */ |
| | | List<String> findListParentTree(String parentId,List<String> stringList); |
| | | |
| | | /** |
| | | * 获取用户所在的部门 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | Map<String, MdcProduction> getUserAssignedDepart(String userId); |
| | | |
| | | /** |
| | | * 通过一组id获取部门 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | List<String> findAllProductionIds(List<String> ids); |
| | | } |