|
|
@ -272,6 +272,7 @@ public class AssetTaskController extends BaseController {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 小程序资产任务审核详情信息
|
|
|
|
* 小程序资产任务审核详情信息
|
|
|
|
*
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param taskId 任务id
|
|
|
|
* @param assetId 资产id
|
|
|
|
* @param assetId 资产id
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -282,7 +283,6 @@ public class AssetTaskController extends BaseController {
|
|
|
|
return AjaxResult.success(assetTaskService.minitaskSh(taskId, assetId));
|
|
|
|
return AjaxResult.success(assetTaskService.minitaskSh(taskId, assetId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 公众号资产任务审核详情信息
|
|
|
|
* 公众号资产任务审核详情信息
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -312,7 +312,6 @@ public class AssetTaskController extends BaseController {
|
|
|
|
return AjaxResult.success(assetTaskService.emailtaskSh(taskId, assetId));
|
|
|
|
return AjaxResult.success(assetTaskService.emailtaskSh(taskId, assetId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 移动应用程序资产任务审核详情信息
|
|
|
|
* 移动应用程序资产任务审核详情信息
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -327,7 +326,6 @@ public class AssetTaskController extends BaseController {
|
|
|
|
return AjaxResult.success(assetTaskService.apptaskSh(taskId, assetId));
|
|
|
|
return AjaxResult.success(assetTaskService.apptaskSh(taskId, assetId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 资产核查信息
|
|
|
|
* 资产核查信息
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -561,16 +559,20 @@ public class AssetTaskController extends BaseController {
|
|
|
|
StringBuilder a = new StringBuilder();
|
|
|
|
StringBuilder a = new StringBuilder();
|
|
|
|
if (CollectionUtil.isNotEmpty(assetCurrent.getGlymList())) {
|
|
|
|
if (CollectionUtil.isNotEmpty(assetCurrent.getGlymList())) {
|
|
|
|
assetCurrent.getGlymList().forEach(x -> {
|
|
|
|
assetCurrent.getGlymList().forEach(x -> {
|
|
|
|
a.append(x);
|
|
|
|
if (!Objects.equals(x.getKey(), "") && x.getKey() != null) {
|
|
|
|
a.append(",");
|
|
|
|
a.append(x.getKey());
|
|
|
|
|
|
|
|
a.append(",");
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assetCurrent.setGlym(a.toString());
|
|
|
|
assetCurrent.setGlym(a.toString());
|
|
|
|
StringBuilder b = new StringBuilder();
|
|
|
|
StringBuilder b = new StringBuilder();
|
|
|
|
if (CollectionUtil.isNotEmpty(assetCurrent.getGlIpList())) {
|
|
|
|
if (assetCurrent.getGlIpList() != null) {
|
|
|
|
assetCurrent.getGlymList().forEach(x -> {
|
|
|
|
assetCurrent.getGlIpList().forEach(x -> {
|
|
|
|
b.append(x);
|
|
|
|
if (!Objects.equals(x.getKey(), "") && x.getKey() != null) {
|
|
|
|
b.append(",");
|
|
|
|
b.append(x.getKey());
|
|
|
|
|
|
|
|
b.append(",");
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assetCurrent.setGlIp(b.toString());
|
|
|
|
assetCurrent.setGlIp(b.toString());
|
|
|
|