|
|
|
@ -1,6 +1,9 @@
|
|
|
|
|
package com.ruoyi.tc.controller;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
|
|
import com.alibaba.fastjson2.JSONArray;
|
|
|
|
|
import com.alibaba.fastjson2.JSONObject;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
|
@ -28,10 +31,7 @@ import javax.validation.Valid;
|
|
|
|
|
import java.text.ParseException;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
import java.time.ZoneId;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
import java.util.Optional;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -384,10 +384,35 @@ public class AssetTaskController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlym(a.toString());
|
|
|
|
|
StringBuilder b = new StringBuilder();
|
|
|
|
|
List<Acomma> a2 = new ArrayList<>();
|
|
|
|
|
if (assetCurrent.getGlIpList() != null) {
|
|
|
|
|
assetCurrent.setGlIp(assetCurrent.getGlIpList().toString());
|
|
|
|
|
if (assetCurrent.getGlIp() != null && !assetCurrent.getGlIp().isEmpty()) {
|
|
|
|
|
for (Object o : JSONArray.parseArray(assetCurrent.getGlIp())) {
|
|
|
|
|
Acomma acomma = new Acomma();
|
|
|
|
|
JSONObject jsonObject = JSONObject.parseObject(o.toString());
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("key"))) {
|
|
|
|
|
acomma.setKey(jsonObject.get("key").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setKey("");
|
|
|
|
|
}
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("ipType"))) {
|
|
|
|
|
acomma.setIpType(jsonObject.get("ipType").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setIpType("");
|
|
|
|
|
}
|
|
|
|
|
Object portValue = jsonObject.get("port");
|
|
|
|
|
if (portValue != null && !portValue.toString().isEmpty()) {
|
|
|
|
|
acomma.setPort(portValue.toString());
|
|
|
|
|
}else{
|
|
|
|
|
acomma.setPort("");
|
|
|
|
|
}
|
|
|
|
|
a2.add(acomma);
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlIpList(a2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
assetCurrent.setGlIp("");
|
|
|
|
|
assetCurrent.setGlIpList(new ArrayList<>());
|
|
|
|
|
}
|
|
|
|
|
// assetCurrent.setCurrentId(null);
|
|
|
|
|
BeanUtils.copyProperties(assetCurrent, ac);
|
|
|
|
@ -566,12 +591,36 @@ public class AssetTaskController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlym(a.toString());
|
|
|
|
|
StringBuilder b = new StringBuilder();
|
|
|
|
|
List<Acomma> a2 = new ArrayList<>();
|
|
|
|
|
if (assetCurrent.getGlIpList() != null) {
|
|
|
|
|
assetCurrent.setGlIp(assetCurrent.getGlIpList().toString());
|
|
|
|
|
if (assetCurrent.getGlIp() != null && !assetCurrent.getGlIp().isEmpty()) {
|
|
|
|
|
for (Object o : JSONArray.parseArray(assetCurrent.getGlIp())) {
|
|
|
|
|
Acomma acomma = new Acomma();
|
|
|
|
|
JSONObject jsonObject = JSONObject.parseObject(o.toString());
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("key"))) {
|
|
|
|
|
acomma.setKey(jsonObject.get("key").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setKey("");
|
|
|
|
|
}
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("ipType"))) {
|
|
|
|
|
acomma.setIpType(jsonObject.get("ipType").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setIpType("");
|
|
|
|
|
}
|
|
|
|
|
Object portValue = jsonObject.get("port");
|
|
|
|
|
if (portValue != null && !portValue.toString().isEmpty()) {
|
|
|
|
|
acomma.setPort(portValue.toString());
|
|
|
|
|
}else{
|
|
|
|
|
acomma.setPort("");
|
|
|
|
|
}
|
|
|
|
|
a2.add(acomma);
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlIpList(a2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
assetCurrent.setGlIp("");
|
|
|
|
|
assetCurrent.setGlIpList(new ArrayList<>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assetCurrent.setStatus(1);
|
|
|
|
|
Date date = new Date();
|
|
|
|
|
assetCurrent.setUpdateTime(date);
|
|
|
|
|