parent
46c9b810c0
commit
f213391e0c
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcCommentator;
|
||||
import com.ruoyi.zongzhi.service.ITcCommentatorService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网评员Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/commentator")
|
||||
@Api(tags = " 网评员")
|
||||
public class TcCommentatorController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcCommentatorService tcCommentatorService;
|
||||
|
||||
/**
|
||||
* 查询网评员列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:commentator:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcCommentator tcCommentator)
|
||||
{
|
||||
startPage();
|
||||
List<TcCommentator> list = tcCommentatorService.selectTcCommentatorList(tcCommentator);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网评员列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:commentator:export')")
|
||||
@Log(title = "网评员", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcCommentator tcCommentator)
|
||||
{
|
||||
List<TcCommentator> list = tcCommentatorService.selectTcCommentatorList(tcCommentator);
|
||||
ExcelUtil<TcCommentator> util = new ExcelUtil<TcCommentator>(TcCommentator.class);
|
||||
util.exportExcel(response, list, "网评员数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网评员详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:commentator:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcCommentatorService.selectTcCommentatorById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网评员
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:commentator:add')")
|
||||
@Log(title = "网评员", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcCommentator tcCommentator)
|
||||
{
|
||||
return toAjax(tcCommentatorService.insertTcCommentator(tcCommentator));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网评员
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:commentator:edit')")
|
||||
@Log(title = "网评员", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcCommentator tcCommentator)
|
||||
{
|
||||
return toAjax(tcCommentatorService.updateTcCommentator(tcCommentator));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网评员
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:commentator:remove')")
|
||||
@Log(title = "网评员", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcCommentatorService.deleteTcCommentatorByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcDataSource;
|
||||
import com.ruoyi.zongzhi.service.ITcDataSourceService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 数据来源Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/source")
|
||||
@Api(tags = " 数据来源")
|
||||
public class TcDataSourceController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcDataSourceService tcDataSourceService;
|
||||
|
||||
/**
|
||||
* 查询数据来源列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:source:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcDataSource tcDataSource)
|
||||
{
|
||||
startPage();
|
||||
List<TcDataSource> list = tcDataSourceService.selectTcDataSourceList(tcDataSource);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出数据来源列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:source:export')")
|
||||
@Log(title = "数据来源", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcDataSource tcDataSource)
|
||||
{
|
||||
List<TcDataSource> list = tcDataSourceService.selectTcDataSourceList(tcDataSource);
|
||||
ExcelUtil<TcDataSource> util = new ExcelUtil<TcDataSource>(TcDataSource.class);
|
||||
util.exportExcel(response, list, "数据来源数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取数据来源详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:source:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcDataSourceService.selectTcDataSourceById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增数据来源
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:source:add')")
|
||||
@Log(title = "数据来源", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcDataSource tcDataSource)
|
||||
{
|
||||
return toAjax(tcDataSourceService.insertTcDataSource(tcDataSource));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改数据来源
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:source:edit')")
|
||||
@Log(title = "数据来源", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcDataSource tcDataSource)
|
||||
{
|
||||
return toAjax(tcDataSourceService.updateTcDataSource(tcDataSource));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除数据来源
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:source:remove')")
|
||||
@Log(title = "数据来源", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcDataSourceService.deleteTcDataSourceByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcDengbaoSystem;
|
||||
import com.ruoyi.zongzhi.service.ITcDengbaoSystemService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 等保系统Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/system")
|
||||
@Api(tags = " 等保系统")
|
||||
public class TcDengbaoSystemController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcDengbaoSystemService tcDengbaoSystemService;
|
||||
|
||||
/**
|
||||
* 查询等保系统列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:system:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcDengbaoSystem tcDengbaoSystem)
|
||||
{
|
||||
startPage();
|
||||
List<TcDengbaoSystem> list = tcDengbaoSystemService.selectTcDengbaoSystemList(tcDengbaoSystem);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出等保系统列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:system:export')")
|
||||
@Log(title = "等保系统", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcDengbaoSystem tcDengbaoSystem)
|
||||
{
|
||||
List<TcDengbaoSystem> list = tcDengbaoSystemService.selectTcDengbaoSystemList(tcDengbaoSystem);
|
||||
ExcelUtil<TcDengbaoSystem> util = new ExcelUtil<TcDengbaoSystem>(TcDengbaoSystem.class);
|
||||
util.exportExcel(response, list, "等保系统数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取等保系统详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:system:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcDengbaoSystemService.selectTcDengbaoSystemById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增等保系统
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:system:add')")
|
||||
@Log(title = "等保系统", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcDengbaoSystem tcDengbaoSystem)
|
||||
{
|
||||
return toAjax(tcDengbaoSystemService.insertTcDengbaoSystem(tcDengbaoSystem));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改等保系统
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:system:edit')")
|
||||
@Log(title = "等保系统", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcDengbaoSystem tcDengbaoSystem)
|
||||
{
|
||||
return toAjax(tcDengbaoSystemService.updateTcDengbaoSystem(tcDengbaoSystem));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除等保系统
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:system:remove')")
|
||||
@Log(title = "等保系统", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcDengbaoSystemService.deleteTcDengbaoSystemByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcDengbaoUnit;
|
||||
import com.ruoyi.zongzhi.service.ITcDengbaoUnitService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 等保单位Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/dengbaounit")
|
||||
@Api(tags = " 等保单位")
|
||||
public class TcDengbaoUnitController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcDengbaoUnitService tcDengbaoUnitService;
|
||||
|
||||
/**
|
||||
* 查询等保单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcDengbaoUnit tcDengbaoUnit)
|
||||
{
|
||||
startPage();
|
||||
List<TcDengbaoUnit> list = tcDengbaoUnitService.selectTcDengbaoUnitList(tcDengbaoUnit);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出等保单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:export')")
|
||||
@Log(title = "等保单位", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcDengbaoUnit tcDengbaoUnit)
|
||||
{
|
||||
List<TcDengbaoUnit> list = tcDengbaoUnitService.selectTcDengbaoUnitList(tcDengbaoUnit);
|
||||
ExcelUtil<TcDengbaoUnit> util = new ExcelUtil<TcDengbaoUnit>(TcDengbaoUnit.class);
|
||||
util.exportExcel(response, list, "等保单位数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取等保单位详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcDengbaoUnitService.selectTcDengbaoUnitById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增等保单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:add')")
|
||||
@Log(title = "等保单位", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcDengbaoUnit tcDengbaoUnit)
|
||||
{
|
||||
return toAjax(tcDengbaoUnitService.insertTcDengbaoUnit(tcDengbaoUnit));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改等保单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:edit')")
|
||||
@Log(title = "等保单位", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcDengbaoUnit tcDengbaoUnit)
|
||||
{
|
||||
return toAjax(tcDengbaoUnitService.updateTcDengbaoUnit(tcDengbaoUnit));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除等保单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:remove')")
|
||||
@Log(title = "等保单位", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcDengbaoUnitService.deleteTcDengbaoUnitByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcExtworkSafetyadmin;
|
||||
import com.ruoyi.zongzhi.service.ITcExtworkSafetyadminService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络安全官Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/safetyadmin")
|
||||
@Api(tags = "网络安全官")
|
||||
public class TcExtworkSafetyadminController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcExtworkSafetyadminService tcExtworkSafetyadminService;
|
||||
|
||||
/**
|
||||
* 查询网络安全官列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:safetyadmin:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcExtworkSafetyadmin tcExtworkSafetyadmin)
|
||||
{
|
||||
startPage();
|
||||
List<TcExtworkSafetyadmin> list = tcExtworkSafetyadminService.selectTcExtworkSafetyadminList(tcExtworkSafetyadmin);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络安全官列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:safetyadmin:export')")
|
||||
@Log(title = "网络安全官", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcExtworkSafetyadmin tcExtworkSafetyadmin)
|
||||
{
|
||||
List<TcExtworkSafetyadmin> list = tcExtworkSafetyadminService.selectTcExtworkSafetyadminList(tcExtworkSafetyadmin);
|
||||
ExcelUtil<TcExtworkSafetyadmin> util = new ExcelUtil<TcExtworkSafetyadmin>(TcExtworkSafetyadmin.class);
|
||||
util.exportExcel(response, list, "网络安全官数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络安全官详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:safetyadmin:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcExtworkSafetyadminService.selectTcExtworkSafetyadminById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络安全官
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:safetyadmin:add')")
|
||||
@Log(title = "网络安全官", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcExtworkSafetyadmin tcExtworkSafetyadmin)
|
||||
{
|
||||
return toAjax(tcExtworkSafetyadminService.insertTcExtworkSafetyadmin(tcExtworkSafetyadmin));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络安全官
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:safetyadmin:edit')")
|
||||
@Log(title = "网络安全官", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcExtworkSafetyadmin tcExtworkSafetyadmin)
|
||||
{
|
||||
return toAjax(tcExtworkSafetyadminService.updateTcExtworkSafetyadmin(tcExtworkSafetyadmin));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络安全官
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:safetyadmin:remove')")
|
||||
@Log(title = "网络安全官", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcExtworkSafetyadminService.deleteTcExtworkSafetyadminByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcGovernmentWeb;
|
||||
import com.ruoyi.zongzhi.service.ITcGovernmentWebService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 政府网站Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/web")
|
||||
@Api(tags = " 政府网站")
|
||||
public class TcGovernmentWebController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcGovernmentWebService tcGovernmentWebService;
|
||||
|
||||
/**
|
||||
* 查询政府网站列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:web:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcGovernmentWeb tcGovernmentWeb)
|
||||
{
|
||||
startPage();
|
||||
List<TcGovernmentWeb> list = tcGovernmentWebService.selectTcGovernmentWebList(tcGovernmentWeb);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出政府网站列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:web:export')")
|
||||
@Log(title = "政府网站", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcGovernmentWeb tcGovernmentWeb)
|
||||
{
|
||||
List<TcGovernmentWeb> list = tcGovernmentWebService.selectTcGovernmentWebList(tcGovernmentWeb);
|
||||
ExcelUtil<TcGovernmentWeb> util = new ExcelUtil<TcGovernmentWeb>(TcGovernmentWeb.class);
|
||||
util.exportExcel(response, list, "政府网站数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取政府网站详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:web:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcGovernmentWebService.selectTcGovernmentWebById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增政府网站
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:web:add')")
|
||||
@Log(title = "政府网站", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcGovernmentWeb tcGovernmentWeb)
|
||||
{
|
||||
return toAjax(tcGovernmentWebService.insertTcGovernmentWeb(tcGovernmentWeb));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改政府网站
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:web:edit')")
|
||||
@Log(title = "政府网站", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcGovernmentWeb tcGovernmentWeb)
|
||||
{
|
||||
return toAjax(tcGovernmentWebService.updateTcGovernmentWeb(tcGovernmentWeb));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除政府网站
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:web:remove')")
|
||||
@Log(title = "政府网站", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcGovernmentWebService.deleteTcGovernmentWebByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcIdcUnit;
|
||||
import com.ruoyi.zongzhi.service.ITcIdcUnitService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* IDC单位Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/unit")
|
||||
@Api(tags = " IDC单位")
|
||||
public class TcIdcUnitController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcIdcUnitService tcIdcUnitService;
|
||||
|
||||
/**
|
||||
* 查询IDC单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcIdcUnit tcIdcUnit)
|
||||
{
|
||||
startPage();
|
||||
List<TcIdcUnit> list = tcIdcUnitService.selectTcIdcUnitList(tcIdcUnit);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出IDC单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:export')")
|
||||
@Log(title = "IDC单位", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcIdcUnit tcIdcUnit)
|
||||
{
|
||||
List<TcIdcUnit> list = tcIdcUnitService.selectTcIdcUnitList(tcIdcUnit);
|
||||
ExcelUtil<TcIdcUnit> util = new ExcelUtil<TcIdcUnit>(TcIdcUnit.class);
|
||||
util.exportExcel(response, list, "IDC单位数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取IDC单位详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcIdcUnitService.selectTcIdcUnitById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增IDC单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:add')")
|
||||
@Log(title = "IDC单位", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcIdcUnit tcIdcUnit)
|
||||
{
|
||||
return toAjax(tcIdcUnitService.insertTcIdcUnit(tcIdcUnit));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改IDC单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:edit')")
|
||||
@Log(title = "IDC单位", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcIdcUnit tcIdcUnit)
|
||||
{
|
||||
return toAjax(tcIdcUnitService.updateTcIdcUnit(tcIdcUnit));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除IDC单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:remove')")
|
||||
@Log(title = "IDC单位", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcIdcUnitService.deleteTcIdcUnitByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkArticle;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkArticleService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络文章Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/article")
|
||||
@Api(tags = " 网络文章")
|
||||
public class TcNetworkArticleController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkArticleService tcNetworkArticleService;
|
||||
|
||||
/**
|
||||
* 查询网络文章列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:article:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkArticle tcNetworkArticle)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkArticle> list = tcNetworkArticleService.selectTcNetworkArticleList(tcNetworkArticle);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络文章列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:article:export')")
|
||||
@Log(title = "网络文章", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkArticle tcNetworkArticle)
|
||||
{
|
||||
List<TcNetworkArticle> list = tcNetworkArticleService.selectTcNetworkArticleList(tcNetworkArticle);
|
||||
ExcelUtil<TcNetworkArticle> util = new ExcelUtil<TcNetworkArticle>(TcNetworkArticle.class);
|
||||
util.exportExcel(response, list, "网络文章数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络文章详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:article:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkArticleService.selectTcNetworkArticleById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络文章
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:article:add')")
|
||||
@Log(title = "网络文章", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkArticle tcNetworkArticle)
|
||||
{
|
||||
return toAjax(tcNetworkArticleService.insertTcNetworkArticle(tcNetworkArticle));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络文章
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:article:edit')")
|
||||
@Log(title = "网络文章", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkArticle tcNetworkArticle)
|
||||
{
|
||||
return toAjax(tcNetworkArticleService.updateTcNetworkArticle(tcNetworkArticle));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络文章
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:article:remove')")
|
||||
@Log(title = "网络文章", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkArticleService.deleteTcNetworkArticleByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkEvaluate;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkEvaluateService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网评Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/evaluate")
|
||||
@Api(tags = " 网评")
|
||||
public class TcNetworkEvaluateController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkEvaluateService tcNetworkEvaluateService;
|
||||
|
||||
/**
|
||||
* 查询网评列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:evaluate:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkEvaluate tcNetworkEvaluate)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkEvaluate> list = tcNetworkEvaluateService.selectTcNetworkEvaluateList(tcNetworkEvaluate);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网评列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:evaluate:export')")
|
||||
@Log(title = "网评", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkEvaluate tcNetworkEvaluate)
|
||||
{
|
||||
List<TcNetworkEvaluate> list = tcNetworkEvaluateService.selectTcNetworkEvaluateList(tcNetworkEvaluate);
|
||||
ExcelUtil<TcNetworkEvaluate> util = new ExcelUtil<TcNetworkEvaluate>(TcNetworkEvaluate.class);
|
||||
util.exportExcel(response, list, "网评数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网评详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:evaluate:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkEvaluateService.selectTcNetworkEvaluateById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网评
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:evaluate:add')")
|
||||
@Log(title = "网评", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkEvaluate tcNetworkEvaluate)
|
||||
{
|
||||
return toAjax(tcNetworkEvaluateService.insertTcNetworkEvaluate(tcNetworkEvaluate));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网评
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:evaluate:edit')")
|
||||
@Log(title = "网评", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkEvaluate tcNetworkEvaluate)
|
||||
{
|
||||
return toAjax(tcNetworkEvaluateService.updateTcNetworkEvaluate(tcNetworkEvaluate));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网评
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:evaluate:remove')")
|
||||
@Log(title = "网评", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkEvaluateService.deleteTcNetworkEvaluateByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkMqPrincipal;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkMqPrincipalService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络民情责任人Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/principal")
|
||||
@Api(tags = " 网络民情责任人")
|
||||
public class TcNetworkMqPrincipalController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkMqPrincipalService tcNetworkMqPrincipalService;
|
||||
|
||||
/**
|
||||
* 查询网络民情责任人列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:principal:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkMqPrincipal tcNetworkMqPrincipal)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkMqPrincipal> list = tcNetworkMqPrincipalService.selectTcNetworkMqPrincipalList(tcNetworkMqPrincipal);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络民情责任人列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:principal:export')")
|
||||
@Log(title = "网络民情责任人", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkMqPrincipal tcNetworkMqPrincipal)
|
||||
{
|
||||
List<TcNetworkMqPrincipal> list = tcNetworkMqPrincipalService.selectTcNetworkMqPrincipalList(tcNetworkMqPrincipal);
|
||||
ExcelUtil<TcNetworkMqPrincipal> util = new ExcelUtil<TcNetworkMqPrincipal>(TcNetworkMqPrincipal.class);
|
||||
util.exportExcel(response, list, "网络民情责任人数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络民情责任人详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:principal:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkMqPrincipalService.selectTcNetworkMqPrincipalById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络民情责任人
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:principal:add')")
|
||||
@Log(title = "网络民情责任人", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkMqPrincipal tcNetworkMqPrincipal)
|
||||
{
|
||||
return toAjax(tcNetworkMqPrincipalService.insertTcNetworkMqPrincipal(tcNetworkMqPrincipal));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络民情责任人
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:principal:edit')")
|
||||
@Log(title = "网络民情责任人", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkMqPrincipal tcNetworkMqPrincipal)
|
||||
{
|
||||
return toAjax(tcNetworkMqPrincipalService.updateTcNetworkMqPrincipal(tcNetworkMqPrincipal));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络民情责任人
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:principal:remove')")
|
||||
@Log(title = "网络民情责任人", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkMqPrincipalService.deleteTcNetworkMqPrincipalByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkPingtai;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkPingtaiService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络平台Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/pingtai")
|
||||
@Api(tags = " 网络平台")
|
||||
public class TcNetworkPingtaiController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkPingtaiService tcNetworkPingtaiService;
|
||||
|
||||
/**
|
||||
* 查询网络平台列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:pingtai:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkPingtai tcNetworkPingtai)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkPingtai> list = tcNetworkPingtaiService.selectTcNetworkPingtaiList(tcNetworkPingtai);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络平台列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:pingtai:export')")
|
||||
@Log(title = "网络平台", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkPingtai tcNetworkPingtai)
|
||||
{
|
||||
List<TcNetworkPingtai> list = tcNetworkPingtaiService.selectTcNetworkPingtaiList(tcNetworkPingtai);
|
||||
ExcelUtil<TcNetworkPingtai> util = new ExcelUtil<TcNetworkPingtai>(TcNetworkPingtai.class);
|
||||
util.exportExcel(response, list, "网络平台数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络平台详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:pingtai:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkPingtaiService.selectTcNetworkPingtaiById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络平台
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:pingtai:add')")
|
||||
@Log(title = "网络平台", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkPingtai tcNetworkPingtai)
|
||||
{
|
||||
return toAjax(tcNetworkPingtaiService.insertTcNetworkPingtai(tcNetworkPingtai));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络平台
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:pingtai:edit')")
|
||||
@Log(title = "网络平台", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkPingtai tcNetworkPingtai)
|
||||
{
|
||||
return toAjax(tcNetworkPingtaiService.updateTcNetworkPingtai(tcNetworkPingtai));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络平台
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:pingtai:remove')")
|
||||
@Log(title = "网络平台", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkPingtaiService.deleteTcNetworkPingtaiByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkReport;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkReportService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络举报Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/report")
|
||||
@Api(tags = " 网络举报")
|
||||
public class TcNetworkReportController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkReportService tcNetworkReportService;
|
||||
|
||||
/**
|
||||
* 查询网络举报列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:report:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkReport tcNetworkReport)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkReport> list = tcNetworkReportService.selectTcNetworkReportList(tcNetworkReport);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络举报列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:report:export')")
|
||||
@Log(title = "网络举报", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkReport tcNetworkReport)
|
||||
{
|
||||
List<TcNetworkReport> list = tcNetworkReportService.selectTcNetworkReportList(tcNetworkReport);
|
||||
ExcelUtil<TcNetworkReport> util = new ExcelUtil<TcNetworkReport>(TcNetworkReport.class);
|
||||
util.exportExcel(response, list, "网络举报数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络举报详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:report:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkReportService.selectTcNetworkReportById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络举报
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:report:add')")
|
||||
@Log(title = "网络举报", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkReport tcNetworkReport)
|
||||
{
|
||||
return toAjax(tcNetworkReportService.insertTcNetworkReport(tcNetworkReport));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络举报
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:report:edit')")
|
||||
@Log(title = "网络举报", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkReport tcNetworkReport)
|
||||
{
|
||||
return toAjax(tcNetworkReportService.updateTcNetworkReport(tcNetworkReport));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络举报
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:report:remove')")
|
||||
@Log(title = "网络举报", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkReportService.deleteTcNetworkReportByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkSentiment;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkSentimentService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络舆情Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/sentiment")
|
||||
@Api(tags = " 网络舆情")
|
||||
public class TcNetworkSentimentController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkSentimentService tcNetworkSentimentService;
|
||||
|
||||
/**
|
||||
* 查询网络舆情列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:sentiment:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkSentiment tcNetworkSentiment)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkSentiment> list = tcNetworkSentimentService.selectTcNetworkSentimentList(tcNetworkSentiment);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络舆情列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:sentiment:export')")
|
||||
@Log(title = "网络舆情", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkSentiment tcNetworkSentiment)
|
||||
{
|
||||
List<TcNetworkSentiment> list = tcNetworkSentimentService.selectTcNetworkSentimentList(tcNetworkSentiment);
|
||||
ExcelUtil<TcNetworkSentiment> util = new ExcelUtil<TcNetworkSentiment>(TcNetworkSentiment.class);
|
||||
util.exportExcel(response, list, "网络舆情数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络舆情详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:sentiment:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkSentimentService.selectTcNetworkSentimentById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络舆情
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:sentiment:add')")
|
||||
@Log(title = "网络舆情", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkSentiment tcNetworkSentiment)
|
||||
{
|
||||
return toAjax(tcNetworkSentimentService.insertTcNetworkSentiment(tcNetworkSentiment));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络舆情
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:sentiment:edit')")
|
||||
@Log(title = "网络舆情", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkSentiment tcNetworkSentiment)
|
||||
{
|
||||
return toAjax(tcNetworkSentimentService.updateTcNetworkSentiment(tcNetworkSentiment));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络舆情
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:sentiment:remove')")
|
||||
@Log(title = "网络舆情", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkSentimentService.deleteTcNetworkSentimentByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkSupportUnit;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkSupportUnitService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络安全支持单位Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/supportunit")
|
||||
@Api(tags = " 网络安全支持单位")
|
||||
public class TcNetworkSupportUnitController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkSupportUnitService tcNetworkSupportUnitService;
|
||||
|
||||
/**
|
||||
* 查询网络安全支持单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkSupportUnit tcNetworkSupportUnit)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkSupportUnit> list = tcNetworkSupportUnitService.selectTcNetworkSupportUnitList(tcNetworkSupportUnit);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络安全支持单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:export')")
|
||||
@Log(title = "网络安全支持单位", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkSupportUnit tcNetworkSupportUnit)
|
||||
{
|
||||
List<TcNetworkSupportUnit> list = tcNetworkSupportUnitService.selectTcNetworkSupportUnitList(tcNetworkSupportUnit);
|
||||
ExcelUtil<TcNetworkSupportUnit> util = new ExcelUtil<TcNetworkSupportUnit>(TcNetworkSupportUnit.class);
|
||||
util.exportExcel(response, list, "网络安全支持单位数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络安全支持单位详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkSupportUnitService.selectTcNetworkSupportUnitById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络安全支持单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:add')")
|
||||
@Log(title = "网络安全支持单位", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkSupportUnit tcNetworkSupportUnit)
|
||||
{
|
||||
return toAjax(tcNetworkSupportUnitService.insertTcNetworkSupportUnit(tcNetworkSupportUnit));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络安全支持单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:edit')")
|
||||
@Log(title = "网络安全支持单位", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkSupportUnit tcNetworkSupportUnit)
|
||||
{
|
||||
return toAjax(tcNetworkSupportUnitService.updateTcNetworkSupportUnit(tcNetworkSupportUnit));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络安全支持单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:unit:remove')")
|
||||
@Log(title = "网络安全支持单位", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkSupportUnitService.deleteTcNetworkSupportUnitByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkVolunteer;
|
||||
import com.ruoyi.zongzhi.service.ITcNetworkVolunteerService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 网络文明自愿者Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/volunteer")
|
||||
@Api(tags = " 网络文明自愿者")
|
||||
public class TcNetworkVolunteerController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcNetworkVolunteerService tcNetworkVolunteerService;
|
||||
|
||||
/**
|
||||
* 查询网络文明自愿者列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:volunteer:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcNetworkVolunteer tcNetworkVolunteer)
|
||||
{
|
||||
startPage();
|
||||
List<TcNetworkVolunteer> list = tcNetworkVolunteerService.selectTcNetworkVolunteerList(tcNetworkVolunteer);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出网络文明自愿者列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:volunteer:export')")
|
||||
@Log(title = "网络文明自愿者", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcNetworkVolunteer tcNetworkVolunteer)
|
||||
{
|
||||
List<TcNetworkVolunteer> list = tcNetworkVolunteerService.selectTcNetworkVolunteerList(tcNetworkVolunteer);
|
||||
ExcelUtil<TcNetworkVolunteer> util = new ExcelUtil<TcNetworkVolunteer>(TcNetworkVolunteer.class);
|
||||
util.exportExcel(response, list, "网络文明自愿者数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取网络文明自愿者详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:volunteer:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcNetworkVolunteerService.selectTcNetworkVolunteerById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增网络文明自愿者
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:volunteer:add')")
|
||||
@Log(title = "网络文明自愿者", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcNetworkVolunteer tcNetworkVolunteer)
|
||||
{
|
||||
return toAjax(tcNetworkVolunteerService.insertTcNetworkVolunteer(tcNetworkVolunteer));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改网络文明自愿者
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:volunteer:edit')")
|
||||
@Log(title = "网络文明自愿者", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcNetworkVolunteer tcNetworkVolunteer)
|
||||
{
|
||||
return toAjax(tcNetworkVolunteerService.updateTcNetworkVolunteer(tcNetworkVolunteer));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除网络文明自愿者
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:volunteer:remove')")
|
||||
@Log(title = "网络文明自愿者", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcNetworkVolunteerService.deleteTcNetworkVolunteerByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcQinglangZhuanxiang;
|
||||
import com.ruoyi.zongzhi.service.ITcQinglangZhuanxiangService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 清朗专项Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/zhuanxiang")
|
||||
@Api(tags = " 清朗专项")
|
||||
public class TcQinglangZhuanxiangController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcQinglangZhuanxiangService tcQinglangZhuanxiangService;
|
||||
|
||||
/**
|
||||
* 查询清朗专项列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:zhuanxiang:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcQinglangZhuanxiang tcQinglangZhuanxiang)
|
||||
{
|
||||
startPage();
|
||||
List<TcQinglangZhuanxiang> list = tcQinglangZhuanxiangService.selectTcQinglangZhuanxiangList(tcQinglangZhuanxiang);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出清朗专项列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:zhuanxiang:export')")
|
||||
@Log(title = "清朗专项", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcQinglangZhuanxiang tcQinglangZhuanxiang)
|
||||
{
|
||||
List<TcQinglangZhuanxiang> list = tcQinglangZhuanxiangService.selectTcQinglangZhuanxiangList(tcQinglangZhuanxiang);
|
||||
ExcelUtil<TcQinglangZhuanxiang> util = new ExcelUtil<TcQinglangZhuanxiang>(TcQinglangZhuanxiang.class);
|
||||
util.exportExcel(response, list, "清朗专项数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取清朗专项详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:zhuanxiang:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcQinglangZhuanxiangService.selectTcQinglangZhuanxiangById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增清朗专项
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:zhuanxiang:add')")
|
||||
@Log(title = "清朗专项", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcQinglangZhuanxiang tcQinglangZhuanxiang)
|
||||
{
|
||||
return toAjax(tcQinglangZhuanxiangService.insertTcQinglangZhuanxiang(tcQinglangZhuanxiang));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改清朗专项
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:zhuanxiang:edit')")
|
||||
@Log(title = "清朗专项", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcQinglangZhuanxiang tcQinglangZhuanxiang)
|
||||
{
|
||||
return toAjax(tcQinglangZhuanxiangService.updateTcQinglangZhuanxiang(tcQinglangZhuanxiang));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除清朗专项
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:zhuanxiang:remove')")
|
||||
@Log(title = "清朗专项", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcQinglangZhuanxiangService.deleteTcQinglangZhuanxiangByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import io.swagger.annotations.Api;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcSafetyDanger;
|
||||
import com.ruoyi.zongzhi.service.ITcSafetyDangerService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 监管单位Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/danger")
|
||||
@Api(tags = " 监管单位")
|
||||
public class TcSafetyDangerController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcSafetyDangerService tcSafetyDangerService;
|
||||
|
||||
/**
|
||||
* 查询监管单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:danger:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcSafetyDanger tcSafetyDanger)
|
||||
{
|
||||
startPage();
|
||||
List<TcSafetyDanger> list = tcSafetyDangerService.selectTcSafetyDangerList(tcSafetyDanger);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出监管单位列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:danger:export')")
|
||||
@Log(title = "监管单位", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcSafetyDanger tcSafetyDanger)
|
||||
{
|
||||
List<TcSafetyDanger> list = tcSafetyDangerService.selectTcSafetyDangerList(tcSafetyDanger);
|
||||
ExcelUtil<TcSafetyDanger> util = new ExcelUtil<TcSafetyDanger>(TcSafetyDanger.class);
|
||||
util.exportExcel(response, list, "监管单位数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取监管单位详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:danger:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcSafetyDangerService.selectTcSafetyDangerById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增监管单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:danger:add')")
|
||||
@Log(title = "监管单位", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcSafetyDanger tcSafetyDanger)
|
||||
{
|
||||
return toAjax(tcSafetyDangerService.insertTcSafetyDanger(tcSafetyDanger));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改监管单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:danger:edit')")
|
||||
@Log(title = "监管单位", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcSafetyDanger tcSafetyDanger)
|
||||
{
|
||||
return toAjax(tcSafetyDangerService.updateTcSafetyDanger(tcSafetyDanger));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除监管单位
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:danger:remove')")
|
||||
@Log(title = "监管单位", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcSafetyDangerService.deleteTcSafetyDangerByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcSafetyDetection;
|
||||
import com.ruoyi.zongzhi.service.ITcSafetyDetectionService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 安全检测Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/detection")
|
||||
@Api(tags = "安全检测")
|
||||
public class TcSafetyDetectionController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcSafetyDetectionService tcSafetyDetectionService;
|
||||
|
||||
/**
|
||||
* 查询安全检测列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:detection:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcSafetyDetection tcSafetyDetection)
|
||||
{
|
||||
startPage();
|
||||
List<TcSafetyDetection> list = tcSafetyDetectionService.selectTcSafetyDetectionList(tcSafetyDetection);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出安全检测列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:detection:export')")
|
||||
@Log(title = "安全检测", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcSafetyDetection tcSafetyDetection)
|
||||
{
|
||||
List<TcSafetyDetection> list = tcSafetyDetectionService.selectTcSafetyDetectionList(tcSafetyDetection);
|
||||
ExcelUtil<TcSafetyDetection> util = new ExcelUtil<TcSafetyDetection>(TcSafetyDetection.class);
|
||||
util.exportExcel(response, list, "安全检测数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取安全检测详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:detection:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcSafetyDetectionService.selectTcSafetyDetectionById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增安全检测
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:detection:add')")
|
||||
@Log(title = "安全检测", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcSafetyDetection tcSafetyDetection)
|
||||
{
|
||||
return toAjax(tcSafetyDetectionService.insertTcSafetyDetection(tcSafetyDetection));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改安全检测
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:detection:edit')")
|
||||
@Log(title = "安全检测", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcSafetyDetection tcSafetyDetection)
|
||||
{
|
||||
return toAjax(tcSafetyDetectionService.updateTcSafetyDetection(tcSafetyDetection));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除安全检测
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:detection:remove')")
|
||||
@Log(title = "安全检测", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcSafetyDetectionService.deleteTcSafetyDetectionByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcTown;
|
||||
import com.ruoyi.zongzhi.service.ITcTownService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 区域Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/town")
|
||||
@Api(tags = "区域")
|
||||
public class TcTownController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcTownService tcTownService;
|
||||
|
||||
/**
|
||||
* 查询区域列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:town:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcTown tcTown)
|
||||
{
|
||||
startPage();
|
||||
List<TcTown> list = tcTownService.selectTcTownList(tcTown);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出区域列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:town:export')")
|
||||
@Log(title = "区域", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcTown tcTown)
|
||||
{
|
||||
List<TcTown> list = tcTownService.selectTcTownList(tcTown);
|
||||
ExcelUtil<TcTown> util = new ExcelUtil<TcTown>(TcTown.class);
|
||||
util.exportExcel(response, list, "区域数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取区域详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:town:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcTownService.selectTcTownById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增区域
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:town:add')")
|
||||
@Log(title = "区域", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcTown tcTown)
|
||||
{
|
||||
return toAjax(tcTownService.insertTcTown(tcTown));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改区域
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:town:edit')")
|
||||
@Log(title = "区域", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcTown tcTown)
|
||||
{
|
||||
return toAjax(tcTownService.updateTcTown(tcTown));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除区域
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:town:remove')")
|
||||
@Log(title = "区域", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcTownService.deleteTcTownByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcWorkDongtai;
|
||||
import com.ruoyi.zongzhi.service.ITcWorkDongtaiService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 工作动态Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/dongtai")
|
||||
@Api(tags = "工作动态")
|
||||
public class TcWorkDongtaiController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcWorkDongtaiService tcWorkDongtaiService;
|
||||
|
||||
/**
|
||||
* 查询工作动态列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:dongtai:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcWorkDongtai tcWorkDongtai)
|
||||
{
|
||||
startPage();
|
||||
List<TcWorkDongtai> list = tcWorkDongtaiService.selectTcWorkDongtaiList(tcWorkDongtai);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出工作动态列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:dongtai:export')")
|
||||
@Log(title = "工作动态", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcWorkDongtai tcWorkDongtai)
|
||||
{
|
||||
List<TcWorkDongtai> list = tcWorkDongtaiService.selectTcWorkDongtaiList(tcWorkDongtai);
|
||||
ExcelUtil<TcWorkDongtai> util = new ExcelUtil<TcWorkDongtai>(TcWorkDongtai.class);
|
||||
util.exportExcel(response, list, "工作动态数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取工作动态详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:dongtai:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcWorkDongtaiService.selectTcWorkDongtaiById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增工作动态
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:dongtai:add')")
|
||||
@Log(title = "工作动态", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcWorkDongtai tcWorkDongtai)
|
||||
{
|
||||
return toAjax(tcWorkDongtaiService.insertTcWorkDongtai(tcWorkDongtai));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改工作动态
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:dongtai:edit')")
|
||||
@Log(title = "工作动态", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcWorkDongtai tcWorkDongtai)
|
||||
{
|
||||
return toAjax(tcWorkDongtaiService.updateTcWorkDongtai(tcWorkDongtai));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除工作动态
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:dongtai:remove')")
|
||||
@Log(title = "工作动态", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcWorkDongtaiService.deleteTcWorkDongtaiByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcZhongdianDomain;
|
||||
import com.ruoyi.zongzhi.service.ITcZhongdianDomainService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 重点领域监管Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/domain")
|
||||
@Api(tags = "重点领域监管")
|
||||
public class TcZhongdianDomainController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcZhongdianDomainService tcZhongdianDomainService;
|
||||
|
||||
/**
|
||||
* 查询重点领域监管列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:domain:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcZhongdianDomain tcZhongdianDomain)
|
||||
{
|
||||
startPage();
|
||||
List<TcZhongdianDomain> list = tcZhongdianDomainService.selectTcZhongdianDomainList(tcZhongdianDomain);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出重点领域监管列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:domain:export')")
|
||||
@Log(title = "重点领域监管", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcZhongdianDomain tcZhongdianDomain)
|
||||
{
|
||||
List<TcZhongdianDomain> list = tcZhongdianDomainService.selectTcZhongdianDomainList(tcZhongdianDomain);
|
||||
ExcelUtil<TcZhongdianDomain> util = new ExcelUtil<TcZhongdianDomain>(TcZhongdianDomain.class);
|
||||
util.exportExcel(response, list, "重点领域监管数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取重点领域监管详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:domain:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcZhongdianDomainService.selectTcZhongdianDomainById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增重点领域监管
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:domain:add')")
|
||||
@Log(title = "重点领域监管", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcZhongdianDomain tcZhongdianDomain)
|
||||
{
|
||||
return toAjax(tcZhongdianDomainService.insertTcZhongdianDomain(tcZhongdianDomain));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改重点领域监管
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:domain:edit')")
|
||||
@Log(title = "重点领域监管", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcZhongdianDomain tcZhongdianDomain)
|
||||
{
|
||||
return toAjax(tcZhongdianDomainService.updateTcZhongdianDomain(tcZhongdianDomain));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除重点领域监管
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:domain:remove')")
|
||||
@Log(title = "重点领域监管", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcZhongdianDomainService.deleteTcZhongdianDomainByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcZhongdianEnterprise;
|
||||
import com.ruoyi.zongzhi.service.ITcZhongdianEnterpriseService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 重点企业名录Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/enterprise")
|
||||
@Api(tags = "重点企业名录")
|
||||
public class TcZhongdianEnterpriseController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcZhongdianEnterpriseService tcZhongdianEnterpriseService;
|
||||
|
||||
/**
|
||||
* 查询重点企业名录列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:enterprise:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcZhongdianEnterprise tcZhongdianEnterprise)
|
||||
{
|
||||
startPage();
|
||||
List<TcZhongdianEnterprise> list = tcZhongdianEnterpriseService.selectTcZhongdianEnterpriseList(tcZhongdianEnterprise);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出重点企业名录列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:enterprise:export')")
|
||||
@Log(title = "重点企业名录", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcZhongdianEnterprise tcZhongdianEnterprise)
|
||||
{
|
||||
List<TcZhongdianEnterprise> list = tcZhongdianEnterpriseService.selectTcZhongdianEnterpriseList(tcZhongdianEnterprise);
|
||||
ExcelUtil<TcZhongdianEnterprise> util = new ExcelUtil<TcZhongdianEnterprise>(TcZhongdianEnterprise.class);
|
||||
util.exportExcel(response, list, "重点企业名录数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取重点企业名录详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:enterprise:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcZhongdianEnterpriseService.selectTcZhongdianEnterpriseById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增重点企业名录
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:enterprise:add')")
|
||||
@Log(title = "重点企业名录", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcZhongdianEnterprise tcZhongdianEnterprise)
|
||||
{
|
||||
return toAjax(tcZhongdianEnterpriseService.insertTcZhongdianEnterprise(tcZhongdianEnterprise));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改重点企业名录
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:enterprise:edit')")
|
||||
@Log(title = "重点企业名录", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcZhongdianEnterprise tcZhongdianEnterprise)
|
||||
{
|
||||
return toAjax(tcZhongdianEnterpriseService.updateTcZhongdianEnterprise(tcZhongdianEnterprise));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除重点企业名录
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:enterprise:remove')")
|
||||
@Log(title = "重点企业名录", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcZhongdianEnterpriseService.deleteTcZhongdianEnterpriseByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
package com.ruoyi.zongzhi.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.zongzhi.domain.TcZhongdianWork;
|
||||
import com.ruoyi.zongzhi.service.ITcZhongdianWorkService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 重点工作项目Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/work")
|
||||
@Api(tags = "重点工作项目")
|
||||
public class TcZhongdianWorkController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITcZhongdianWorkService tcZhongdianWorkService;
|
||||
|
||||
/**
|
||||
* 查询重点工作项目列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:work:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TcZhongdianWork tcZhongdianWork)
|
||||
{
|
||||
startPage();
|
||||
List<TcZhongdianWork> list = tcZhongdianWorkService.selectTcZhongdianWorkList(tcZhongdianWork);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出重点工作项目列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:work:export')")
|
||||
@Log(title = "重点工作项目", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TcZhongdianWork tcZhongdianWork)
|
||||
{
|
||||
List<TcZhongdianWork> list = tcZhongdianWorkService.selectTcZhongdianWorkList(tcZhongdianWork);
|
||||
ExcelUtil<TcZhongdianWork> util = new ExcelUtil<TcZhongdianWork>(TcZhongdianWork.class);
|
||||
util.exportExcel(response, list, "重点工作项目数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取重点工作项目详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:work:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return success(tcZhongdianWorkService.selectTcZhongdianWorkById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增重点工作项目
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:work:add')")
|
||||
@Log(title = "重点工作项目", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TcZhongdianWork tcZhongdianWork)
|
||||
{
|
||||
return toAjax(tcZhongdianWorkService.insertTcZhongdianWork(tcZhongdianWork));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改重点工作项目
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:work:edit')")
|
||||
@Log(title = "重点工作项目", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TcZhongdianWork tcZhongdianWork)
|
||||
{
|
||||
return toAjax(tcZhongdianWorkService.updateTcZhongdianWork(tcZhongdianWork));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除重点工作项目
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('zongzhi:work:remove')")
|
||||
@Log(title = "重点工作项目", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tcZhongdianWorkService.deleteTcZhongdianWorkByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,111 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网评员对象 tc_commentator
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcCommentator extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
*/
|
||||
@Excel(name = "姓名")
|
||||
@ApiModelProperty(value = "姓名")
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 性别
|
||||
*/
|
||||
@Excel(name = "性别")
|
||||
@ApiModelProperty(value = "性别")
|
||||
private String sex;
|
||||
|
||||
/**
|
||||
* 年龄
|
||||
*/
|
||||
@Excel(name = "年龄")
|
||||
@ApiModelProperty(value = "年龄")
|
||||
private Long age;
|
||||
|
||||
/**
|
||||
* 民族
|
||||
*/
|
||||
@Excel(name = "民族")
|
||||
@ApiModelProperty(value = "民族")
|
||||
private String nationality;
|
||||
|
||||
/**
|
||||
* 政治面貌
|
||||
*/
|
||||
@Excel(name = "政治面貌")
|
||||
@ApiModelProperty(value = "政治面貌")
|
||||
private String politicsStatus;
|
||||
|
||||
/**
|
||||
* 单位
|
||||
*/
|
||||
@Excel(name = "单位")
|
||||
@ApiModelProperty(value = "单位")
|
||||
private String unit;
|
||||
|
||||
/**
|
||||
* 移动电话
|
||||
*/
|
||||
@Excel(name = "移动电话")
|
||||
@ApiModelProperty(value = "移动电话")
|
||||
private String phoneNum;
|
||||
|
||||
/**
|
||||
* 微信号
|
||||
*/
|
||||
@Excel(name = "微信号")
|
||||
@ApiModelProperty(value = "微信号")
|
||||
private String vxNum;
|
||||
|
||||
/**
|
||||
* 类别1. 核心网评员
|
||||
* 2. 骨干网评员
|
||||
* 3. 普通网评员
|
||||
*/
|
||||
@Excel(name = "类别")
|
||||
@ApiModelProperty(value = "类别1.核心网评员 2. 骨干网评员 3. 普通网评员")
|
||||
private Long type;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,170 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 等保系统对象 tc_dengbao_system
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcDengbaoSystem extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 系统名称
|
||||
*/
|
||||
@Excel(name = "系统名称")
|
||||
@ApiModelProperty(value = "系统名称")
|
||||
private String steamName;
|
||||
|
||||
/**
|
||||
* 备案编号
|
||||
*/
|
||||
@Excel(name = "备案编号")
|
||||
@ApiModelProperty(value = "备案编号")
|
||||
private String beianNum;
|
||||
|
||||
/**
|
||||
* 信息系统安全保护等级
|
||||
*/
|
||||
@Excel(name = "信息系统安全保护等级")
|
||||
@ApiModelProperty(value = "信息系统安全保护等级")
|
||||
private String safetyLevel;
|
||||
|
||||
/**
|
||||
* 单位名称
|
||||
*/
|
||||
@Excel(name = "单位名称")
|
||||
@ApiModelProperty(value = "单位名称")
|
||||
private String unitName;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
@Excel(name = "业务类型")
|
||||
@ApiModelProperty(value = "业务类型")
|
||||
private String yewuType;
|
||||
|
||||
/**
|
||||
* 服务范围
|
||||
*/
|
||||
@Excel(name = "服务范围")
|
||||
@ApiModelProperty(value = "服务范围")
|
||||
private String servicesArea;
|
||||
|
||||
/**
|
||||
* 服务对象
|
||||
*/
|
||||
@Excel(name = "服务对象")
|
||||
@ApiModelProperty(value = "服务对象")
|
||||
private String servicesObj;
|
||||
|
||||
/**
|
||||
* 覆盖范围
|
||||
*/
|
||||
@Excel(name = "覆盖范围")
|
||||
@ApiModelProperty(value = "覆盖范围")
|
||||
private String coverageArea;
|
||||
|
||||
/**
|
||||
* 网络性质
|
||||
*/
|
||||
@Excel(name = "网络性质")
|
||||
@ApiModelProperty(value = "网络性质")
|
||||
private String networkNature;
|
||||
|
||||
/**
|
||||
* 系统互联情况
|
||||
*/
|
||||
@Excel(name = "系统互联情况")
|
||||
@ApiModelProperty(value = "系统互联情况")
|
||||
private String systemSitutation;
|
||||
|
||||
/**
|
||||
* 投入运行使用日期
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "投入运行使用日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date useTime;
|
||||
|
||||
/**
|
||||
* 系统是否分级
|
||||
*/
|
||||
@Excel(name = "系统是否分级")
|
||||
@ApiModelProperty(value = "系统是否分级")
|
||||
private String isRate;
|
||||
|
||||
/**
|
||||
* 系统定级时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "系统定级时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date rankTime;
|
||||
|
||||
/**
|
||||
* 专家评审情况
|
||||
*/
|
||||
@Excel(name = "专家评审情况")
|
||||
@ApiModelProperty(value = "专家评审情况")
|
||||
private String reviewCase;
|
||||
|
||||
/**
|
||||
* 是否有主管部门
|
||||
*/
|
||||
@Excel(name = "是否有主管部门")
|
||||
@ApiModelProperty(value = "是否有主管部门")
|
||||
private String isParent;
|
||||
|
||||
/**
|
||||
* 系统定级报告
|
||||
*/
|
||||
@Excel(name = "系统定级报告")
|
||||
@ApiModelProperty(value = "系统定级报告")
|
||||
private String rankReport;
|
||||
|
||||
/**
|
||||
* 系统状态
|
||||
* 1:已备案、2:已发证
|
||||
*/
|
||||
@Excel(name = "系统状态 ")
|
||||
@ApiModelProperty(value = "系统状态 ")
|
||||
private Long systemState;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,236 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网络安全官对象 tc_extwork_safetyadmin
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcExtworkSafetyadmin extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 单位
|
||||
*/
|
||||
@Excel(name = "单位")
|
||||
@ApiModelProperty(value = "单位")
|
||||
private String unit;
|
||||
|
||||
/**
|
||||
* 第一负责人
|
||||
*/
|
||||
@Excel(name = "第一负责人")
|
||||
@ApiModelProperty(value = "第一负责人")
|
||||
private String firstPrincipal;
|
||||
|
||||
/**
|
||||
* 职务
|
||||
*/
|
||||
@Excel(name = "职务")
|
||||
@ApiModelProperty(value = "职务")
|
||||
private String duty;
|
||||
|
||||
/**
|
||||
* 直接负责人
|
||||
*/
|
||||
@Excel(name = "直接负责人")
|
||||
@ApiModelProperty(value = "直接负责人")
|
||||
private String directPrincipal;
|
||||
|
||||
/**
|
||||
* 职务_1
|
||||
*/
|
||||
@Excel(name = "职务_1")
|
||||
@ApiModelProperty(value = "职务_1")
|
||||
private String duty1;
|
||||
|
||||
/**
|
||||
* 负责科室
|
||||
*/
|
||||
@Excel(name = "负责科室")
|
||||
@ApiModelProperty(value = "负责科室")
|
||||
private String fuzeKeshi;
|
||||
|
||||
/**
|
||||
* 网络安全官
|
||||
*/
|
||||
@Excel(name = "网络安全官")
|
||||
@ApiModelProperty(value = "网络安全官")
|
||||
private String networkAqg;
|
||||
|
||||
/**
|
||||
* 职务_2
|
||||
*/
|
||||
@Excel(name = "职务_2")
|
||||
@ApiModelProperty(value = "职务_2")
|
||||
private String duty2;
|
||||
|
||||
/**
|
||||
* 电话
|
||||
*/
|
||||
@Excel(name = "电话")
|
||||
@ApiModelProperty(value = "电话")
|
||||
private String tel;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setAreaId(Long areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public Long getAreaId() {
|
||||
return areaId;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
this.unit = unit;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return unit;
|
||||
}
|
||||
|
||||
public void setFirstPrincipal(String firstPrincipal) {
|
||||
this.firstPrincipal = firstPrincipal;
|
||||
}
|
||||
|
||||
public String getFirstPrincipal() {
|
||||
return firstPrincipal;
|
||||
}
|
||||
|
||||
public void setDuty(String duty) {
|
||||
this.duty = duty;
|
||||
}
|
||||
|
||||
public String getDuty() {
|
||||
return duty;
|
||||
}
|
||||
|
||||
public void setDirectPrincipal(String directPrincipal) {
|
||||
this.directPrincipal = directPrincipal;
|
||||
}
|
||||
|
||||
public String getDirectPrincipal() {
|
||||
return directPrincipal;
|
||||
}
|
||||
|
||||
public void setDuty1(String duty1) {
|
||||
this.duty1 = duty1;
|
||||
}
|
||||
|
||||
public String getDuty1() {
|
||||
return duty1;
|
||||
}
|
||||
|
||||
public void setFuzeKeshi(String fuzeKeshi) {
|
||||
this.fuzeKeshi = fuzeKeshi;
|
||||
}
|
||||
|
||||
public String getFuzeKeshi() {
|
||||
return fuzeKeshi;
|
||||
}
|
||||
|
||||
public void setNetworkAqg(String networkAqg) {
|
||||
this.networkAqg = networkAqg;
|
||||
}
|
||||
|
||||
public String getNetworkAqg() {
|
||||
return networkAqg;
|
||||
}
|
||||
|
||||
public void setDuty2(String duty2) {
|
||||
this.duty2 = duty2;
|
||||
}
|
||||
|
||||
public String getDuty2() {
|
||||
return duty2;
|
||||
}
|
||||
|
||||
public void setTel(String tel) {
|
||||
this.tel = tel;
|
||||
}
|
||||
|
||||
public String getTel() {
|
||||
return tel;
|
||||
}
|
||||
|
||||
public void setCreateId(Long createId) {
|
||||
this.createId = createId;
|
||||
}
|
||||
|
||||
public Long getCreateId() {
|
||||
return createId;
|
||||
}
|
||||
|
||||
public void setUpdateId(Long updateId) {
|
||||
this.updateId = updateId;
|
||||
}
|
||||
|
||||
public Long getUpdateId() {
|
||||
return updateId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("areaId", getAreaId())
|
||||
.append("unit", getUnit())
|
||||
.append("firstPrincipal", getFirstPrincipal())
|
||||
.append("duty", getDuty())
|
||||
.append("directPrincipal", getDirectPrincipal())
|
||||
.append("duty1", getDuty1())
|
||||
.append("fuzeKeshi", getFuzeKeshi())
|
||||
.append("networkAqg", getNetworkAqg())
|
||||
.append("duty2", getDuty2())
|
||||
.append("tel", getTel())
|
||||
.append("createId", getCreateId())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateId", getUpdateId())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 政府网站对象 tc_government_web
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcGovernmentWeb extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 网址
|
||||
*/
|
||||
@Excel(name = "网址")
|
||||
@ApiModelProperty(value = "网址")
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 资产名称
|
||||
*/
|
||||
@Excel(name = "资产名称")
|
||||
@ApiModelProperty(value = "资产名称")
|
||||
private String assetName;
|
||||
|
||||
/**
|
||||
* 资产重要等级
|
||||
*/
|
||||
@Excel(name = "资产重要等级")
|
||||
@ApiModelProperty(value = "资产重要等级")
|
||||
private String assetLevel;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* IDC单位对象 tc_idc_unit
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcIdcUnit extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
@Excel(name = "名称")
|
||||
@ApiModelProperty(value = "名称")
|
||||
private String unitName;
|
||||
|
||||
/**
|
||||
* 所属区域
|
||||
*/
|
||||
@Excel(name = "所属区域")
|
||||
@ApiModelProperty(value = "所属区域")
|
||||
private String area;
|
||||
|
||||
/**
|
||||
* IP段信息
|
||||
*/
|
||||
@Excel(name = "IP段信息")
|
||||
@ApiModelProperty(value = "IP段信息")
|
||||
private String ipData;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,88 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网络文章对象 tc_network_article
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcNetworkArticle extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 文章类型1. 本地录用
|
||||
* 2. 苏州级录用
|
||||
* 3. 省级级以上录用
|
||||
* 4. 上级媒体
|
||||
* 5. 本地发布
|
||||
*/
|
||||
@Excel(name = "文章类型")
|
||||
@ApiModelProperty(value = "文章类型 1.本地录用,2.苏州级录用,3.省级级以上录用,4,上级媒体,5本地发布")
|
||||
private Long type;
|
||||
|
||||
/**
|
||||
* 文章标题
|
||||
*/
|
||||
@Excel(name = "文章标题")
|
||||
@ApiModelProperty(value = "文章标题")
|
||||
private String articleTitle;
|
||||
|
||||
/**
|
||||
* 发布时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "发布时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date releaseTime;
|
||||
|
||||
/**
|
||||
* 来源
|
||||
*/
|
||||
@Excel(name = "来源")
|
||||
@ApiModelProperty(value = "来源")
|
||||
private String source;
|
||||
|
||||
/**
|
||||
* 文章地址
|
||||
*/
|
||||
@Excel(name = "文章地址")
|
||||
@ApiModelProperty(value = "文章地址")
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,119 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网评对象 tc_network_evaluate
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcNetworkEvaluate extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 文章ID
|
||||
*/
|
||||
@Excel(name = "文章ID")
|
||||
@ApiModelProperty(value = "文章ID")
|
||||
private Long articleId;
|
||||
|
||||
/**
|
||||
* 文章类型
|
||||
*/
|
||||
@Excel(name = "文章类型")
|
||||
@ApiModelProperty(value = "文章类型")
|
||||
private Long articleType;
|
||||
|
||||
/**
|
||||
* 评价人ID
|
||||
*/
|
||||
@Excel(name = "评价人ID")
|
||||
@ApiModelProperty(value = "评价人ID")
|
||||
private Long appraiserId;
|
||||
|
||||
/**
|
||||
* 评价人名字
|
||||
*/
|
||||
@Excel(name = "评价人名字")
|
||||
@ApiModelProperty(value = "评价人名字")
|
||||
private String appraiserName;
|
||||
|
||||
/**
|
||||
* 文章标题
|
||||
*/
|
||||
@Excel(name = "文章标题")
|
||||
@ApiModelProperty(value = "文章标题")
|
||||
private String articleTitle;
|
||||
|
||||
/**
|
||||
* 文章内容
|
||||
*/
|
||||
@Excel(name = "文章内容")
|
||||
@ApiModelProperty(value = "文章内容")
|
||||
private String articleContent;
|
||||
|
||||
/**
|
||||
* 来源
|
||||
*/
|
||||
@Excel(name = "来源")
|
||||
@ApiModelProperty(value = "来源")
|
||||
private String articleSource;
|
||||
|
||||
/**
|
||||
* 文章地址
|
||||
*/
|
||||
@Excel(name = "文章地址")
|
||||
@ApiModelProperty(value = "文章地址")
|
||||
private String articleUrl;
|
||||
|
||||
/**
|
||||
* 评价内容
|
||||
*/
|
||||
@Excel(name = "评价内容")
|
||||
@ApiModelProperty(value = "评价内容")
|
||||
private String pjContent;
|
||||
|
||||
/**
|
||||
* 评价时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "评价时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date pjTime;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,89 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网络民情责任人对象 tc_network_mq_principal
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcNetworkMqPrincipal extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 单位名称
|
||||
*/
|
||||
@Excel(name = "单位名称")
|
||||
@ApiModelProperty(value = "单位名称")
|
||||
private String unitName;
|
||||
|
||||
/**
|
||||
* 民情负责人
|
||||
*/
|
||||
@Excel(name = "民情负责人")
|
||||
@ApiModelProperty(value = "民情负责人")
|
||||
private String fuzeMan;
|
||||
|
||||
/**
|
||||
* 职务
|
||||
*/
|
||||
@Excel(name = "职务")
|
||||
@ApiModelProperty(value = "职务")
|
||||
private String duty;
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
@Excel(name = "联系电话")
|
||||
@ApiModelProperty(value = "联系电话")
|
||||
private String tel;
|
||||
|
||||
/**
|
||||
* fax_num
|
||||
*/
|
||||
@Excel(name = "fax_num")
|
||||
@ApiModelProperty(value = "fax_num")
|
||||
private String faxNum;
|
||||
|
||||
/**
|
||||
* 手机号
|
||||
*/
|
||||
@Excel(name = "手机号")
|
||||
@ApiModelProperty(value = "手机号")
|
||||
private String phoneNum;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,120 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网络举报对象 tc_network_report
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcNetworkReport extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 举报人
|
||||
*/
|
||||
@Excel(name = "举报人")
|
||||
@ApiModelProperty(value = "举报人")
|
||||
private String jbMan;
|
||||
|
||||
/**
|
||||
* 被举报对象
|
||||
*/
|
||||
@Excel(name = "被举报对象")
|
||||
@ApiModelProperty(value = "被举报对象")
|
||||
private String jbdx;
|
||||
|
||||
/**
|
||||
* 苏州编号
|
||||
*/
|
||||
@Excel(name = "苏州编号")
|
||||
@ApiModelProperty(value = "苏州编号")
|
||||
private String jbbh;
|
||||
|
||||
/**
|
||||
* 举报时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "举报时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date jbTime;
|
||||
|
||||
/**
|
||||
* 经度
|
||||
*/
|
||||
@Excel(name = "经度")
|
||||
@ApiModelProperty(value = "经度")
|
||||
private String longitude;
|
||||
|
||||
/**
|
||||
* 纬度
|
||||
*/
|
||||
@Excel(name = "纬度")
|
||||
@ApiModelProperty(value = "纬度")
|
||||
private String latitude;
|
||||
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
@Excel(name = "地址")
|
||||
@ApiModelProperty(value = "地址")
|
||||
private String address;
|
||||
|
||||
/**
|
||||
* 举报内容
|
||||
*/
|
||||
@Excel(name = "举报内容")
|
||||
@ApiModelProperty(value = "举报内容")
|
||||
private String content;
|
||||
|
||||
/**
|
||||
* 状态1. 待处理
|
||||
* 2. 已处理
|
||||
*/
|
||||
@Excel(name = "状态")
|
||||
@ApiModelProperty(value = "状态")
|
||||
private Long state;
|
||||
|
||||
/**
|
||||
* 来源1.上级下发 2.部门转发 3.小程序 4无效
|
||||
*/
|
||||
@Excel(name = "来源1.上级下发 2.部门转发 3.小程序 4无效")
|
||||
@ApiModelProperty(value = "来源1.上级下发 2.部门转发 3.小程序 4无效")
|
||||
private Long source;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,140 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网络舆情对象 tc_network_sentiment
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public class TcNetworkSentiment extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 舆情名称
|
||||
*/
|
||||
@Excel(name = "舆情名称")
|
||||
@ApiModelProperty(value = "舆情名称")
|
||||
private String sentimentName;
|
||||
|
||||
/**
|
||||
* 舆情内容
|
||||
*/
|
||||
@Excel(name = "舆情内容")
|
||||
@ApiModelProperty(value = "舆情内容")
|
||||
private String sentimentContent;
|
||||
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
@Excel(name = "部门名称")
|
||||
@ApiModelProperty(value = "部门名称")
|
||||
private String depName;
|
||||
|
||||
/**
|
||||
* 发布时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "发布时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date publishTime;
|
||||
|
||||
/**
|
||||
* 舆情状态1. 待处理 2处理中 3已处理
|
||||
*/
|
||||
@Excel(name = "舆情状态1. 待处理 2处理中 3已处理")
|
||||
@ApiModelProperty(value = "舆情状态1. 待处理 2处理中 3已处理")
|
||||
private Long sentimentState;
|
||||
|
||||
/**
|
||||
* 媒体类型1. 报刊 2.网媒 3.微信 4.博
|
||||
* 4. APP 6.论坛 7.短视频 8.其他
|
||||
*/
|
||||
@Excel(name = "媒体类型")
|
||||
@ApiModelProperty(value = "媒体类型")
|
||||
private Long mediaType;
|
||||
|
||||
/**
|
||||
* 涉事类型1. 治安维护 2.医疗卫生 3.执政形象 4.市场监督 5.自然灾害 6.安全事故 7.社会保证 8.市政管理
|
||||
*/
|
||||
@Excel(name = "涉事类型1. 治安维护 2.医疗卫生 3.执政形象 4.市场监督 5.自然灾害 6.安全事故 7.社会保证 8.市政管理")
|
||||
@ApiModelProperty(value = "涉事类型1. 治安维护 2.医疗卫生 3.执政形象 4.市场监督 5.自然灾害 6.安全事故 7.社会保证 8.市政管理")
|
||||
private Long eventType;
|
||||
|
||||
/**
|
||||
* 舆情类型1.敏感 2.非敏感 3.本地相关信息
|
||||
* 4.推送预警信息 5.聚焦本地媒体信息
|
||||
*/
|
||||
@Excel(name = "舆情类型")
|
||||
@ApiModelProperty(value = "舆情类型1.敏感 2.非敏感 3.本地相关信息 4.推送预警信息 5.聚焦本地媒体信息 ")
|
||||
private Long sentimentType;
|
||||
|
||||
/**
|
||||
* 词云类别1.开门红 2.城乡文明融合……….
|
||||
*/
|
||||
@Excel(name = "词云类别1.开门红 2.城乡文明融合……….")
|
||||
@ApiModelProperty(value = "词云类别1.开门红 2.城乡文明融合……….")
|
||||
private Long yuciType;
|
||||
|
||||
/**
|
||||
* 来源1.微博 2.抖音 ….
|
||||
*/
|
||||
@Excel(name = "来源1.微博 2.抖音 ….")
|
||||
@ApiModelProperty(value = "来源1.微博 2.抖音 ….")
|
||||
private Long source;
|
||||
|
||||
/**
|
||||
* 是否转办1是 2否
|
||||
*/
|
||||
@Excel(name = "是否转办1是 2否")
|
||||
@ApiModelProperty(value = "是否转办1是 2否")
|
||||
private Long isturn;
|
||||
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
@Excel(name = "文件名称")
|
||||
@ApiModelProperty(value = "文件名称")
|
||||
private String fileName;
|
||||
|
||||
/**
|
||||
* 文件地址
|
||||
*/
|
||||
@Excel(name = "文件地址")
|
||||
@ApiModelProperty(value = "文件地址")
|
||||
private String fileUrl;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网络安全支持单位对象 tc_network_support_unit
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcNetworkSupportUnit extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 单位名称
|
||||
*/
|
||||
@Excel(name = "单位名称")
|
||||
@ApiModelProperty(value = "单位名称")
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 联系人
|
||||
*/
|
||||
@Excel(name = "联系人")
|
||||
@ApiModelProperty(value = "联系人")
|
||||
private String linkMan;
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
@Excel(name = "联系电话")
|
||||
@ApiModelProperty(value = "联系电话")
|
||||
private String phoneNum;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 网络文明自愿者对象 tc_network_volunteer
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcNetworkVolunteer extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 类别1. 银龄生活
|
||||
* 2. 凌云燕
|
||||
*/
|
||||
@Excel(name = "类别")
|
||||
@ApiModelProperty(value = "类别1.银龄生活 2.凌云燕")
|
||||
private Long type;
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
*/
|
||||
@Excel(name = "姓名")
|
||||
@ApiModelProperty(value = "姓名")
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 年龄
|
||||
*/
|
||||
@Excel(name = "年龄")
|
||||
@ApiModelProperty(value = "年龄")
|
||||
private Long age;
|
||||
|
||||
/**
|
||||
* 活动内容
|
||||
*/
|
||||
@Excel(name = "活动内容")
|
||||
@ApiModelProperty(value = "活动内容")
|
||||
private String content;
|
||||
|
||||
/**
|
||||
* 单位
|
||||
*/
|
||||
@Excel(name = "单位")
|
||||
@ApiModelProperty(value = "单位")
|
||||
private String unit;
|
||||
|
||||
/**
|
||||
* 职务
|
||||
*/
|
||||
@Excel(name = "职务")
|
||||
@ApiModelProperty(value = "职务")
|
||||
private String duty;
|
||||
|
||||
/**
|
||||
* 联系方式
|
||||
*/
|
||||
@Excel(name = "联系方式")
|
||||
@ApiModelProperty(value = "联系方式")
|
||||
private Long phoneNum;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,85 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 清朗专项对象 tc_qinglang_zhuanxiang
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcQinglangZhuanxiang extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 专项标题
|
||||
*/
|
||||
@Excel(name = "专项标题")
|
||||
@ApiModelProperty(value = "专项标题")
|
||||
private String zhuanxiangTitle;
|
||||
|
||||
/**
|
||||
* 发布时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "发布时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date zhuanxiangTime;
|
||||
|
||||
/**
|
||||
* 专项内容
|
||||
*/
|
||||
@Excel(name = "专项内容")
|
||||
@ApiModelProperty(value = "专项内容")
|
||||
private String zhuanxiangContent;
|
||||
|
||||
/**
|
||||
* 专项图片
|
||||
*/
|
||||
@Excel(name = "专项图片")
|
||||
@ApiModelProperty(value = "专项图片")
|
||||
private String zhuanxiangImg;
|
||||
|
||||
/**
|
||||
* 处理类型1. 处理有害信息
|
||||
* 2. 关闭直播平台违规账号
|
||||
*/
|
||||
@Excel(name = "处理类型")
|
||||
@ApiModelProperty(value = "处理类型")
|
||||
private Long zhuanxiangType;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,84 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 工作动态对象 tc_work_dongtai
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcWorkDongtai extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
@Excel(name = "类型")
|
||||
@ApiModelProperty(value = "类型")
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 材料名称
|
||||
*/
|
||||
@Excel(name = "材料名称")
|
||||
@ApiModelProperty(value = "材料名称")
|
||||
private String materialsName;
|
||||
|
||||
/**
|
||||
* 发布时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "发布时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date fabuTime;
|
||||
|
||||
/**
|
||||
* 材料文件名称
|
||||
*/
|
||||
@Excel(name = "材料文件名称")
|
||||
@ApiModelProperty(value = "材料文件名称")
|
||||
private String materialsFileName;
|
||||
|
||||
/**
|
||||
* 材料文件URL
|
||||
*/
|
||||
@Excel(name = "材料文件URL")
|
||||
@ApiModelProperty(value = "材料文件URL")
|
||||
private String materialsFileUrl;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
@ApiModelProperty(value = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
@ApiModelProperty(value = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 重点领域监管对象 tc_zhongdian_domain
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcZhongdianDomain extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** $column.columnComment */
|
||||
private Long id;
|
||||
|
||||
/** 区域id */
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/** 企业类型 */
|
||||
@Excel(name = "企业类型")
|
||||
@ApiModelProperty(value = "企业类型")
|
||||
private Long enterpriseType;
|
||||
|
||||
/** 重点监管内容 */
|
||||
@Excel(name = "重点监管内容")
|
||||
@ApiModelProperty(value = "重点监管内容")
|
||||
private String zdjgContent;
|
||||
|
||||
/** 法律法规明令禁止的有关行为 */
|
||||
@Excel(name = "法律法规明令禁止的有关行为")
|
||||
@ApiModelProperty(value = "法律法规明令禁止的有关行为")
|
||||
private String weifaXingwei;
|
||||
|
||||
/** 主要监管部门 */
|
||||
@Excel(name = "主要监管部门")
|
||||
@ApiModelProperty(value = "主要监管部门")
|
||||
private String dep;
|
||||
|
||||
/** 主要依据 */
|
||||
@Excel(name = "主要依据")
|
||||
@ApiModelProperty(value = "主要依据")
|
||||
private String zhuyaoYiju;
|
||||
|
||||
/** 创建人ID */
|
||||
@Excel(name = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/** 修改人ID */
|
||||
@Excel(name = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,93 @@
|
||||
package com.ruoyi.zongzhi.domain;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 重点工作项目对象 tc_zhongdian_work
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
@Data
|
||||
public class TcZhongdianWork extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 区域id
|
||||
*/
|
||||
@Excel(name = "区域id")
|
||||
@ApiModelProperty(value = "区域id")
|
||||
private Long areaId;
|
||||
|
||||
/**
|
||||
* 推进单位
|
||||
*/
|
||||
@Excel(name = "推进单位")
|
||||
@ApiModelProperty(value = "推进单位")
|
||||
private String unitName;
|
||||
|
||||
/**
|
||||
* 项目名称
|
||||
*/
|
||||
@Excel(name = "项目名称")
|
||||
@ApiModelProperty(value = "项目名称")
|
||||
private String projectName;
|
||||
|
||||
/**
|
||||
* 项目内容
|
||||
*/
|
||||
@ApiModelProperty(value = "项目内容")
|
||||
@Excel(name = "项目内容")
|
||||
private String projectContent;
|
||||
|
||||
/**
|
||||
* 项目类型
|
||||
*/
|
||||
@ApiModelProperty(value = "项目类型")
|
||||
@Excel(name = "项目类型")
|
||||
private Long projectType;
|
||||
|
||||
/**
|
||||
* 项目联系人
|
||||
*/
|
||||
@Excel(name = "项目联系人")
|
||||
@ApiModelProperty(value = "项目联系人")
|
||||
private String projectLinkMan;
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
@Excel(name = "联系电话")
|
||||
@ApiModelProperty(value = "联系电话")
|
||||
private String phoneNum;
|
||||
|
||||
/**
|
||||
* 联系人职务
|
||||
*/
|
||||
@Excel(name = "联系人职务")
|
||||
@ApiModelProperty(value = "联系人职务")
|
||||
private String linkManDuty;
|
||||
|
||||
/**
|
||||
* 创建人ID
|
||||
*/
|
||||
@Excel(name = "创建人ID")
|
||||
private Long createId;
|
||||
|
||||
/**
|
||||
* 修改人ID
|
||||
*/
|
||||
@Excel(name = "修改人ID")
|
||||
private Long updateId;
|
||||
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcCommentator;
|
||||
|
||||
/**
|
||||
* 网评员Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcCommentatorMapper
|
||||
{
|
||||
/**
|
||||
* 查询网评员
|
||||
*
|
||||
* @param id 网评员主键
|
||||
* @return 网评员
|
||||
*/
|
||||
public TcCommentator selectTcCommentatorById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网评员列表
|
||||
*
|
||||
* @param tcCommentator 网评员
|
||||
* @return 网评员集合
|
||||
*/
|
||||
public List<TcCommentator> selectTcCommentatorList(TcCommentator tcCommentator);
|
||||
|
||||
/**
|
||||
* 新增网评员
|
||||
*
|
||||
* @param tcCommentator 网评员
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcCommentator(TcCommentator tcCommentator);
|
||||
|
||||
/**
|
||||
* 修改网评员
|
||||
*
|
||||
* @param tcCommentator 网评员
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcCommentator(TcCommentator tcCommentator);
|
||||
|
||||
/**
|
||||
* 删除网评员
|
||||
*
|
||||
* @param id 网评员主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcCommentatorById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网评员
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcCommentatorByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcDataSource;
|
||||
|
||||
/**
|
||||
* 数据来源Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcDataSourceMapper
|
||||
{
|
||||
/**
|
||||
* 查询数据来源
|
||||
*
|
||||
* @param id 数据来源主键
|
||||
* @return 数据来源
|
||||
*/
|
||||
public TcDataSource selectTcDataSourceById(Long id);
|
||||
|
||||
/**
|
||||
* 查询数据来源列表
|
||||
*
|
||||
* @param tcDataSource 数据来源
|
||||
* @return 数据来源集合
|
||||
*/
|
||||
public List<TcDataSource> selectTcDataSourceList(TcDataSource tcDataSource);
|
||||
|
||||
/**
|
||||
* 新增数据来源
|
||||
*
|
||||
* @param tcDataSource 数据来源
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcDataSource(TcDataSource tcDataSource);
|
||||
|
||||
/**
|
||||
* 修改数据来源
|
||||
*
|
||||
* @param tcDataSource 数据来源
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcDataSource(TcDataSource tcDataSource);
|
||||
|
||||
/**
|
||||
* 删除数据来源
|
||||
*
|
||||
* @param id 数据来源主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDataSourceById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除数据来源
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDataSourceByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcDengbaoSystem;
|
||||
|
||||
/**
|
||||
* 等保系统Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcDengbaoSystemMapper
|
||||
{
|
||||
/**
|
||||
* 查询等保系统
|
||||
*
|
||||
* @param id 等保系统主键
|
||||
* @return 等保系统
|
||||
*/
|
||||
public TcDengbaoSystem selectTcDengbaoSystemById(Long id);
|
||||
|
||||
/**
|
||||
* 查询等保系统列表
|
||||
*
|
||||
* @param tcDengbaoSystem 等保系统
|
||||
* @return 等保系统集合
|
||||
*/
|
||||
public List<TcDengbaoSystem> selectTcDengbaoSystemList(TcDengbaoSystem tcDengbaoSystem);
|
||||
|
||||
/**
|
||||
* 新增等保系统
|
||||
*
|
||||
* @param tcDengbaoSystem 等保系统
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcDengbaoSystem(TcDengbaoSystem tcDengbaoSystem);
|
||||
|
||||
/**
|
||||
* 修改等保系统
|
||||
*
|
||||
* @param tcDengbaoSystem 等保系统
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcDengbaoSystem(TcDengbaoSystem tcDengbaoSystem);
|
||||
|
||||
/**
|
||||
* 删除等保系统
|
||||
*
|
||||
* @param id 等保系统主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoSystemById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除等保系统
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoSystemByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcDengbaoUnit;
|
||||
|
||||
/**
|
||||
* 等保单位Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcDengbaoUnitMapper
|
||||
{
|
||||
/**
|
||||
* 查询等保单位
|
||||
*
|
||||
* @param id 等保单位主键
|
||||
* @return 等保单位
|
||||
*/
|
||||
public TcDengbaoUnit selectTcDengbaoUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 查询等保单位列表
|
||||
*
|
||||
* @param tcDengbaoUnit 等保单位
|
||||
* @return 等保单位集合
|
||||
*/
|
||||
public List<TcDengbaoUnit> selectTcDengbaoUnitList(TcDengbaoUnit tcDengbaoUnit);
|
||||
|
||||
/**
|
||||
* 新增等保单位
|
||||
*
|
||||
* @param tcDengbaoUnit 等保单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcDengbaoUnit(TcDengbaoUnit tcDengbaoUnit);
|
||||
|
||||
/**
|
||||
* 修改等保单位
|
||||
*
|
||||
* @param tcDengbaoUnit 等保单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcDengbaoUnit(TcDengbaoUnit tcDengbaoUnit);
|
||||
|
||||
/**
|
||||
* 删除等保单位
|
||||
*
|
||||
* @param id 等保单位主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除等保单位
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoUnitByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcExtworkSafetyadmin;
|
||||
|
||||
/**
|
||||
* 网络安全官Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcExtworkSafetyadminMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络安全官
|
||||
*
|
||||
* @param id 网络安全官主键
|
||||
* @return 网络安全官
|
||||
*/
|
||||
public TcExtworkSafetyadmin selectTcExtworkSafetyadminById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络安全官列表
|
||||
*
|
||||
* @param tcExtworkSafetyadmin 网络安全官
|
||||
* @return 网络安全官集合
|
||||
*/
|
||||
public List<TcExtworkSafetyadmin> selectTcExtworkSafetyadminList(TcExtworkSafetyadmin tcExtworkSafetyadmin);
|
||||
|
||||
/**
|
||||
* 新增网络安全官
|
||||
*
|
||||
* @param tcExtworkSafetyadmin 网络安全官
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcExtworkSafetyadmin(TcExtworkSafetyadmin tcExtworkSafetyadmin);
|
||||
|
||||
/**
|
||||
* 修改网络安全官
|
||||
*
|
||||
* @param tcExtworkSafetyadmin 网络安全官
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcExtworkSafetyadmin(TcExtworkSafetyadmin tcExtworkSafetyadmin);
|
||||
|
||||
/**
|
||||
* 删除网络安全官
|
||||
*
|
||||
* @param id 网络安全官主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcExtworkSafetyadminById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络安全官
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcExtworkSafetyadminByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcGovernmentWeb;
|
||||
|
||||
/**
|
||||
* 政府网站Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcGovernmentWebMapper
|
||||
{
|
||||
/**
|
||||
* 查询政府网站
|
||||
*
|
||||
* @param id 政府网站主键
|
||||
* @return 政府网站
|
||||
*/
|
||||
public TcGovernmentWeb selectTcGovernmentWebById(Long id);
|
||||
|
||||
/**
|
||||
* 查询政府网站列表
|
||||
*
|
||||
* @param tcGovernmentWeb 政府网站
|
||||
* @return 政府网站集合
|
||||
*/
|
||||
public List<TcGovernmentWeb> selectTcGovernmentWebList(TcGovernmentWeb tcGovernmentWeb);
|
||||
|
||||
/**
|
||||
* 新增政府网站
|
||||
*
|
||||
* @param tcGovernmentWeb 政府网站
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcGovernmentWeb(TcGovernmentWeb tcGovernmentWeb);
|
||||
|
||||
/**
|
||||
* 修改政府网站
|
||||
*
|
||||
* @param tcGovernmentWeb 政府网站
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcGovernmentWeb(TcGovernmentWeb tcGovernmentWeb);
|
||||
|
||||
/**
|
||||
* 删除政府网站
|
||||
*
|
||||
* @param id 政府网站主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcGovernmentWebById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除政府网站
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcGovernmentWebByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcIdcUnit;
|
||||
|
||||
/**
|
||||
* IDC单位Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcIdcUnitMapper
|
||||
{
|
||||
/**
|
||||
* 查询IDC单位
|
||||
*
|
||||
* @param id IDC单位主键
|
||||
* @return IDC单位
|
||||
*/
|
||||
public TcIdcUnit selectTcIdcUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 查询IDC单位列表
|
||||
*
|
||||
* @param tcIdcUnit IDC单位
|
||||
* @return IDC单位集合
|
||||
*/
|
||||
public List<TcIdcUnit> selectTcIdcUnitList(TcIdcUnit tcIdcUnit);
|
||||
|
||||
/**
|
||||
* 新增IDC单位
|
||||
*
|
||||
* @param tcIdcUnit IDC单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcIdcUnit(TcIdcUnit tcIdcUnit);
|
||||
|
||||
/**
|
||||
* 修改IDC单位
|
||||
*
|
||||
* @param tcIdcUnit IDC单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcIdcUnit(TcIdcUnit tcIdcUnit);
|
||||
|
||||
/**
|
||||
* 删除IDC单位
|
||||
*
|
||||
* @param id IDC单位主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcIdcUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除IDC单位
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcIdcUnitByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkArticle;
|
||||
|
||||
/**
|
||||
* 网络文章Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkArticleMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络文章
|
||||
*
|
||||
* @param id 网络文章主键
|
||||
* @return 网络文章
|
||||
*/
|
||||
public TcNetworkArticle selectTcNetworkArticleById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络文章列表
|
||||
*
|
||||
* @param tcNetworkArticle 网络文章
|
||||
* @return 网络文章集合
|
||||
*/
|
||||
public List<TcNetworkArticle> selectTcNetworkArticleList(TcNetworkArticle tcNetworkArticle);
|
||||
|
||||
/**
|
||||
* 新增网络文章
|
||||
*
|
||||
* @param tcNetworkArticle 网络文章
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkArticle(TcNetworkArticle tcNetworkArticle);
|
||||
|
||||
/**
|
||||
* 修改网络文章
|
||||
*
|
||||
* @param tcNetworkArticle 网络文章
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkArticle(TcNetworkArticle tcNetworkArticle);
|
||||
|
||||
/**
|
||||
* 删除网络文章
|
||||
*
|
||||
* @param id 网络文章主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkArticleById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络文章
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkArticleByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkEvaluate;
|
||||
|
||||
/**
|
||||
* 网评Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkEvaluateMapper
|
||||
{
|
||||
/**
|
||||
* 查询网评
|
||||
*
|
||||
* @param id 网评主键
|
||||
* @return 网评
|
||||
*/
|
||||
public TcNetworkEvaluate selectTcNetworkEvaluateById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网评列表
|
||||
*
|
||||
* @param tcNetworkEvaluate 网评
|
||||
* @return 网评集合
|
||||
*/
|
||||
public List<TcNetworkEvaluate> selectTcNetworkEvaluateList(TcNetworkEvaluate tcNetworkEvaluate);
|
||||
|
||||
/**
|
||||
* 新增网评
|
||||
*
|
||||
* @param tcNetworkEvaluate 网评
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkEvaluate(TcNetworkEvaluate tcNetworkEvaluate);
|
||||
|
||||
/**
|
||||
* 修改网评
|
||||
*
|
||||
* @param tcNetworkEvaluate 网评
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkEvaluate(TcNetworkEvaluate tcNetworkEvaluate);
|
||||
|
||||
/**
|
||||
* 删除网评
|
||||
*
|
||||
* @param id 网评主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkEvaluateById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网评
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkEvaluateByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkMqPrincipal;
|
||||
|
||||
/**
|
||||
* 网络民情责任人Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkMqPrincipalMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络民情责任人
|
||||
*
|
||||
* @param id 网络民情责任人主键
|
||||
* @return 网络民情责任人
|
||||
*/
|
||||
public TcNetworkMqPrincipal selectTcNetworkMqPrincipalById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络民情责任人列表
|
||||
*
|
||||
* @param tcNetworkMqPrincipal 网络民情责任人
|
||||
* @return 网络民情责任人集合
|
||||
*/
|
||||
public List<TcNetworkMqPrincipal> selectTcNetworkMqPrincipalList(TcNetworkMqPrincipal tcNetworkMqPrincipal);
|
||||
|
||||
/**
|
||||
* 新增网络民情责任人
|
||||
*
|
||||
* @param tcNetworkMqPrincipal 网络民情责任人
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkMqPrincipal(TcNetworkMqPrincipal tcNetworkMqPrincipal);
|
||||
|
||||
/**
|
||||
* 修改网络民情责任人
|
||||
*
|
||||
* @param tcNetworkMqPrincipal 网络民情责任人
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkMqPrincipal(TcNetworkMqPrincipal tcNetworkMqPrincipal);
|
||||
|
||||
/**
|
||||
* 删除网络民情责任人
|
||||
*
|
||||
* @param id 网络民情责任人主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkMqPrincipalById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络民情责任人
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkMqPrincipalByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkPingtai;
|
||||
|
||||
/**
|
||||
* 网络平台Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkPingtaiMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络平台
|
||||
*
|
||||
* @param id 网络平台主键
|
||||
* @return 网络平台
|
||||
*/
|
||||
public TcNetworkPingtai selectTcNetworkPingtaiById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络平台列表
|
||||
*
|
||||
* @param tcNetworkPingtai 网络平台
|
||||
* @return 网络平台集合
|
||||
*/
|
||||
public List<TcNetworkPingtai> selectTcNetworkPingtaiList(TcNetworkPingtai tcNetworkPingtai);
|
||||
|
||||
/**
|
||||
* 新增网络平台
|
||||
*
|
||||
* @param tcNetworkPingtai 网络平台
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkPingtai(TcNetworkPingtai tcNetworkPingtai);
|
||||
|
||||
/**
|
||||
* 修改网络平台
|
||||
*
|
||||
* @param tcNetworkPingtai 网络平台
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkPingtai(TcNetworkPingtai tcNetworkPingtai);
|
||||
|
||||
/**
|
||||
* 删除网络平台
|
||||
*
|
||||
* @param id 网络平台主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkPingtaiById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络平台
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkPingtaiByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkReport;
|
||||
|
||||
/**
|
||||
* 网络举报Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkReportMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络举报
|
||||
*
|
||||
* @param id 网络举报主键
|
||||
* @return 网络举报
|
||||
*/
|
||||
public TcNetworkReport selectTcNetworkReportById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络举报列表
|
||||
*
|
||||
* @param tcNetworkReport 网络举报
|
||||
* @return 网络举报集合
|
||||
*/
|
||||
public List<TcNetworkReport> selectTcNetworkReportList(TcNetworkReport tcNetworkReport);
|
||||
|
||||
/**
|
||||
* 新增网络举报
|
||||
*
|
||||
* @param tcNetworkReport 网络举报
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkReport(TcNetworkReport tcNetworkReport);
|
||||
|
||||
/**
|
||||
* 修改网络举报
|
||||
*
|
||||
* @param tcNetworkReport 网络举报
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkReport(TcNetworkReport tcNetworkReport);
|
||||
|
||||
/**
|
||||
* 删除网络举报
|
||||
*
|
||||
* @param id 网络举报主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkReportById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络举报
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkReportByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkSentiment;
|
||||
|
||||
/**
|
||||
* 网络舆情Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkSentimentMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络舆情
|
||||
*
|
||||
* @param id 网络舆情主键
|
||||
* @return 网络舆情
|
||||
*/
|
||||
public TcNetworkSentiment selectTcNetworkSentimentById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络舆情列表
|
||||
*
|
||||
* @param tcNetworkSentiment 网络舆情
|
||||
* @return 网络舆情集合
|
||||
*/
|
||||
public List<TcNetworkSentiment> selectTcNetworkSentimentList(TcNetworkSentiment tcNetworkSentiment);
|
||||
|
||||
/**
|
||||
* 新增网络舆情
|
||||
*
|
||||
* @param tcNetworkSentiment 网络舆情
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkSentiment(TcNetworkSentiment tcNetworkSentiment);
|
||||
|
||||
/**
|
||||
* 修改网络舆情
|
||||
*
|
||||
* @param tcNetworkSentiment 网络舆情
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkSentiment(TcNetworkSentiment tcNetworkSentiment);
|
||||
|
||||
/**
|
||||
* 删除网络舆情
|
||||
*
|
||||
* @param id 网络舆情主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkSentimentById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络舆情
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkSentimentByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkSupportUnit;
|
||||
|
||||
/**
|
||||
* 网络安全支持单位Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkSupportUnitMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络安全支持单位
|
||||
*
|
||||
* @param id 网络安全支持单位主键
|
||||
* @return 网络安全支持单位
|
||||
*/
|
||||
public TcNetworkSupportUnit selectTcNetworkSupportUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络安全支持单位列表
|
||||
*
|
||||
* @param tcNetworkSupportUnit 网络安全支持单位
|
||||
* @return 网络安全支持单位集合
|
||||
*/
|
||||
public List<TcNetworkSupportUnit> selectTcNetworkSupportUnitList(TcNetworkSupportUnit tcNetworkSupportUnit);
|
||||
|
||||
/**
|
||||
* 新增网络安全支持单位
|
||||
*
|
||||
* @param tcNetworkSupportUnit 网络安全支持单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkSupportUnit(TcNetworkSupportUnit tcNetworkSupportUnit);
|
||||
|
||||
/**
|
||||
* 修改网络安全支持单位
|
||||
*
|
||||
* @param tcNetworkSupportUnit 网络安全支持单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkSupportUnit(TcNetworkSupportUnit tcNetworkSupportUnit);
|
||||
|
||||
/**
|
||||
* 删除网络安全支持单位
|
||||
*
|
||||
* @param id 网络安全支持单位主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkSupportUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络安全支持单位
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkSupportUnitByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkVolunteer;
|
||||
|
||||
/**
|
||||
* 网络文明自愿者Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcNetworkVolunteerMapper
|
||||
{
|
||||
/**
|
||||
* 查询网络文明自愿者
|
||||
*
|
||||
* @param id 网络文明自愿者主键
|
||||
* @return 网络文明自愿者
|
||||
*/
|
||||
public TcNetworkVolunteer selectTcNetworkVolunteerById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络文明自愿者列表
|
||||
*
|
||||
* @param tcNetworkVolunteer 网络文明自愿者
|
||||
* @return 网络文明自愿者集合
|
||||
*/
|
||||
public List<TcNetworkVolunteer> selectTcNetworkVolunteerList(TcNetworkVolunteer tcNetworkVolunteer);
|
||||
|
||||
/**
|
||||
* 新增网络文明自愿者
|
||||
*
|
||||
* @param tcNetworkVolunteer 网络文明自愿者
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkVolunteer(TcNetworkVolunteer tcNetworkVolunteer);
|
||||
|
||||
/**
|
||||
* 修改网络文明自愿者
|
||||
*
|
||||
* @param tcNetworkVolunteer 网络文明自愿者
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkVolunteer(TcNetworkVolunteer tcNetworkVolunteer);
|
||||
|
||||
/**
|
||||
* 删除网络文明自愿者
|
||||
*
|
||||
* @param id 网络文明自愿者主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkVolunteerById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除网络文明自愿者
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkVolunteerByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcQinglangZhuanxiang;
|
||||
|
||||
/**
|
||||
* 清朗专项Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcQinglangZhuanxiangMapper
|
||||
{
|
||||
/**
|
||||
* 查询清朗专项
|
||||
*
|
||||
* @param id 清朗专项主键
|
||||
* @return 清朗专项
|
||||
*/
|
||||
public TcQinglangZhuanxiang selectTcQinglangZhuanxiangById(Long id);
|
||||
|
||||
/**
|
||||
* 查询清朗专项列表
|
||||
*
|
||||
* @param tcQinglangZhuanxiang 清朗专项
|
||||
* @return 清朗专项集合
|
||||
*/
|
||||
public List<TcQinglangZhuanxiang> selectTcQinglangZhuanxiangList(TcQinglangZhuanxiang tcQinglangZhuanxiang);
|
||||
|
||||
/**
|
||||
* 新增清朗专项
|
||||
*
|
||||
* @param tcQinglangZhuanxiang 清朗专项
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcQinglangZhuanxiang(TcQinglangZhuanxiang tcQinglangZhuanxiang);
|
||||
|
||||
/**
|
||||
* 修改清朗专项
|
||||
*
|
||||
* @param tcQinglangZhuanxiang 清朗专项
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcQinglangZhuanxiang(TcQinglangZhuanxiang tcQinglangZhuanxiang);
|
||||
|
||||
/**
|
||||
* 删除清朗专项
|
||||
*
|
||||
* @param id 清朗专项主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcQinglangZhuanxiangById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除清朗专项
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcQinglangZhuanxiangByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcSafetyDanger;
|
||||
|
||||
/**
|
||||
* 监管单位Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcSafetyDangerMapper
|
||||
{
|
||||
/**
|
||||
* 查询监管单位
|
||||
*
|
||||
* @param id 监管单位主键
|
||||
* @return 监管单位
|
||||
*/
|
||||
public TcSafetyDanger selectTcSafetyDangerById(Long id);
|
||||
|
||||
/**
|
||||
* 查询监管单位列表
|
||||
*
|
||||
* @param tcSafetyDanger 监管单位
|
||||
* @return 监管单位集合
|
||||
*/
|
||||
public List<TcSafetyDanger> selectTcSafetyDangerList(TcSafetyDanger tcSafetyDanger);
|
||||
|
||||
/**
|
||||
* 新增监管单位
|
||||
*
|
||||
* @param tcSafetyDanger 监管单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcSafetyDanger(TcSafetyDanger tcSafetyDanger);
|
||||
|
||||
/**
|
||||
* 修改监管单位
|
||||
*
|
||||
* @param tcSafetyDanger 监管单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcSafetyDanger(TcSafetyDanger tcSafetyDanger);
|
||||
|
||||
/**
|
||||
* 删除监管单位
|
||||
*
|
||||
* @param id 监管单位主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcSafetyDangerById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除监管单位
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcSafetyDangerByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcSafetyDetection;
|
||||
|
||||
/**
|
||||
* 安全检测Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcSafetyDetectionMapper
|
||||
{
|
||||
/**
|
||||
* 查询安全检测
|
||||
*
|
||||
* @param id 安全检测主键
|
||||
* @return 安全检测
|
||||
*/
|
||||
public TcSafetyDetection selectTcSafetyDetectionById(Long id);
|
||||
|
||||
/**
|
||||
* 查询安全检测列表
|
||||
*
|
||||
* @param tcSafetyDetection 安全检测
|
||||
* @return 安全检测集合
|
||||
*/
|
||||
public List<TcSafetyDetection> selectTcSafetyDetectionList(TcSafetyDetection tcSafetyDetection);
|
||||
|
||||
/**
|
||||
* 新增安全检测
|
||||
*
|
||||
* @param tcSafetyDetection 安全检测
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcSafetyDetection(TcSafetyDetection tcSafetyDetection);
|
||||
|
||||
/**
|
||||
* 修改安全检测
|
||||
*
|
||||
* @param tcSafetyDetection 安全检测
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcSafetyDetection(TcSafetyDetection tcSafetyDetection);
|
||||
|
||||
/**
|
||||
* 删除安全检测
|
||||
*
|
||||
* @param id 安全检测主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcSafetyDetectionById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除安全检测
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcSafetyDetectionByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcTown;
|
||||
|
||||
/**
|
||||
* 区域Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcTownMapper
|
||||
{
|
||||
/**
|
||||
* 查询区域
|
||||
*
|
||||
* @param id 区域主键
|
||||
* @return 区域
|
||||
*/
|
||||
public TcTown selectTcTownById(Long id);
|
||||
|
||||
/**
|
||||
* 查询区域列表
|
||||
*
|
||||
* @param tcTown 区域
|
||||
* @return 区域集合
|
||||
*/
|
||||
public List<TcTown> selectTcTownList(TcTown tcTown);
|
||||
|
||||
/**
|
||||
* 新增区域
|
||||
*
|
||||
* @param tcTown 区域
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcTown(TcTown tcTown);
|
||||
|
||||
/**
|
||||
* 修改区域
|
||||
*
|
||||
* @param tcTown 区域
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcTown(TcTown tcTown);
|
||||
|
||||
/**
|
||||
* 删除区域
|
||||
*
|
||||
* @param id 区域主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcTownById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除区域
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcTownByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcWorkDongtai;
|
||||
|
||||
/**
|
||||
* 工作动态Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcWorkDongtaiMapper
|
||||
{
|
||||
/**
|
||||
* 查询工作动态
|
||||
*
|
||||
* @param id 工作动态主键
|
||||
* @return 工作动态
|
||||
*/
|
||||
public TcWorkDongtai selectTcWorkDongtaiById(Long id);
|
||||
|
||||
/**
|
||||
* 查询工作动态列表
|
||||
*
|
||||
* @param tcWorkDongtai 工作动态
|
||||
* @return 工作动态集合
|
||||
*/
|
||||
public List<TcWorkDongtai> selectTcWorkDongtaiList(TcWorkDongtai tcWorkDongtai);
|
||||
|
||||
/**
|
||||
* 新增工作动态
|
||||
*
|
||||
* @param tcWorkDongtai 工作动态
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcWorkDongtai(TcWorkDongtai tcWorkDongtai);
|
||||
|
||||
/**
|
||||
* 修改工作动态
|
||||
*
|
||||
* @param tcWorkDongtai 工作动态
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcWorkDongtai(TcWorkDongtai tcWorkDongtai);
|
||||
|
||||
/**
|
||||
* 删除工作动态
|
||||
*
|
||||
* @param id 工作动态主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcWorkDongtaiById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除工作动态
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcWorkDongtaiByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcZhongdianDomain;
|
||||
|
||||
/**
|
||||
* 重点领域监管Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcZhongdianDomainMapper
|
||||
{
|
||||
/**
|
||||
* 查询重点领域监管
|
||||
*
|
||||
* @param id 重点领域监管主键
|
||||
* @return 重点领域监管
|
||||
*/
|
||||
public TcZhongdianDomain selectTcZhongdianDomainById(Long id);
|
||||
|
||||
/**
|
||||
* 查询重点领域监管列表
|
||||
*
|
||||
* @param tcZhongdianDomain 重点领域监管
|
||||
* @return 重点领域监管集合
|
||||
*/
|
||||
public List<TcZhongdianDomain> selectTcZhongdianDomainList(TcZhongdianDomain tcZhongdianDomain);
|
||||
|
||||
/**
|
||||
* 新增重点领域监管
|
||||
*
|
||||
* @param tcZhongdianDomain 重点领域监管
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcZhongdianDomain(TcZhongdianDomain tcZhongdianDomain);
|
||||
|
||||
/**
|
||||
* 修改重点领域监管
|
||||
*
|
||||
* @param tcZhongdianDomain 重点领域监管
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcZhongdianDomain(TcZhongdianDomain tcZhongdianDomain);
|
||||
|
||||
/**
|
||||
* 删除重点领域监管
|
||||
*
|
||||
* @param id 重点领域监管主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcZhongdianDomainById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除重点领域监管
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcZhongdianDomainByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcZhongdianEnterprise;
|
||||
|
||||
/**
|
||||
* 重点企业名录Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcZhongdianEnterpriseMapper
|
||||
{
|
||||
/**
|
||||
* 查询重点企业名录
|
||||
*
|
||||
* @param id 重点企业名录主键
|
||||
* @return 重点企业名录
|
||||
*/
|
||||
public TcZhongdianEnterprise selectTcZhongdianEnterpriseById(Long id);
|
||||
|
||||
/**
|
||||
* 查询重点企业名录列表
|
||||
*
|
||||
* @param tcZhongdianEnterprise 重点企业名录
|
||||
* @return 重点企业名录集合
|
||||
*/
|
||||
public List<TcZhongdianEnterprise> selectTcZhongdianEnterpriseList(TcZhongdianEnterprise tcZhongdianEnterprise);
|
||||
|
||||
/**
|
||||
* 新增重点企业名录
|
||||
*
|
||||
* @param tcZhongdianEnterprise 重点企业名录
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcZhongdianEnterprise(TcZhongdianEnterprise tcZhongdianEnterprise);
|
||||
|
||||
/**
|
||||
* 修改重点企业名录
|
||||
*
|
||||
* @param tcZhongdianEnterprise 重点企业名录
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcZhongdianEnterprise(TcZhongdianEnterprise tcZhongdianEnterprise);
|
||||
|
||||
/**
|
||||
* 删除重点企业名录
|
||||
*
|
||||
* @param id 重点企业名录主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcZhongdianEnterpriseById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除重点企业名录
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcZhongdianEnterpriseByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcZhongdianWork;
|
||||
|
||||
/**
|
||||
* 重点工作项目Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface TcZhongdianWorkMapper
|
||||
{
|
||||
/**
|
||||
* 查询重点工作项目
|
||||
*
|
||||
* @param id 重点工作项目主键
|
||||
* @return 重点工作项目
|
||||
*/
|
||||
public TcZhongdianWork selectTcZhongdianWorkById(Long id);
|
||||
|
||||
/**
|
||||
* 查询重点工作项目列表
|
||||
*
|
||||
* @param tcZhongdianWork 重点工作项目
|
||||
* @return 重点工作项目集合
|
||||
*/
|
||||
public List<TcZhongdianWork> selectTcZhongdianWorkList(TcZhongdianWork tcZhongdianWork);
|
||||
|
||||
/**
|
||||
* 新增重点工作项目
|
||||
*
|
||||
* @param tcZhongdianWork 重点工作项目
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcZhongdianWork(TcZhongdianWork tcZhongdianWork);
|
||||
|
||||
/**
|
||||
* 修改重点工作项目
|
||||
*
|
||||
* @param tcZhongdianWork 重点工作项目
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcZhongdianWork(TcZhongdianWork tcZhongdianWork);
|
||||
|
||||
/**
|
||||
* 删除重点工作项目
|
||||
*
|
||||
* @param id 重点工作项目主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcZhongdianWorkById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除重点工作项目
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcZhongdianWorkByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcCommentator;
|
||||
|
||||
/**
|
||||
* 网评员Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcCommentatorService
|
||||
{
|
||||
/**
|
||||
* 查询网评员
|
||||
*
|
||||
* @param id 网评员主键
|
||||
* @return 网评员
|
||||
*/
|
||||
public TcCommentator selectTcCommentatorById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网评员列表
|
||||
*
|
||||
* @param tcCommentator 网评员
|
||||
* @return 网评员集合
|
||||
*/
|
||||
public List<TcCommentator> selectTcCommentatorList(TcCommentator tcCommentator);
|
||||
|
||||
/**
|
||||
* 新增网评员
|
||||
*
|
||||
* @param tcCommentator 网评员
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcCommentator(TcCommentator tcCommentator);
|
||||
|
||||
/**
|
||||
* 修改网评员
|
||||
*
|
||||
* @param tcCommentator 网评员
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcCommentator(TcCommentator tcCommentator);
|
||||
|
||||
/**
|
||||
* 批量删除网评员
|
||||
*
|
||||
* @param ids 需要删除的网评员主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcCommentatorByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除网评员信息
|
||||
*
|
||||
* @param id 网评员主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcCommentatorById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcDataSource;
|
||||
|
||||
/**
|
||||
* 数据来源Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcDataSourceService
|
||||
{
|
||||
/**
|
||||
* 查询数据来源
|
||||
*
|
||||
* @param id 数据来源主键
|
||||
* @return 数据来源
|
||||
*/
|
||||
public TcDataSource selectTcDataSourceById(Long id);
|
||||
|
||||
/**
|
||||
* 查询数据来源列表
|
||||
*
|
||||
* @param tcDataSource 数据来源
|
||||
* @return 数据来源集合
|
||||
*/
|
||||
public List<TcDataSource> selectTcDataSourceList(TcDataSource tcDataSource);
|
||||
|
||||
/**
|
||||
* 新增数据来源
|
||||
*
|
||||
* @param tcDataSource 数据来源
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcDataSource(TcDataSource tcDataSource);
|
||||
|
||||
/**
|
||||
* 修改数据来源
|
||||
*
|
||||
* @param tcDataSource 数据来源
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcDataSource(TcDataSource tcDataSource);
|
||||
|
||||
/**
|
||||
* 批量删除数据来源
|
||||
*
|
||||
* @param ids 需要删除的数据来源主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDataSourceByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除数据来源信息
|
||||
*
|
||||
* @param id 数据来源主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDataSourceById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcDengbaoSystem;
|
||||
|
||||
/**
|
||||
* 等保系统Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcDengbaoSystemService
|
||||
{
|
||||
/**
|
||||
* 查询等保系统
|
||||
*
|
||||
* @param id 等保系统主键
|
||||
* @return 等保系统
|
||||
*/
|
||||
public TcDengbaoSystem selectTcDengbaoSystemById(Long id);
|
||||
|
||||
/**
|
||||
* 查询等保系统列表
|
||||
*
|
||||
* @param tcDengbaoSystem 等保系统
|
||||
* @return 等保系统集合
|
||||
*/
|
||||
public List<TcDengbaoSystem> selectTcDengbaoSystemList(TcDengbaoSystem tcDengbaoSystem);
|
||||
|
||||
/**
|
||||
* 新增等保系统
|
||||
*
|
||||
* @param tcDengbaoSystem 等保系统
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcDengbaoSystem(TcDengbaoSystem tcDengbaoSystem);
|
||||
|
||||
/**
|
||||
* 修改等保系统
|
||||
*
|
||||
* @param tcDengbaoSystem 等保系统
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcDengbaoSystem(TcDengbaoSystem tcDengbaoSystem);
|
||||
|
||||
/**
|
||||
* 批量删除等保系统
|
||||
*
|
||||
* @param ids 需要删除的等保系统主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoSystemByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除等保系统信息
|
||||
*
|
||||
* @param id 等保系统主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoSystemById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcDengbaoUnit;
|
||||
|
||||
/**
|
||||
* 等保单位Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcDengbaoUnitService
|
||||
{
|
||||
/**
|
||||
* 查询等保单位
|
||||
*
|
||||
* @param id 等保单位主键
|
||||
* @return 等保单位
|
||||
*/
|
||||
public TcDengbaoUnit selectTcDengbaoUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 查询等保单位列表
|
||||
*
|
||||
* @param tcDengbaoUnit 等保单位
|
||||
* @return 等保单位集合
|
||||
*/
|
||||
public List<TcDengbaoUnit> selectTcDengbaoUnitList(TcDengbaoUnit tcDengbaoUnit);
|
||||
|
||||
/**
|
||||
* 新增等保单位
|
||||
*
|
||||
* @param tcDengbaoUnit 等保单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcDengbaoUnit(TcDengbaoUnit tcDengbaoUnit);
|
||||
|
||||
/**
|
||||
* 修改等保单位
|
||||
*
|
||||
* @param tcDengbaoUnit 等保单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcDengbaoUnit(TcDengbaoUnit tcDengbaoUnit);
|
||||
|
||||
/**
|
||||
* 批量删除等保单位
|
||||
*
|
||||
* @param ids 需要删除的等保单位主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoUnitByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除等保单位信息
|
||||
*
|
||||
* @param id 等保单位主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcDengbaoUnitById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcExtworkSafetyadmin;
|
||||
|
||||
/**
|
||||
* 网络安全官Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcExtworkSafetyadminService
|
||||
{
|
||||
/**
|
||||
* 查询网络安全官
|
||||
*
|
||||
* @param id 网络安全官主键
|
||||
* @return 网络安全官
|
||||
*/
|
||||
public TcExtworkSafetyadmin selectTcExtworkSafetyadminById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络安全官列表
|
||||
*
|
||||
* @param tcExtworkSafetyadmin 网络安全官
|
||||
* @return 网络安全官集合
|
||||
*/
|
||||
public List<TcExtworkSafetyadmin> selectTcExtworkSafetyadminList(TcExtworkSafetyadmin tcExtworkSafetyadmin);
|
||||
|
||||
/**
|
||||
* 新增网络安全官
|
||||
*
|
||||
* @param tcExtworkSafetyadmin 网络安全官
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcExtworkSafetyadmin(TcExtworkSafetyadmin tcExtworkSafetyadmin);
|
||||
|
||||
/**
|
||||
* 修改网络安全官
|
||||
*
|
||||
* @param tcExtworkSafetyadmin 网络安全官
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcExtworkSafetyadmin(TcExtworkSafetyadmin tcExtworkSafetyadmin);
|
||||
|
||||
/**
|
||||
* 批量删除网络安全官
|
||||
*
|
||||
* @param ids 需要删除的网络安全官主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcExtworkSafetyadminByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除网络安全官信息
|
||||
*
|
||||
* @param id 网络安全官主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcExtworkSafetyadminById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcGovernmentWeb;
|
||||
|
||||
/**
|
||||
* 政府网站Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcGovernmentWebService
|
||||
{
|
||||
/**
|
||||
* 查询政府网站
|
||||
*
|
||||
* @param id 政府网站主键
|
||||
* @return 政府网站
|
||||
*/
|
||||
public TcGovernmentWeb selectTcGovernmentWebById(Long id);
|
||||
|
||||
/**
|
||||
* 查询政府网站列表
|
||||
*
|
||||
* @param tcGovernmentWeb 政府网站
|
||||
* @return 政府网站集合
|
||||
*/
|
||||
public List<TcGovernmentWeb> selectTcGovernmentWebList(TcGovernmentWeb tcGovernmentWeb);
|
||||
|
||||
/**
|
||||
* 新增政府网站
|
||||
*
|
||||
* @param tcGovernmentWeb 政府网站
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcGovernmentWeb(TcGovernmentWeb tcGovernmentWeb);
|
||||
|
||||
/**
|
||||
* 修改政府网站
|
||||
*
|
||||
* @param tcGovernmentWeb 政府网站
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcGovernmentWeb(TcGovernmentWeb tcGovernmentWeb);
|
||||
|
||||
/**
|
||||
* 批量删除政府网站
|
||||
*
|
||||
* @param ids 需要删除的政府网站主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcGovernmentWebByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除政府网站信息
|
||||
*
|
||||
* @param id 政府网站主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcGovernmentWebById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcIdcUnit;
|
||||
|
||||
/**
|
||||
* IDC单位Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcIdcUnitService
|
||||
{
|
||||
/**
|
||||
* 查询IDC单位
|
||||
*
|
||||
* @param id IDC单位主键
|
||||
* @return IDC单位
|
||||
*/
|
||||
public TcIdcUnit selectTcIdcUnitById(Long id);
|
||||
|
||||
/**
|
||||
* 查询IDC单位列表
|
||||
*
|
||||
* @param tcIdcUnit IDC单位
|
||||
* @return IDC单位集合
|
||||
*/
|
||||
public List<TcIdcUnit> selectTcIdcUnitList(TcIdcUnit tcIdcUnit);
|
||||
|
||||
/**
|
||||
* 新增IDC单位
|
||||
*
|
||||
* @param tcIdcUnit IDC单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcIdcUnit(TcIdcUnit tcIdcUnit);
|
||||
|
||||
/**
|
||||
* 修改IDC单位
|
||||
*
|
||||
* @param tcIdcUnit IDC单位
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcIdcUnit(TcIdcUnit tcIdcUnit);
|
||||
|
||||
/**
|
||||
* 批量删除IDC单位
|
||||
*
|
||||
* @param ids 需要删除的IDC单位主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcIdcUnitByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除IDC单位信息
|
||||
*
|
||||
* @param id IDC单位主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcIdcUnitById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkArticle;
|
||||
|
||||
/**
|
||||
* 网络文章Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcNetworkArticleService
|
||||
{
|
||||
/**
|
||||
* 查询网络文章
|
||||
*
|
||||
* @param id 网络文章主键
|
||||
* @return 网络文章
|
||||
*/
|
||||
public TcNetworkArticle selectTcNetworkArticleById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网络文章列表
|
||||
*
|
||||
* @param tcNetworkArticle 网络文章
|
||||
* @return 网络文章集合
|
||||
*/
|
||||
public List<TcNetworkArticle> selectTcNetworkArticleList(TcNetworkArticle tcNetworkArticle);
|
||||
|
||||
/**
|
||||
* 新增网络文章
|
||||
*
|
||||
* @param tcNetworkArticle 网络文章
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkArticle(TcNetworkArticle tcNetworkArticle);
|
||||
|
||||
/**
|
||||
* 修改网络文章
|
||||
*
|
||||
* @param tcNetworkArticle 网络文章
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkArticle(TcNetworkArticle tcNetworkArticle);
|
||||
|
||||
/**
|
||||
* 批量删除网络文章
|
||||
*
|
||||
* @param ids 需要删除的网络文章主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkArticleByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除网络文章信息
|
||||
*
|
||||
* @param id 网络文章主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkArticleById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.zongzhi.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.zongzhi.domain.TcNetworkEvaluate;
|
||||
|
||||
/**
|
||||
* 网评Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-08-10
|
||||
*/
|
||||
public interface ITcNetworkEvaluateService
|
||||
{
|
||||
/**
|
||||
* 查询网评
|
||||
*
|
||||
* @param id 网评主键
|
||||
* @return 网评
|
||||
*/
|
||||
public TcNetworkEvaluate selectTcNetworkEvaluateById(Long id);
|
||||
|
||||
/**
|
||||
* 查询网评列表
|
||||
*
|
||||
* @param tcNetworkEvaluate 网评
|
||||
* @return 网评集合
|
||||
*/
|
||||
public List<TcNetworkEvaluate> selectTcNetworkEvaluateList(TcNetworkEvaluate tcNetworkEvaluate);
|
||||
|
||||
/**
|
||||
* 新增网评
|
||||
*
|
||||
* @param tcNetworkEvaluate 网评
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTcNetworkEvaluate(TcNetworkEvaluate tcNetworkEvaluate);
|
||||
|
||||
/**
|
||||
* 修改网评
|
||||
*
|
||||
* @param tcNetworkEvaluate 网评
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTcNetworkEvaluate(TcNetworkEvaluate tcNetworkEvaluate);
|
||||
|
||||
/**
|
||||
* 批量删除网评
|
||||
*
|
||||
* @param ids 需要删除的网评主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkEvaluateByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除网评信息
|
||||
*
|
||||
* @param id 网评主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTcNetworkEvaluateById(Long id);
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue