@@ -53,6 +53,13 @@ public class OrganizationServiceImpl extends BaseMybatisDao<DepartmentMapper> im
}
@Override
public List<OrganizationListOut> selectSuperId(Integer hideSign) {
+ if(hideSign==null){
+ hideSign=1;
+ }
+ //此处理用于前端不批量改接口
+ if (hideSign>1){
+ hideSign=null;
List<OrganizationListOut> depList=departmentMapper.selectSuperId(hideSign);
return depList;