|
@@ -13,6 +13,7 @@ import com.ruoyi.common.utils.DateUtils;
|
|
|
import com.ruoyi.common.utils.SecurityUtils;
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
import com.ruoyi.common.utils.bean.BeanValidators;
|
|
|
+import com.ruoyi.utils.RecursionUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.data.redis.core.StringRedisTemplate;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -71,42 +72,11 @@ public class TbAssetInformationServiceImpl implements ITbAssetInformationService
|
|
|
public List<TbAssetInformation> selectTbAssetInformationList(TbAssetInformation tbAssetInformation)
|
|
|
{
|
|
|
String locationNumber = tbAssetInformation.getLocationNumber();
|
|
|
- List<String> childrens = getNumberWithChildren(locationNumber);
|
|
|
+ List<String> childrens = new RecursionUtil().getNumberWithChildren(locationMapper, locationNumber);
|
|
|
tbAssetInformation.setNlist(childrens);
|
|
|
-// StringBuilder stringBuilder = new StringBuilder();
|
|
|
-// for (int i = 0; i < childrens.size(); i++) {
|
|
|
-// if (i > 0) {
|
|
|
-// stringBuilder.append(",");
|
|
|
-// stringBuilder.append(childrens.get(i));
|
|
|
-// continue;
|
|
|
-// }
|
|
|
-// stringBuilder.append(childrens.get(i));
|
|
|
-// }
|
|
|
-// tbAssetInformation.setLocationNumber(stringBuilder.toString());
|
|
|
return tbAssetInformationMapper.selectTbAssetInformationList(tbAssetInformation);
|
|
|
}
|
|
|
|
|
|
- public List<String> getNumberWithChildren(String number) {
|
|
|
- Set<String> result = new HashSet<>();
|
|
|
- Set<String> visited = new HashSet<>(); // 用于跟踪已访问过的节点
|
|
|
-
|
|
|
- processNumberWithChildren(number, result, visited); // 调用辅助方法处理节点及其子节点
|
|
|
-
|
|
|
- return new ArrayList<>(result);
|
|
|
- }
|
|
|
-
|
|
|
- private void processNumberWithChildren(String number, Set<String> result, Set<String> visited) {
|
|
|
- if (!visited.contains(number)) { // 避免重复处理节点
|
|
|
- visited.add(number);
|
|
|
- List<String> children = locationMapper.selectNumberByFather(number); // 调用mapper接口方法查询直接子节点
|
|
|
-
|
|
|
- // 递归处理每个子节点
|
|
|
- for (String child : children) {
|
|
|
- result.add(child);
|
|
|
- processNumberWithChildren(child, result, visited);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
/**
|
|
|
* 新增资产信息
|