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;