|
|
@ -2,7 +2,9 @@ package com.ruoyi.web.controller.system.property;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
import com.ruoyi.common.utils.uuid.Seq;
|
|
|
|
import com.ruoyi.common.utils.uuid.Seq;
|
|
|
|
|
|
|
|
import com.ruoyi.system.service.ITdPropertyNetinfoService;
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
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;
|
|
|
@ -39,6 +41,9 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
@Autowired
|
|
|
|
@Autowired
|
|
|
|
private ITdPropertyNetService tdPropertyNetService;
|
|
|
|
private ITdPropertyNetService tdPropertyNetService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
|
|
|
private ITdPropertyNetinfoService tdPropertyNetinfoService;
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
private SysAreaManager sysAreaManager;
|
|
|
|
private SysAreaManager sysAreaManager;
|
|
|
|
|
|
|
|
|
|
|
@ -136,6 +141,9 @@ public class TdPropertyNetController extends BaseController
|
|
|
|
@ResponseBody
|
|
|
|
@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));
|
|
|
|
return toAjax(tdPropertyNetService.deleteTdPropertyNetByNetIds(ids));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|