| | |
| | | }); |
| | | } |
| | | |
| | | private List<PlanNode> getPlanNodeByPlanId(Long planId) { |
| | | @Override |
| | | public List<PlanNode> getPlanNodeByPlanId(Long planId) { |
| | | return planNodeMapper.selectList(new LambdaQueryWrapper<PlanNode>() |
| | | .eq(PlanNode::getIsDelete, 0) |
| | | .eq(PlanNode::getProjectManagementPlanId, planId)); |
| | | .eq(PlanNode::getProjectManagementPlanId, planId).orderByAsc(PlanNode::getSort)); |
| | | } |
| | | |
| | | private List<PlanNode> getPlanNodeByPlanIds(List<Long> planIds) { |
| | | return planNodeMapper.selectList(new LambdaQueryWrapper<PlanNode>() |
| | | .eq(PlanNode::getIsDelete, 0) |
| | | .in(PlanNode::getProjectManagementPlanId, planIds)); |
| | | .in(PlanNode::getProjectManagementPlanId, planIds).orderByAsc(PlanNode::getSort)); |
| | | } |
| | | |
| | | |