From d2ab48e75c761bc95a91435b83ad1d49beee942f Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Thu, 8 Aug 2024 15:07:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=89=E5=AF=86=E7=BD=91=E7=BB=9C=E5=88=A0?= =?UTF-8?q?=E9=99=A4bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/property/TdPropertyNetController.java | 8 ++++++++ .../com/ruoyi/system/mapper/TdPropertyNetinfoMapper.java | 4 +++- .../ruoyi/system/service/ITdPropertyNetinfoService.java | 5 ++++- .../system/service/impl/TdPropertyNetinfoServiceImpl.java | 6 +++++- 4 files changed, 20 insertions(+), 3 deletions(-) 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 25c068d..ee529bb 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 @@ -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; @@ -39,6 +41,9 @@ public class TdPropertyNetController extends BaseController @Autowired private ITdPropertyNetService tdPropertyNetService; + @Autowired + private ITdPropertyNetinfoService tdPropertyNetinfoService; + @Resource private SysAreaManager sysAreaManager; @@ -136,6 +141,9 @@ public class TdPropertyNetController extends BaseController @ResponseBody public AjaxResult remove(String ids) { + QueryWrapper queryWrapper= new QueryWrapper(); + queryWrapper.in("net_id",ids.split(",")); + tdPropertyNetinfoService.remove(queryWrapper); return toAjax(tdPropertyNetService.deleteTdPropertyNetByNetIds(ids)); } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetinfoMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetinfoMapper.java index 9c66530..4de69ae 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetinfoMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetinfoMapper.java @@ -1,6 +1,8 @@ package com.ruoyi.system.mapper; import java.util.List; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.system.domain.TdPropertyNetinfo; /** @@ -9,7 +11,7 @@ import com.ruoyi.system.domain.TdPropertyNetinfo; * @author ruoyi * @date 2024-05-09 */ -public interface TdPropertyNetinfoMapper +public interface TdPropertyNetinfoMapper extends BaseMapper { /** * 查询涉密网络登记 diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetinfoService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetinfoService.java index 075e8fa..f33cd51 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetinfoService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetinfoService.java @@ -1,6 +1,9 @@ package com.ruoyi.system.service; import java.util.List; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.ruoyi.system.domain.TdPropertyInfo; import com.ruoyi.system.domain.TdPropertyNetinfo; /** @@ -9,7 +12,7 @@ import com.ruoyi.system.domain.TdPropertyNetinfo; * @author ruoyi * @date 2024-05-09 */ -public interface ITdPropertyNetinfoService +public interface ITdPropertyNetinfoService extends IService { /** * 查询涉密网络登记 diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetinfoServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetinfoServiceImpl.java index 4524a66..232af41 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetinfoServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetinfoServiceImpl.java @@ -1,6 +1,10 @@ package com.ruoyi.system.service.impl; import java.util.List; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.ruoyi.system.domain.TdPropertyInfo; +import com.ruoyi.system.mapper.TdPropertyInfoMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.system.mapper.TdPropertyNetinfoMapper; @@ -15,7 +19,7 @@ import com.ruoyi.common.core.text.Convert; * @date 2024-05-09 */ @Service -public class TdPropertyNetinfoServiceImpl implements ITdPropertyNetinfoService +public class TdPropertyNetinfoServiceImpl extends ServiceImpl implements ITdPropertyNetinfoService { @Autowired private TdPropertyNetinfoMapper tdPropertyNetinfoMapper;