|
|
|
@ -2,7 +2,9 @@ package com.ruoyi.web.controller.system.property;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.ruoyi.common.utils.uuid.Seq;
|
|
|
|
|
import com.ruoyi.system.service.ITdPropertyNetinfoService;
|
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
@ -32,20 +34,21 @@ import javax.annotation.Resource;
|
|
|
|
|
*/
|
|
|
|
|
@Controller
|
|
|
|
|
@RequestMapping("/system/network")
|
|
|
|
|
public class TdPropertyNetController extends BaseController
|
|
|
|
|
{
|
|
|
|
|
public class TdPropertyNetController extends BaseController {
|
|
|
|
|
private String prefix = "system/network/network";
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private ITdPropertyNetService tdPropertyNetService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private ITdPropertyNetinfoService tdPropertyNetinfoService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private SysAreaManager sysAreaManager;
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:network:view")
|
|
|
|
|
@GetMapping()
|
|
|
|
|
public String network()
|
|
|
|
|
{
|
|
|
|
|
public String network() {
|
|
|
|
|
return prefix + "/network";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -55,8 +58,7 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
@RequiresPermissions("system:network:list")
|
|
|
|
|
@PostMapping("/list")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public TableDataInfo list(TdPropertyNet tdPropertyNet)
|
|
|
|
|
{
|
|
|
|
|
public TableDataInfo list(TdPropertyNet tdPropertyNet) {
|
|
|
|
|
startPage();
|
|
|
|
|
List<TdPropertyNet> list = tdPropertyNetService.selectTdPropertyNetList(tdPropertyNet);
|
|
|
|
|
return getDataTable(list);
|
|
|
|
@ -69,8 +71,7 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
@Log(title = "涉密网络设备", businessType = BusinessType.EXPORT)
|
|
|
|
|
@PostMapping("/export")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult export(TdPropertyNet tdPropertyNet)
|
|
|
|
|
{
|
|
|
|
|
public AjaxResult export(TdPropertyNet tdPropertyNet) {
|
|
|
|
|
List<TdPropertyNet> list = tdPropertyNetService.selectTdPropertyNetList(tdPropertyNet);
|
|
|
|
|
list.forEach(tdPropertyNet1 -> {
|
|
|
|
|
tdPropertyNet1.setFramework(sysAreaManager.getAreaName(tdPropertyNet1.getFramework()));
|
|
|
|
@ -84,9 +85,8 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
* 新增涉密网络设备
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/add")
|
|
|
|
|
public String add(ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
mmap.put("sysuser",getSysUser());
|
|
|
|
|
public String add(ModelMap mmap) {
|
|
|
|
|
mmap.put("sysuser", getSysUser());
|
|
|
|
|
return prefix + "/add";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -97,9 +97,8 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
@Log(title = "涉密网络设备", businessType = BusinessType.INSERT)
|
|
|
|
|
@PostMapping("/add")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult addSave(TdPropertyNet tdPropertyNet)
|
|
|
|
|
{
|
|
|
|
|
tdPropertyNet.setNetId("Net_"+ Seq.getId(Seq.commSeqType));
|
|
|
|
|
public AjaxResult addSave(TdPropertyNet tdPropertyNet) {
|
|
|
|
|
tdPropertyNet.setNetId("Net_" + Seq.getId(Seq.commSeqType));
|
|
|
|
|
return toAjax(tdPropertyNetService.insertTdPropertyNet(tdPropertyNet));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -108,8 +107,7 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:network:edit")
|
|
|
|
|
@GetMapping("/edit/{netId}")
|
|
|
|
|
public String edit(@PathVariable("netId") String netId, ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
public String edit(@PathVariable("netId") String netId, ModelMap mmap) {
|
|
|
|
|
TdPropertyNet tdPropertyNet = tdPropertyNetService.selectTdPropertyNetByNetId(netId);
|
|
|
|
|
mmap.put("tdPropertyNet", tdPropertyNet);
|
|
|
|
|
return prefix + "/edit";
|
|
|
|
@ -122,8 +120,7 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
@Log(title = "涉密网络设备", businessType = BusinessType.UPDATE)
|
|
|
|
|
@PostMapping("/edit")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult editSave(TdPropertyNet tdPropertyNet)
|
|
|
|
|
{
|
|
|
|
|
public AjaxResult editSave(TdPropertyNet tdPropertyNet) {
|
|
|
|
|
return toAjax(tdPropertyNetService.updateTdPropertyNet(tdPropertyNet));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -132,10 +129,12 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:network:remove")
|
|
|
|
|
@Log(title = "涉密网络设备", businessType = BusinessType.DELETE)
|
|
|
|
|
@PostMapping( "/remove")
|
|
|
|
|
@PostMapping("/remove")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult remove(String ids)
|
|
|
|
|
{
|
|
|
|
|
public AjaxResult remove(String ids) {
|
|
|
|
|
QueryWrapper queryWrapper= new QueryWrapper();
|
|
|
|
|
queryWrapper.in("net_id",ids.split(","));
|
|
|
|
|
tdPropertyNetinfoService.remove(queryWrapper);
|
|
|
|
|
return toAjax(tdPropertyNetService.deleteTdPropertyNetByNetIds(ids));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -144,9 +143,8 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:network:list")
|
|
|
|
|
@GetMapping("/detail/{netId}")
|
|
|
|
|
public String detail(@PathVariable("netId") String netId, ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
mmap.put("netId",netId);
|
|
|
|
|
public String detail(@PathVariable("netId") String netId, ModelMap mmap) {
|
|
|
|
|
mmap.put("netId", netId);
|
|
|
|
|
return "system/network/netinfo/netinfo";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|