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