|
|
|
@ -223,9 +223,9 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<ClassifyApiVO> selectClassifyList() { |
|
|
|
|
public List<ClassifyApiVO> selectClassifyList(Long deptId) { |
|
|
|
|
Long pid = 0L; |
|
|
|
|
List<ClassifyApiVO> classifyEntities = getClassifyList(pid); |
|
|
|
|
List<ClassifyApiVO> classifyEntities = getClassifyList(pid,deptId); |
|
|
|
|
for (ClassifyApiVO classifyEntity : classifyEntities) { |
|
|
|
|
if (classifyEntity.getPId().equals(0L)) { |
|
|
|
|
List<ClassifyApiVO> classifyList = new ArrayList<>(); |
|
|
|
@ -491,7 +491,7 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
|
|
|
|
|
return R.success("导入成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private List<ClassifyApiVO> getClassifyList(Long pid) { |
|
|
|
|
return baseMapper.selectAllClassifyList(pid); |
|
|
|
|
private List<ClassifyApiVO> getClassifyList(Long pid,Long exAdminDeptId) { |
|
|
|
|
return baseMapper.selectAllClassifyList(pid,exAdminDeptId); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|