|
|
@ -3,6 +3,7 @@ package com.ruoyi.web.controller.system.property;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.utils.uuid.Seq;
|
|
|
|
import com.ruoyi.common.utils.uuid.Seq;
|
|
|
|
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
@ -21,6 +22,8 @@ import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 涉密网络设备Controller
|
|
|
|
* 涉密网络设备Controller
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -36,6 +39,9 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
@Autowired
|
|
|
|
@Autowired
|
|
|
|
private ITdPropertyNetService tdPropertyNetService;
|
|
|
|
private ITdPropertyNetService tdPropertyNetService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
private SysAreaManager sysAreaManager;
|
|
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:network:view")
|
|
|
|
@RequiresPermissions("system:network:view")
|
|
|
|
@GetMapping()
|
|
|
|
@GetMapping()
|
|
|
|
public String network()
|
|
|
|
public String network()
|
|
|
@ -66,6 +72,10 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
public AjaxResult export(TdPropertyNet tdPropertyNet)
|
|
|
|
public AjaxResult export(TdPropertyNet tdPropertyNet)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
List<TdPropertyNet> list = tdPropertyNetService.selectTdPropertyNetList(tdPropertyNet);
|
|
|
|
List<TdPropertyNet> list = tdPropertyNetService.selectTdPropertyNetList(tdPropertyNet);
|
|
|
|
|
|
|
|
list.forEach(tdPropertyNet1 -> {
|
|
|
|
|
|
|
|
tdPropertyNet1.setFramework(sysAreaManager.getAreaName(tdPropertyNet1.getFramework()));
|
|
|
|
|
|
|
|
tdPropertyNet1.setArea(sysAreaManager.getAreaName(tdPropertyNet1.getArea()));
|
|
|
|
|
|
|
|
});
|
|
|
|
ExcelUtil<TdPropertyNet> util = new ExcelUtil<TdPropertyNet>(TdPropertyNet.class);
|
|
|
|
ExcelUtil<TdPropertyNet> util = new ExcelUtil<TdPropertyNet>(TdPropertyNet.class);
|
|
|
|
return util.exportExcel(list, "涉密网络设备数据");
|
|
|
|
return util.exportExcel(list, "涉密网络设备数据");
|
|
|
|
}
|
|
|
|
}
|
|
|
|