duhanyu
吕天方 1 year ago
parent 684bae8c9f
commit 59b69168d9

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcBzhan;
import com.ruoyi.tcZz.service.ITcBzhanService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* BController
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/bzhan")
public class TcBzhanController extends BaseController
{
@Autowired
private ITcBzhanService tcBzhanService;
/**
* B
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:bzhan:list')")
@GetMapping("/list")
public TableDataInfo list(TcBzhan tcBzhan)
{
startPage();
List<TcBzhan> list = tcBzhanService.selectTcBzhanList(tcBzhan);
return getDataTable(list);
}
/**
* B
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:bzhan:export')")
@Log(title = "B站、小红书", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcBzhan tcBzhan)
{
List<TcBzhan> list = tcBzhanService.selectTcBzhanList(tcBzhan);
ExcelUtil<TcBzhan> util = new ExcelUtil<TcBzhan>(TcBzhan.class);
util.exportExcel(response, list, "B站、小红书数据");
}
/**
* B
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:bzhan:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcBzhanService.selectTcBzhanById(id));
}
/**
* B
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:bzhan:add')")
@Log(title = "B站、小红书", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcBzhan tcBzhan)
{
return toAjax(tcBzhanService.insertTcBzhan(tcBzhan));
}
/**
* B
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:bzhan:edit')")
@Log(title = "B站、小红书", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcBzhan tcBzhan)
{
return toAjax(tcBzhanService.updateTcBzhan(tcBzhan));
}
/**
* B
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:bzhan:remove')")
@Log(title = "B站、小红书", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcBzhanService.deleteTcBzhanByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcDy;
import com.ruoyi.tcZz.service.ITcDyService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/dy")
public class TcDyController extends BaseController
{
@Autowired
private ITcDyService tcDyService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:dy:list')")
@GetMapping("/list")
public TableDataInfo list(TcDy tcDy)
{
startPage();
List<TcDy> list = tcDyService.selectTcDyList(tcDy);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:dy:export')")
@Log(title = "抖音", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcDy tcDy)
{
List<TcDy> list = tcDyService.selectTcDyList(tcDy);
ExcelUtil<TcDy> util = new ExcelUtil<TcDy>(TcDy.class);
util.exportExcel(response, list, "抖音数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:dy:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcDyService.selectTcDyById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:dy:add')")
@Log(title = "抖音", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcDy tcDy)
{
return toAjax(tcDyService.insertTcDy(tcDy));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:dy:edit')")
@Log(title = "抖音", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcDy tcDy)
{
return toAjax(tcDyService.updateTcDy(tcDy));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:dy:remove')")
@Log(title = "抖音", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcDyService.deleteTcDyByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcJbmap;
import com.ruoyi.tcZz.service.ITcJbmapService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/jbmap")
public class TcJbmapController extends BaseController
{
@Autowired
private ITcJbmapService tcJbmapService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbmap:list')")
@GetMapping("/list")
public TableDataInfo list(TcJbmap tcJbmap)
{
startPage();
List<TcJbmap> list = tcJbmapService.selectTcJbmapList(tcJbmap);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbmap:export')")
@Log(title = "举报地图", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcJbmap tcJbmap)
{
List<TcJbmap> list = tcJbmapService.selectTcJbmapList(tcJbmap);
ExcelUtil<TcJbmap> util = new ExcelUtil<TcJbmap>(TcJbmap.class);
util.exportExcel(response, list, "举报地图数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbmap:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcJbmapService.selectTcJbmapById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbmap:add')")
@Log(title = "举报地图", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcJbmap tcJbmap)
{
return toAjax(tcJbmapService.insertTcJbmap(tcJbmap));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbmap:edit')")
@Log(title = "举报地图", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcJbmap tcJbmap)
{
return toAjax(tcJbmapService.updateTcJbmap(tcJbmap));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbmap:remove')")
@Log(title = "举报地图", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcJbmapService.deleteTcJbmapByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcJbsjndfltj;
import com.ruoyi.tcZz.service.ITcJbsjndfltjService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/jbsjndfltj")
public class TcJbsjndfltjController extends BaseController
{
@Autowired
private ITcJbsjndfltjService tcJbsjndfltjService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbsjndfltj:list')")
@GetMapping("/list")
public TableDataInfo list(TcJbsjndfltj tcJbsjndfltj)
{
startPage();
List<TcJbsjndfltj> list = tcJbsjndfltjService.selectTcJbsjndfltjList(tcJbsjndfltj);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbsjndfltj:export')")
@Log(title = "举报事件年度分类统计", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcJbsjndfltj tcJbsjndfltj)
{
List<TcJbsjndfltj> list = tcJbsjndfltjService.selectTcJbsjndfltjList(tcJbsjndfltj);
ExcelUtil<TcJbsjndfltj> util = new ExcelUtil<TcJbsjndfltj>(TcJbsjndfltj.class);
util.exportExcel(response, list, "举报事件年度分类统计数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbsjndfltj:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcJbsjndfltjService.selectTcJbsjndfltjById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbsjndfltj:add')")
@Log(title = "举报事件年度分类统计", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcJbsjndfltj tcJbsjndfltj)
{
return toAjax(tcJbsjndfltjService.insertTcJbsjndfltj(tcJbsjndfltj));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbsjndfltj:edit')")
@Log(title = "举报事件年度分类统计", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcJbsjndfltj tcJbsjndfltj)
{
return toAjax(tcJbsjndfltjService.updateTcJbsjndfltj(tcJbsjndfltj));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:jbsjndfltj:remove')")
@Log(title = "举报事件年度分类统计", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcJbsjndfltjService.deleteTcJbsjndfltjByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcQlzxxddt;
import com.ruoyi.tcZz.service.ITcQlzxxddtService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/qlzxxddt")
public class TcQlzxxddtController extends BaseController
{
@Autowired
private ITcQlzxxddtService tcQlzxxddtService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxddt:list')")
@GetMapping("/list")
public TableDataInfo list(TcQlzxxddt tcQlzxxddt)
{
startPage();
List<TcQlzxxddt> list = tcQlzxxddtService.selectTcQlzxxddtList(tcQlzxxddt);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxddt:export')")
@Log(title = "清朗专项行动动态", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcQlzxxddt tcQlzxxddt)
{
List<TcQlzxxddt> list = tcQlzxxddtService.selectTcQlzxxddtList(tcQlzxxddt);
ExcelUtil<TcQlzxxddt> util = new ExcelUtil<TcQlzxxddt>(TcQlzxxddt.class);
util.exportExcel(response, list, "清朗专项行动动态数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxddt:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcQlzxxddtService.selectTcQlzxxddtById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxddt:add')")
@Log(title = "清朗专项行动动态", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcQlzxxddt tcQlzxxddt)
{
return toAjax(tcQlzxxddtService.insertTcQlzxxddt(tcQlzxxddt));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxddt:edit')")
@Log(title = "清朗专项行动动态", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcQlzxxddt tcQlzxxddt)
{
return toAjax(tcQlzxxddtService.updateTcQlzxxddt(tcQlzxxddt));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxddt:remove')")
@Log(title = "清朗专项行动动态", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcQlzxxddtService.deleteTcQlzxxddtByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcQlzxxdsjtj;
import com.ruoyi.tcZz.service.ITcQlzxxdsjtjService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/qlzxxdsjtj")
public class TcQlzxxdsjtjController extends BaseController
{
@Autowired
private ITcQlzxxdsjtjService tcQlzxxdsjtjService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxdsjtj:list')")
@GetMapping("/list")
public TableDataInfo list(TcQlzxxdsjtj tcQlzxxdsjtj)
{
startPage();
List<TcQlzxxdsjtj> list = tcQlzxxdsjtjService.selectTcQlzxxdsjtjList(tcQlzxxdsjtj);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxdsjtj:export')")
@Log(title = "清郎专项行动数据统计", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcQlzxxdsjtj tcQlzxxdsjtj)
{
List<TcQlzxxdsjtj> list = tcQlzxxdsjtjService.selectTcQlzxxdsjtjList(tcQlzxxdsjtj);
ExcelUtil<TcQlzxxdsjtj> util = new ExcelUtil<TcQlzxxdsjtj>(TcQlzxxdsjtj.class);
util.exportExcel(response, list, "清郎专项行动数据统计数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxdsjtj:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcQlzxxdsjtjService.selectTcQlzxxdsjtjById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxdsjtj:add')")
@Log(title = "清郎专项行动数据统计", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcQlzxxdsjtj tcQlzxxdsjtj)
{
return toAjax(tcQlzxxdsjtjService.insertTcQlzxxdsjtj(tcQlzxxdsjtj));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxdsjtj:edit')")
@Log(title = "清郎专项行动数据统计", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcQlzxxdsjtj tcQlzxxdsjtj)
{
return toAjax(tcQlzxxdsjtjService.updateTcQlzxxdsjtj(tcQlzxxdsjtj));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:qlzxxdsjtj:remove')")
@Log(title = "清郎专项行动数据统计", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcQlzxxdsjtjService.deleteTcQlzxxdsjtjByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcTtsum;
import com.ruoyi.tcZz.service.ITcTtsumService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/ttsum")
public class TcTtsumController extends BaseController
{
@Autowired
private ITcTtsumService tcTtsumService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:ttsum:list')")
@GetMapping("/list")
public TableDataInfo list(TcTtsum tcTtsum)
{
startPage();
List<TcTtsum> list = tcTtsumService.selectTcTtsumList(tcTtsum);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:ttsum:export')")
@Log(title = "今日头条、快手", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcTtsum tcTtsum)
{
List<TcTtsum> list = tcTtsumService.selectTcTtsumList(tcTtsum);
ExcelUtil<TcTtsum> util = new ExcelUtil<TcTtsum>(TcTtsum.class);
util.exportExcel(response, list, "今日头条、快手数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:ttsum:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcTtsumService.selectTcTtsumById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:ttsum:add')")
@Log(title = "今日头条、快手", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcTtsum tcTtsum)
{
return toAjax(tcTtsumService.insertTcTtsum(tcTtsum));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:ttsum:edit')")
@Log(title = "今日头条、快手", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcTtsum tcTtsum)
{
return toAjax(tcTtsumService.updateTcTtsum(tcTtsum));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:ttsum:remove')")
@Log(title = "今日头条、快手", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcTtsumService.deleteTcTtsumByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcVx;
import com.ruoyi.tcZz.service.ITcVxService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/vx")
public class TcVxController extends BaseController
{
@Autowired
private ITcVxService tcVxService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:vx:list')")
@GetMapping("/list")
public TableDataInfo list(TcVx tcVx)
{
startPage();
List<TcVx> list = tcVxService.selectTcVxList(tcVx);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:vx:export')")
@Log(title = "微信", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcVx tcVx)
{
List<TcVx> list = tcVxService.selectTcVxList(tcVx);
ExcelUtil<TcVx> util = new ExcelUtil<TcVx>(TcVx.class);
util.exportExcel(response, list, "微信数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:vx:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcVxService.selectTcVxById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:vx:add')")
@Log(title = "微信", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcVx tcVx)
{
return toAjax(tcVxService.insertTcVx(tcVx));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:vx:edit')")
@Log(title = "微信", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcVx tcVx)
{
return toAjax(tcVxService.updateTcVx(tcVx));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:vx:remove')")
@Log(title = "微信", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcVxService.deleteTcVxByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcWb;
import com.ruoyi.tcZz.service.ITcWbService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/wb")
public class TcWbController extends BaseController
{
@Autowired
private ITcWbService tcWbService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wb:list')")
@GetMapping("/list")
public TableDataInfo list(TcWb tcWb)
{
startPage();
List<TcWb> list = tcWbService.selectTcWbList(tcWb);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wb:export')")
@Log(title = "微博", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWb tcWb)
{
List<TcWb> list = tcWbService.selectTcWbList(tcWb);
ExcelUtil<TcWb> util = new ExcelUtil<TcWb>(TcWb.class);
util.exportExcel(response, list, "微博数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wb:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWbService.selectTcWbById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wb:add')")
@Log(title = "微博", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWb tcWb)
{
return toAjax(tcWbService.insertTcWb(tcWb));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wb:edit')")
@Log(title = "微博", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWb tcWb)
{
return toAjax(tcWbService.updateTcWb(tcWb));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wb:remove')")
@Log(title = "微博", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWbService.deleteTcWbByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcWz;
import com.ruoyi.tcZz.service.ITcWzService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/wz")
public class TcWzController extends BaseController
{
@Autowired
private ITcWzService tcWzService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wz:list')")
@GetMapping("/list")
public TableDataInfo list(TcWz tcWz)
{
startPage();
List<TcWz> list = tcWzService.selectTcWzList(tcWz);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wz:export')")
@Log(title = "网站", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWz tcWz)
{
List<TcWz> list = tcWzService.selectTcWzList(tcWz);
ExcelUtil<TcWz> util = new ExcelUtil<TcWz>(TcWz.class);
util.exportExcel(response, list, "网站数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wz:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWzService.selectTcWzById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wz:add')")
@Log(title = "网站", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWz tcWz)
{
return toAjax(tcWzService.insertTcWz(tcWz));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wz:edit')")
@Log(title = "网站", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWz tcWz)
{
return toAjax(tcWzService.updateTcWz(tcWz));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:wz:remove')")
@Log(title = "网站", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWzService.deleteTcWzByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcZdgzxm;
import com.ruoyi.tcZz.service.ITcZdgzxmService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/zdgzxm")
public class TcZdgzxmController extends BaseController
{
@Autowired
private ITcZdgzxmService tcZdgzxmService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdgzxm:list')")
@GetMapping("/list")
public TableDataInfo list(TcZdgzxm tcZdgzxm)
{
startPage();
List<TcZdgzxm> list = tcZdgzxmService.selectTcZdgzxmList(tcZdgzxm);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdgzxm:export')")
@Log(title = "重点工作项目", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcZdgzxm tcZdgzxm)
{
List<TcZdgzxm> list = tcZdgzxmService.selectTcZdgzxmList(tcZdgzxm);
ExcelUtil<TcZdgzxm> util = new ExcelUtil<TcZdgzxm>(TcZdgzxm.class);
util.exportExcel(response, list, "重点工作项目数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdgzxm:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcZdgzxmService.selectTcZdgzxmById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdgzxm:add')")
@Log(title = "重点工作项目", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcZdgzxm tcZdgzxm)
{
return toAjax(tcZdgzxmService.insertTcZdgzxm(tcZdgzxm));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdgzxm:edit')")
@Log(title = "重点工作项目", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcZdgzxm tcZdgzxm)
{
return toAjax(tcZdgzxmService.updateTcZdgzxm(tcZdgzxm));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdgzxm:remove')")
@Log(title = "重点工作项目", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcZdgzxmService.deleteTcZdgzxmByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcZdlyjg;
import com.ruoyi.tcZz.service.ITcZdlyjgService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/zdlyjg")
public class TcZdlyjgController extends BaseController
{
@Autowired
private ITcZdlyjgService tcZdlyjgService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdlyjg:list')")
@GetMapping("/list")
public TableDataInfo list(TcZdlyjg tcZdlyjg)
{
startPage();
List<TcZdlyjg> list = tcZdlyjgService.selectTcZdlyjgList(tcZdlyjg);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdlyjg:export')")
@Log(title = "重点领域监管", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcZdlyjg tcZdlyjg)
{
List<TcZdlyjg> list = tcZdlyjgService.selectTcZdlyjgList(tcZdlyjg);
ExcelUtil<TcZdlyjg> util = new ExcelUtil<TcZdlyjg>(TcZdlyjg.class);
util.exportExcel(response, list, "重点领域监管数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdlyjg:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcZdlyjgService.selectTcZdlyjgById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdlyjg:add')")
@Log(title = "重点领域监管", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcZdlyjg tcZdlyjg)
{
return toAjax(tcZdlyjgService.insertTcZdlyjg(tcZdlyjg));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdlyjg:edit')")
@Log(title = "重点领域监管", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcZdlyjg tcZdlyjg)
{
return toAjax(tcZdlyjgService.updateTcZdlyjg(tcZdlyjg));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdlyjg:remove')")
@Log(title = "重点领域监管", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcZdlyjgService.deleteTcZdlyjgByIds(ids));
}
}

@ -0,0 +1,104 @@
package com.ruoyi.tcZz.controller;
import java.util.List;
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.tcZz.domain.TcZdqyml;
import com.ruoyi.tcZz.service.ITcZdqymlService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/netManage/zdqyml")
public class TcZdqymlController extends BaseController
{
@Autowired
private ITcZdqymlService tcZdqymlService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdqyml:list')")
@GetMapping("/list")
public TableDataInfo list(TcZdqyml tcZdqyml)
{
startPage();
List<TcZdqyml> list = tcZdqymlService.selectTcZdqymlList(tcZdqyml);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdqyml:export')")
@Log(title = "重点企业名录", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcZdqyml tcZdqyml)
{
List<TcZdqyml> list = tcZdqymlService.selectTcZdqymlList(tcZdqyml);
ExcelUtil<TcZdqyml> util = new ExcelUtil<TcZdqyml>(TcZdqyml.class);
util.exportExcel(response, list, "重点企业名录数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdqyml:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcZdqymlService.selectTcZdqymlById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdqyml:add')")
@Log(title = "重点企业名录", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcZdqyml tcZdqyml)
{
return toAjax(tcZdqymlService.insertTcZdqyml(tcZdqyml));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdqyml:edit')")
@Log(title = "重点企业名录", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcZdqyml tcZdqyml)
{
return toAjax(tcZdqymlService.updateTcZdqyml(tcZdqyml));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/netManage:zdqyml:remove')")
@Log(title = "重点企业名录", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcZdqymlService.deleteTcZdqymlByIds(ids));
}
}

@ -0,0 +1,51 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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;
/**
* B tc_bzhan
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("B站、小红书对象")
public class TcBzhan extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 账号ID */
@Excel(name = "账号ID")
@ApiModelProperty(value = "账号ID")
private Long zhId;
/** 网址 */
@Excel(name = "网址")
@ApiModelProperty(value = "网址")
private String url;
/** 类型 */
@Excel(name = "类型")
@ApiModelProperty(value = "类型")
private Long type;
}

@ -26,10 +26,12 @@ public class TcCy extends BaseEntity
/** 词云名称 */
@Excel(name = "词云名称")
@ApiModelProperty(value = "词云名称")
private String cyName;
/** 词云数量 */
@Excel(name = "词云数量")
@ApiModelProperty(value = "词云数量")
private Long cyCount;
/** 区域id */

@ -26,17 +26,21 @@ public class TcDtsx extends BaseEntity
/** 监测信息总量 */
@Excel(name = "监测信息总量")
@ApiModelProperty(value = "监测信息总量")
private String jcCount;
/** 排除信息量 */
@Excel(name = "排除信息量")
@ApiModelProperty(value = "排除信息量")
private String pcCount;
/** 舆情预警量(可空) */
@Excel(name = "舆情预警量", readConverterExp = "可=空")
@ApiModelProperty(value = "舆情预警量")
private String yqCount;
/** 舆情预警占比(可空) */
@Excel(name = "舆情预警占比", readConverterExp = "可=空")
@ApiModelProperty(value = "舆情预警占比")
private String yqZb;
}

@ -0,0 +1,51 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_dy
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("抖音对象")
public class TcDy extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 账号 */
@Excel(name = "账号")
@ApiModelProperty(value = "账号")
private String userName;
/** 简介 */
@Excel(name = "简介")
@ApiModelProperty(value = "简介")
private String intro;
/** 粉丝数 */
@Excel(name = "粉丝数")
@ApiModelProperty(value = "粉丝数")
private String fsCount;
}

@ -25,27 +25,32 @@ public class TcGzdt extends BaseEntity
private Long id;
/** 区域 */
@Excel(name = "区域")
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 标题 */
@Excel(name = "标题")
@ApiModelProperty(value = "标题")
private String title;
/** 类型 */
@Excel(name = "类型")
@ApiModelProperty(value = "类型")
private String type;
/** 文件名称 */
@Excel(name = "文件名称")
@ApiModelProperty(value = "文件名称")
private String fileName;
/** 文件路径(完整路径) */
@Excel(name = "文件路径(完整路径)")
@ApiModelProperty(value = "文件路径(完整路径)")
private String fileUrl;
}

@ -0,0 +1,79 @@
package com.ruoyi.tcZz.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
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_jbmap
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("举报地图对象")
public class TcJbmap extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 被举报对象 */
@Excel(name = "被举报对象")
@ApiModelProperty(value = "被举报对象")
private String jbObj;
/** 苏州编号 */
@Excel(name = "苏州编号")
@ApiModelProperty(value = "苏州编号")
private Long number;
/** 举报时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "举报时间", width = 30, dateFormat = "yyyy-MM-dd")
@ApiModelProperty(value = "举报时间")
private Date jbTime;
/** 地址 */
@Excel(name = "地址")
@ApiModelProperty(value = "地址")
private String address;
/** 举报内容 */
@Excel(name = "举报内容")
@ApiModelProperty(value = "举报内容")
private String content;
/** 是否处置 */
@Excel(name = "1.未处置 2.已处置",readConverterExp = "1=未处置,2=已处置",combo = "1=未处置,2=已处置")
@ApiModelProperty(value = "1.未处置 2.已处置,1=未处置,2=已处置")
private Long state;
/** 经度 */
@Excel(name = "经度")
@ApiModelProperty(value = "经度")
private String longitude;
/** 纬度 */
@Excel(name = "纬度")
@ApiModelProperty(value = "纬度")
private String latitude;
}

@ -0,0 +1,36 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_jbsjndfltj
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("举报事件年度分类统计对象")
public class TcJbsjndfltj extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 类型 */
@Excel(name = "类型")
@ApiModelProperty(value = "类型")
private String type;
/** 数量(件) */
@Excel(name = "数量", readConverterExp = "件=")
@ApiModelProperty(value = "数量")
private Long count;
}

@ -26,9 +26,11 @@ public class TcMtlx extends BaseEntity
/** 名称 */
@Excel(name = "名称")
@ApiModelProperty(value = "名称")
private String name;
/** 占比 */
@Excel(name = "占比")
@ApiModelProperty(value = "占比")
private String zb;
}

@ -0,0 +1,51 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_qlzxxddt
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("清朗专项行动动态对象")
public class TcQlzxxddt extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 标题 */
@Excel(name = "标题")
@ApiModelProperty(value = "标题")
private String title;
/** 内容 */
@Excel(name = "内容")
@ApiModelProperty(value = "内容")
private String content;
/** 图片路径(完整路径) */
@Excel(name = "图片路径(完整路径)")
@ApiModelProperty(value = "图片路径(完整路径)")
private String imageUrl;
}

@ -0,0 +1,44 @@
package com.ruoyi.tcZz.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
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_qlzxxdsjtj
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("清郎专项行动数据统计对象")
public class TcQlzxxdsjtj extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 日期 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
@ApiModelProperty(value = "日期")
private Date dateTime;
/** 处理有害信息数量 */
@Excel(name = "处理有害信息数量")
@ApiModelProperty(value = "处理有害信息数量")
private Long count1;
/** 关闭直播平台违规账号(个) */
@Excel(name = "关闭直播平台违规账号(个)")
@ApiModelProperty(value = "关闭直播平台违规账号(个)")
private Long count2;
}

@ -26,9 +26,11 @@ public class TcSslx extends BaseEntity
/** 名称 */
@Excel(name = "名称")
@ApiModelProperty(value = "名称")
private String name;
/** 占比 */
@Excel(name = "占比")
@ApiModelProperty(value = "占比")
private String zb;
}

@ -0,0 +1,51 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_ttsum
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("今日头条、快手对象")
public class TcTtsum extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 账号ID */
@Excel(name = "账号ID")
@ApiModelProperty(value = "账号ID")
private Long zhId;
/** 简介 */
@Excel(name = "简介")
@ApiModelProperty(value = "简介")
private String intro;
/** 类型 */
@Excel(name = "类型")
@ApiModelProperty(value = "类型")
private Long type;
}

@ -0,0 +1,46 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_vx
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("微信对象")
public class TcVx extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 账号ID */
@Excel(name = "账号ID")
@ApiModelProperty(value = "账号ID")
private Long zhId;
/** 行业属性 */
@Excel(name = "行业属性")
@ApiModelProperty(value = "行业属性")
private String tmt;
}

@ -0,0 +1,46 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_wb
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("微博对象")
public class TcWb extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 账号名称 */
@Excel(name = "账号名称")
@ApiModelProperty(value = "账号名称")
private String zhName;
/** 认证 */
@Excel(name = "认证")
@ApiModelProperty(value = "认证")
private String approve;
}

@ -0,0 +1,56 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_wz
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网站对象")
public class TcWz extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 网站名称 */
@Excel(name = "网站名称")
@ApiModelProperty(value = "网站名称")
private String webName;
/** 真实IP */
@Excel(name = "真实IP")
@ApiModelProperty(value = "真实IP")
private String trueIp;
/** 网站域名 */
@Excel(name = "网站域名")
@ApiModelProperty(value = "网站域名")
private String webDns;
/** 备案许可证号 */
@Excel(name = "备案许可证号")
@ApiModelProperty(value = "id")
private String icp;
}

@ -41,13 +41,16 @@ public class TcYqbg extends BaseEntity
/** 标题名称 */
@Excel(name = "标题名称")
@ApiModelProperty(value = "标题名称")
private String title;
/** 文件名称 */
@Excel(name = "文件名称")
@ApiModelProperty(value = "文件名称")
private String fileName;
/** 文件路径(完整路径) */
@Excel(name = "文件路径(完整路径)")
@ApiModelProperty(value = "文件路径(完整路径)")
private String fileUrl;
}

@ -26,17 +26,21 @@ public class TcYqxxlnum extends BaseEntity
/** 本地相关信息数量 */
@Excel(name = "本地相关信息数量")
@ApiModelProperty(value = "本地相关信息数量")
private Long count1;
/** 本地敏感信息数量 */
@Excel(name = "本地敏感信息数量")
@ApiModelProperty(value = "本地敏感信息数量")
private Long count2;
/** 推送预警信息数量 */
@Excel(name = "推送预警信息数量")
@ApiModelProperty(value = "推送预警信息数量")
private Long count3;
/** 聚焦本地媒体数量 */
@Excel(name = "聚焦本地媒体数量")
@ApiModelProperty(value = "聚焦本地媒体数量")
private Long count4;
}

@ -43,10 +43,12 @@ public class TcYqxxltj extends BaseEntity
/** 标题 */
@Excel(name = "标题")
@ApiModelProperty(value = "标题")
private String title;
/** 来源 */
@Excel(name = "来源")
@ApiModelProperty(value = "来源")
private String source;
/** 时间 */
@ -57,5 +59,6 @@ public class TcYqxxltj extends BaseEntity
/** 内容 */
@Excel(name = "内容")
@ApiModelProperty(value = "内容")
private String content;
}

@ -38,10 +38,12 @@ public class TcYqyj extends BaseEntity
/** 标题 */
@Excel(name = "标题")
@ApiModelProperty(value = "标题")
private String title;
/** 来源 */
@Excel(name = "来源")
@ApiModelProperty(value = "来源")
private String source;
/** 时间 */
@ -52,5 +54,6 @@ public class TcYqyj extends BaseEntity
/** 内容 */
@Excel(name = "内容")
@ApiModelProperty(value = "内容")
private String content;
}

@ -39,9 +39,11 @@ public class TcYqzs extends BaseEntity
/** 非敏感数量 */
@Excel(name = "非敏感数量")
@ApiModelProperty(value = "非敏感数量")
private Long count1;
/** 敏感数量 */
@Excel(name = "敏感数量")
@ApiModelProperty(value = "敏感数量")
private Long count2;
}

@ -26,13 +26,16 @@ public class TcYtlc extends BaseEntity
/** 名称 */
@Excel(name = "名称")
@ApiModelProperty(value = "名称")
private String name;
/** 文件名称 */
@Excel(name = "文件名称")
@ApiModelProperty(value = "文件名称")
private String fileName;
/** 文件路径(完整路径) */
@Excel(name = "文件路径(完整路径)")
@ApiModelProperty(value = "文件路径(完整路径)")
private String fileUrl;
}

@ -36,13 +36,16 @@ public class TcZbxq extends BaseEntity
/** 舆情标题 */
@Excel(name = "舆情标题")
@ApiModelProperty(value = "舆情标题")
private String yqTitle;
/** 部门名称 */
@Excel(name = "部门名称")
@ApiModelProperty(value = "部门名称")
private String depName;
/** 舆情状态 */
@Excel(name = "舆情状态")
@ApiModelProperty(value = "舆情状态")
private String yqState;
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_zdgzxm
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("重点工作项目对象")
public class TcZdgzxm extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 推进单位 */
@Excel(name = "推进单位")
@ApiModelProperty(value = "推进单位")
private String tjUnit;
/** 项目名称 */
@Excel(name = "项目名称")
@ApiModelProperty(value = "项目名称")
private String itemName;
/** 项目内容 */
@Excel(name = "项目内容")
@ApiModelProperty(value = "项目内容")
private String itemContent;
/** 项目类型 */
@Excel(name = "项目类型")
@ApiModelProperty(value = "项目类型")
private String itemType;
/** 项目联系人 */
@Excel(name = "项目联系人")
@ApiModelProperty(value = "项目联系人")
private String itemLinkMan;
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_zdlyjg
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("重点领域监管对象")
public class TcZdlyjg extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 企业类型 */
@Excel(name = "企业类型")
@ApiModelProperty(value = "企业类型")
private String enterpriseType;
/** 重点监管内容 */
@Excel(name = "重点监管内容")
@ApiModelProperty(value = "重点监管内容")
private String jgObgj;
/** 法律法规令禁止的有关行为 */
@Excel(name = "法律法规令禁止的有关行为")
@ApiModelProperty(value = "法律法规令禁止的有关行为")
private String jzxw;
/** 主要监管部门 */
@Excel(name = "主要监管部门")
@ApiModelProperty(value = "主要监管部门")
private String jgDep;
/** 主要依据 */
@Excel(name = "主要依据")
@ApiModelProperty(value = "主要依据")
private String zyyj;
}

@ -0,0 +1,81 @@
package com.ruoyi.tcZz.domain;
import io.swagger.annotations.ApiModel;
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_zdqyml
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("重点企业名录对象")
public class TcZdqyml extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@Excel(name = "区域id",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@ApiModelProperty(value = "区域id,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@Excel(name = "1.启用 2.禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
@ApiModelProperty(value = "1.启用 2.禁用,1=启用,2=禁用")
private Long isStatus;
/** 企业名称 */
@Excel(name = "企业名称")
@ApiModelProperty(value = "企业名称")
private String enterpriseName;
/** 企业类型 */
@Excel(name = "企业类型")
@ApiModelProperty(value = "企业类型")
private String enterpriseType;
/** 互联网业务 */
@Excel(name = "互联网业务")
@ApiModelProperty(value = "互联网业务")
private String netYw;
/** 监管部门 */
@Excel(name = "监管部门")
@ApiModelProperty(value = "监管部门")
private String depJg;
/** 单位地址 */
@Excel(name = "单位地址")
@ApiModelProperty(value = "单位地址")
private String unitAddress;
/** 联系人 */
@Excel(name = "联系人")
@ApiModelProperty(value = "联系人")
private String linkMan;
/** 联系电话 */
@Excel(name = "联系电话")
@ApiModelProperty(value = "联系电话")
private String linkTel;
/** 网址或平台名称 */
@Excel(name = "网址或平台名称")
@ApiModelProperty(value = "网址或平台名称")
private String url;
/** 域名 */
@Excel(name = "域名")
@ApiModelProperty(value = "域名")
private String dns;
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcBzhan;
/**
* BMapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcBzhanMapper
{
/**
* B
*
* @param id B
* @return B
*/
public TcBzhan selectTcBzhanById(Long id);
/**
* B
*
* @param tcBzhan B
* @return B
*/
public List<TcBzhan> selectTcBzhanList(TcBzhan tcBzhan);
/**
* B
*
* @param tcBzhan B
* @return
*/
public int insertTcBzhan(TcBzhan tcBzhan);
/**
* B
*
* @param tcBzhan B
* @return
*/
public int updateTcBzhan(TcBzhan tcBzhan);
/**
* B
*
* @param id B
* @return
*/
public int deleteTcBzhanById(Long id);
/**
* B
*
* @param ids
* @return
*/
public int deleteTcBzhanByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcDy;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcDyMapper
{
/**
*
*
* @param id
* @return
*/
public TcDy selectTcDyById(Long id);
/**
*
*
* @param tcDy
* @return
*/
public List<TcDy> selectTcDyList(TcDy tcDy);
/**
*
*
* @param tcDy
* @return
*/
public int insertTcDy(TcDy tcDy);
/**
*
*
* @param tcDy
* @return
*/
public int updateTcDy(TcDy tcDy);
/**
*
*
* @param id
* @return
*/
public int deleteTcDyById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcDyByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcJbmap;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcJbmapMapper
{
/**
*
*
* @param id
* @return
*/
public TcJbmap selectTcJbmapById(Long id);
/**
*
*
* @param tcJbmap
* @return
*/
public List<TcJbmap> selectTcJbmapList(TcJbmap tcJbmap);
/**
*
*
* @param tcJbmap
* @return
*/
public int insertTcJbmap(TcJbmap tcJbmap);
/**
*
*
* @param tcJbmap
* @return
*/
public int updateTcJbmap(TcJbmap tcJbmap);
/**
*
*
* @param id
* @return
*/
public int deleteTcJbmapById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcJbmapByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcJbsjndfltj;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcJbsjndfltjMapper
{
/**
*
*
* @param id
* @return
*/
public TcJbsjndfltj selectTcJbsjndfltjById(Long id);
/**
*
*
* @param tcJbsjndfltj
* @return
*/
public List<TcJbsjndfltj> selectTcJbsjndfltjList(TcJbsjndfltj tcJbsjndfltj);
/**
*
*
* @param tcJbsjndfltj
* @return
*/
public int insertTcJbsjndfltj(TcJbsjndfltj tcJbsjndfltj);
/**
*
*
* @param tcJbsjndfltj
* @return
*/
public int updateTcJbsjndfltj(TcJbsjndfltj tcJbsjndfltj);
/**
*
*
* @param id
* @return
*/
public int deleteTcJbsjndfltjById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcJbsjndfltjByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcQlzxxddt;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcQlzxxddtMapper
{
/**
*
*
* @param id
* @return
*/
public TcQlzxxddt selectTcQlzxxddtById(Long id);
/**
*
*
* @param tcQlzxxddt
* @return
*/
public List<TcQlzxxddt> selectTcQlzxxddtList(TcQlzxxddt tcQlzxxddt);
/**
*
*
* @param tcQlzxxddt
* @return
*/
public int insertTcQlzxxddt(TcQlzxxddt tcQlzxxddt);
/**
*
*
* @param tcQlzxxddt
* @return
*/
public int updateTcQlzxxddt(TcQlzxxddt tcQlzxxddt);
/**
*
*
* @param id
* @return
*/
public int deleteTcQlzxxddtById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcQlzxxddtByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcQlzxxdsjtj;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcQlzxxdsjtjMapper
{
/**
*
*
* @param id
* @return
*/
public TcQlzxxdsjtj selectTcQlzxxdsjtjById(Long id);
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
public List<TcQlzxxdsjtj> selectTcQlzxxdsjtjList(TcQlzxxdsjtj tcQlzxxdsjtj);
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
public int insertTcQlzxxdsjtj(TcQlzxxdsjtj tcQlzxxdsjtj);
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
public int updateTcQlzxxdsjtj(TcQlzxxdsjtj tcQlzxxdsjtj);
/**
*
*
* @param id
* @return
*/
public int deleteTcQlzxxdsjtjById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcQlzxxdsjtjByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcTtsum;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcTtsumMapper
{
/**
*
*
* @param id
* @return
*/
public TcTtsum selectTcTtsumById(Long id);
/**
*
*
* @param tcTtsum
* @return
*/
public List<TcTtsum> selectTcTtsumList(TcTtsum tcTtsum);
/**
*
*
* @param tcTtsum
* @return
*/
public int insertTcTtsum(TcTtsum tcTtsum);
/**
*
*
* @param tcTtsum
* @return
*/
public int updateTcTtsum(TcTtsum tcTtsum);
/**
*
*
* @param id
* @return
*/
public int deleteTcTtsumById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcTtsumByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcVx;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcVxMapper
{
/**
*
*
* @param id
* @return
*/
public TcVx selectTcVxById(Long id);
/**
*
*
* @param tcVx
* @return
*/
public List<TcVx> selectTcVxList(TcVx tcVx);
/**
*
*
* @param tcVx
* @return
*/
public int insertTcVx(TcVx tcVx);
/**
*
*
* @param tcVx
* @return
*/
public int updateTcVx(TcVx tcVx);
/**
*
*
* @param id
* @return
*/
public int deleteTcVxById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcVxByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWb;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWbMapper
{
/**
*
*
* @param id
* @return
*/
public TcWb selectTcWbById(Long id);
/**
*
*
* @param tcWb
* @return
*/
public List<TcWb> selectTcWbList(TcWb tcWb);
/**
*
*
* @param tcWb
* @return
*/
public int insertTcWb(TcWb tcWb);
/**
*
*
* @param tcWb
* @return
*/
public int updateTcWb(TcWb tcWb);
/**
*
*
* @param id
* @return
*/
public int deleteTcWbById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWbByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWz;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWzMapper
{
/**
*
*
* @param id
* @return
*/
public TcWz selectTcWzById(Long id);
/**
*
*
* @param tcWz
* @return
*/
public List<TcWz> selectTcWzList(TcWz tcWz);
/**
*
*
* @param tcWz
* @return
*/
public int insertTcWz(TcWz tcWz);
/**
*
*
* @param tcWz
* @return
*/
public int updateTcWz(TcWz tcWz);
/**
*
*
* @param id
* @return
*/
public int deleteTcWzById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWzByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcZdgzxm;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcZdgzxmMapper
{
/**
*
*
* @param id
* @return
*/
public TcZdgzxm selectTcZdgzxmById(Long id);
/**
*
*
* @param tcZdgzxm
* @return
*/
public List<TcZdgzxm> selectTcZdgzxmList(TcZdgzxm tcZdgzxm);
/**
*
*
* @param tcZdgzxm
* @return
*/
public int insertTcZdgzxm(TcZdgzxm tcZdgzxm);
/**
*
*
* @param tcZdgzxm
* @return
*/
public int updateTcZdgzxm(TcZdgzxm tcZdgzxm);
/**
*
*
* @param id
* @return
*/
public int deleteTcZdgzxmById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcZdgzxmByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcZdlyjg;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcZdlyjgMapper
{
/**
*
*
* @param id
* @return
*/
public TcZdlyjg selectTcZdlyjgById(Long id);
/**
*
*
* @param tcZdlyjg
* @return
*/
public List<TcZdlyjg> selectTcZdlyjgList(TcZdlyjg tcZdlyjg);
/**
*
*
* @param tcZdlyjg
* @return
*/
public int insertTcZdlyjg(TcZdlyjg tcZdlyjg);
/**
*
*
* @param tcZdlyjg
* @return
*/
public int updateTcZdlyjg(TcZdlyjg tcZdlyjg);
/**
*
*
* @param id
* @return
*/
public int deleteTcZdlyjgById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcZdlyjgByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcZdqyml;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcZdqymlMapper
{
/**
*
*
* @param id
* @return
*/
public TcZdqyml selectTcZdqymlById(Long id);
/**
*
*
* @param tcZdqyml
* @return
*/
public List<TcZdqyml> selectTcZdqymlList(TcZdqyml tcZdqyml);
/**
*
*
* @param tcZdqyml
* @return
*/
public int insertTcZdqyml(TcZdqyml tcZdqyml);
/**
*
*
* @param tcZdqyml
* @return
*/
public int updateTcZdqyml(TcZdqyml tcZdqyml);
/**
*
*
* @param id
* @return
*/
public int deleteTcZdqymlById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcZdqymlByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcBzhan;
/**
* BService
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcBzhanService
{
/**
* B
*
* @param id B
* @return B
*/
public TcBzhan selectTcBzhanById(Long id);
/**
* B
*
* @param tcBzhan B
* @return B
*/
public List<TcBzhan> selectTcBzhanList(TcBzhan tcBzhan);
/**
* B
*
* @param tcBzhan B
* @return
*/
public int insertTcBzhan(TcBzhan tcBzhan);
/**
* B
*
* @param tcBzhan B
* @return
*/
public int updateTcBzhan(TcBzhan tcBzhan);
/**
* B
*
* @param ids B
* @return
*/
public int deleteTcBzhanByIds(Long[] ids);
/**
* B
*
* @param id B
* @return
*/
public int deleteTcBzhanById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcDy;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcDyService
{
/**
*
*
* @param id
* @return
*/
public TcDy selectTcDyById(Long id);
/**
*
*
* @param tcDy
* @return
*/
public List<TcDy> selectTcDyList(TcDy tcDy);
/**
*
*
* @param tcDy
* @return
*/
public int insertTcDy(TcDy tcDy);
/**
*
*
* @param tcDy
* @return
*/
public int updateTcDy(TcDy tcDy);
/**
*
*
* @param ids
* @return
*/
public int deleteTcDyByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcDyById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcJbmap;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcJbmapService
{
/**
*
*
* @param id
* @return
*/
public TcJbmap selectTcJbmapById(Long id);
/**
*
*
* @param tcJbmap
* @return
*/
public List<TcJbmap> selectTcJbmapList(TcJbmap tcJbmap);
/**
*
*
* @param tcJbmap
* @return
*/
public int insertTcJbmap(TcJbmap tcJbmap);
/**
*
*
* @param tcJbmap
* @return
*/
public int updateTcJbmap(TcJbmap tcJbmap);
/**
*
*
* @param ids
* @return
*/
public int deleteTcJbmapByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcJbmapById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcJbsjndfltj;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcJbsjndfltjService
{
/**
*
*
* @param id
* @return
*/
public TcJbsjndfltj selectTcJbsjndfltjById(Long id);
/**
*
*
* @param tcJbsjndfltj
* @return
*/
public List<TcJbsjndfltj> selectTcJbsjndfltjList(TcJbsjndfltj tcJbsjndfltj);
/**
*
*
* @param tcJbsjndfltj
* @return
*/
public int insertTcJbsjndfltj(TcJbsjndfltj tcJbsjndfltj);
/**
*
*
* @param tcJbsjndfltj
* @return
*/
public int updateTcJbsjndfltj(TcJbsjndfltj tcJbsjndfltj);
/**
*
*
* @param ids
* @return
*/
public int deleteTcJbsjndfltjByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcJbsjndfltjById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcQlzxxddt;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcQlzxxddtService
{
/**
*
*
* @param id
* @return
*/
public TcQlzxxddt selectTcQlzxxddtById(Long id);
/**
*
*
* @param tcQlzxxddt
* @return
*/
public List<TcQlzxxddt> selectTcQlzxxddtList(TcQlzxxddt tcQlzxxddt);
/**
*
*
* @param tcQlzxxddt
* @return
*/
public int insertTcQlzxxddt(TcQlzxxddt tcQlzxxddt);
/**
*
*
* @param tcQlzxxddt
* @return
*/
public int updateTcQlzxxddt(TcQlzxxddt tcQlzxxddt);
/**
*
*
* @param ids
* @return
*/
public int deleteTcQlzxxddtByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcQlzxxddtById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcQlzxxdsjtj;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcQlzxxdsjtjService
{
/**
*
*
* @param id
* @return
*/
public TcQlzxxdsjtj selectTcQlzxxdsjtjById(Long id);
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
public List<TcQlzxxdsjtj> selectTcQlzxxdsjtjList(TcQlzxxdsjtj tcQlzxxdsjtj);
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
public int insertTcQlzxxdsjtj(TcQlzxxdsjtj tcQlzxxdsjtj);
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
public int updateTcQlzxxdsjtj(TcQlzxxdsjtj tcQlzxxdsjtj);
/**
*
*
* @param ids
* @return
*/
public int deleteTcQlzxxdsjtjByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcQlzxxdsjtjById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcTtsum;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcTtsumService
{
/**
*
*
* @param id
* @return
*/
public TcTtsum selectTcTtsumById(Long id);
/**
*
*
* @param tcTtsum
* @return
*/
public List<TcTtsum> selectTcTtsumList(TcTtsum tcTtsum);
/**
*
*
* @param tcTtsum
* @return
*/
public int insertTcTtsum(TcTtsum tcTtsum);
/**
*
*
* @param tcTtsum
* @return
*/
public int updateTcTtsum(TcTtsum tcTtsum);
/**
*
*
* @param ids
* @return
*/
public int deleteTcTtsumByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcTtsumById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcVx;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcVxService
{
/**
*
*
* @param id
* @return
*/
public TcVx selectTcVxById(Long id);
/**
*
*
* @param tcVx
* @return
*/
public List<TcVx> selectTcVxList(TcVx tcVx);
/**
*
*
* @param tcVx
* @return
*/
public int insertTcVx(TcVx tcVx);
/**
*
*
* @param tcVx
* @return
*/
public int updateTcVx(TcVx tcVx);
/**
*
*
* @param ids
* @return
*/
public int deleteTcVxByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcVxById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWb;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWbService
{
/**
*
*
* @param id
* @return
*/
public TcWb selectTcWbById(Long id);
/**
*
*
* @param tcWb
* @return
*/
public List<TcWb> selectTcWbList(TcWb tcWb);
/**
*
*
* @param tcWb
* @return
*/
public int insertTcWb(TcWb tcWb);
/**
*
*
* @param tcWb
* @return
*/
public int updateTcWb(TcWb tcWb);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWbByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWbById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWz;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWzService
{
/**
*
*
* @param id
* @return
*/
public TcWz selectTcWzById(Long id);
/**
*
*
* @param tcWz
* @return
*/
public List<TcWz> selectTcWzList(TcWz tcWz);
/**
*
*
* @param tcWz
* @return
*/
public int insertTcWz(TcWz tcWz);
/**
*
*
* @param tcWz
* @return
*/
public int updateTcWz(TcWz tcWz);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWzByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWzById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcZdgzxm;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcZdgzxmService
{
/**
*
*
* @param id
* @return
*/
public TcZdgzxm selectTcZdgzxmById(Long id);
/**
*
*
* @param tcZdgzxm
* @return
*/
public List<TcZdgzxm> selectTcZdgzxmList(TcZdgzxm tcZdgzxm);
/**
*
*
* @param tcZdgzxm
* @return
*/
public int insertTcZdgzxm(TcZdgzxm tcZdgzxm);
/**
*
*
* @param tcZdgzxm
* @return
*/
public int updateTcZdgzxm(TcZdgzxm tcZdgzxm);
/**
*
*
* @param ids
* @return
*/
public int deleteTcZdgzxmByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcZdgzxmById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcZdlyjg;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcZdlyjgService
{
/**
*
*
* @param id
* @return
*/
public TcZdlyjg selectTcZdlyjgById(Long id);
/**
*
*
* @param tcZdlyjg
* @return
*/
public List<TcZdlyjg> selectTcZdlyjgList(TcZdlyjg tcZdlyjg);
/**
*
*
* @param tcZdlyjg
* @return
*/
public int insertTcZdlyjg(TcZdlyjg tcZdlyjg);
/**
*
*
* @param tcZdlyjg
* @return
*/
public int updateTcZdlyjg(TcZdlyjg tcZdlyjg);
/**
*
*
* @param ids
* @return
*/
public int deleteTcZdlyjgByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcZdlyjgById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcZdqyml;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcZdqymlService
{
/**
*
*
* @param id
* @return
*/
public TcZdqyml selectTcZdqymlById(Long id);
/**
*
*
* @param tcZdqyml
* @return
*/
public List<TcZdqyml> selectTcZdqymlList(TcZdqyml tcZdqyml);
/**
*
*
* @param tcZdqyml
* @return
*/
public int insertTcZdqyml(TcZdqyml tcZdqyml);
/**
*
*
* @param tcZdqyml
* @return
*/
public int updateTcZdqyml(TcZdqyml tcZdqyml);
/**
*
*
* @param ids
* @return
*/
public int deleteTcZdqymlByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcZdqymlById(Long id);
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcBzhanMapper;
import com.ruoyi.tcZz.domain.TcBzhan;
import com.ruoyi.tcZz.service.ITcBzhanService;
/**
* BService
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcBzhanServiceImpl implements ITcBzhanService
{
@Autowired
private TcBzhanMapper tcBzhanMapper;
/**
* B
*
* @param id B
* @return B
*/
@Override
public TcBzhan selectTcBzhanById(Long id)
{
return tcBzhanMapper.selectTcBzhanById(id);
}
/**
* B
*
* @param tcBzhan B
* @return B
*/
@Override
public List<TcBzhan> selectTcBzhanList(TcBzhan tcBzhan)
{
return tcBzhanMapper.selectTcBzhanList(tcBzhan);
}
/**
* B
*
* @param tcBzhan B
* @return
*/
@Override
public int insertTcBzhan(TcBzhan tcBzhan)
{
tcBzhan.setCreateTime(DateUtils.getNowDate());
return tcBzhanMapper.insertTcBzhan(tcBzhan);
}
/**
* B
*
* @param tcBzhan B
* @return
*/
@Override
public int updateTcBzhan(TcBzhan tcBzhan)
{
tcBzhan.setUpdateTime(DateUtils.getNowDate());
return tcBzhanMapper.updateTcBzhan(tcBzhan);
}
/**
* B
*
* @param ids B
* @return
*/
@Override
public int deleteTcBzhanByIds(Long[] ids)
{
return tcBzhanMapper.deleteTcBzhanByIds(ids);
}
/**
* B
*
* @param id B
* @return
*/
@Override
public int deleteTcBzhanById(Long id)
{
return tcBzhanMapper.deleteTcBzhanById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcDyMapper;
import com.ruoyi.tcZz.domain.TcDy;
import com.ruoyi.tcZz.service.ITcDyService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcDyServiceImpl implements ITcDyService
{
@Autowired
private TcDyMapper tcDyMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcDy selectTcDyById(Long id)
{
return tcDyMapper.selectTcDyById(id);
}
/**
*
*
* @param tcDy
* @return
*/
@Override
public List<TcDy> selectTcDyList(TcDy tcDy)
{
return tcDyMapper.selectTcDyList(tcDy);
}
/**
*
*
* @param tcDy
* @return
*/
@Override
public int insertTcDy(TcDy tcDy)
{
tcDy.setCreateTime(DateUtils.getNowDate());
return tcDyMapper.insertTcDy(tcDy);
}
/**
*
*
* @param tcDy
* @return
*/
@Override
public int updateTcDy(TcDy tcDy)
{
tcDy.setUpdateTime(DateUtils.getNowDate());
return tcDyMapper.updateTcDy(tcDy);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcDyByIds(Long[] ids)
{
return tcDyMapper.deleteTcDyByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcDyById(Long id)
{
return tcDyMapper.deleteTcDyById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcJbmapMapper;
import com.ruoyi.tcZz.domain.TcJbmap;
import com.ruoyi.tcZz.service.ITcJbmapService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcJbmapServiceImpl implements ITcJbmapService
{
@Autowired
private TcJbmapMapper tcJbmapMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcJbmap selectTcJbmapById(Long id)
{
return tcJbmapMapper.selectTcJbmapById(id);
}
/**
*
*
* @param tcJbmap
* @return
*/
@Override
public List<TcJbmap> selectTcJbmapList(TcJbmap tcJbmap)
{
return tcJbmapMapper.selectTcJbmapList(tcJbmap);
}
/**
*
*
* @param tcJbmap
* @return
*/
@Override
public int insertTcJbmap(TcJbmap tcJbmap)
{
tcJbmap.setCreateTime(DateUtils.getNowDate());
return tcJbmapMapper.insertTcJbmap(tcJbmap);
}
/**
*
*
* @param tcJbmap
* @return
*/
@Override
public int updateTcJbmap(TcJbmap tcJbmap)
{
tcJbmap.setUpdateTime(DateUtils.getNowDate());
return tcJbmapMapper.updateTcJbmap(tcJbmap);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcJbmapByIds(Long[] ids)
{
return tcJbmapMapper.deleteTcJbmapByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcJbmapById(Long id)
{
return tcJbmapMapper.deleteTcJbmapById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcJbsjndfltjMapper;
import com.ruoyi.tcZz.domain.TcJbsjndfltj;
import com.ruoyi.tcZz.service.ITcJbsjndfltjService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcJbsjndfltjServiceImpl implements ITcJbsjndfltjService
{
@Autowired
private TcJbsjndfltjMapper tcJbsjndfltjMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcJbsjndfltj selectTcJbsjndfltjById(Long id)
{
return tcJbsjndfltjMapper.selectTcJbsjndfltjById(id);
}
/**
*
*
* @param tcJbsjndfltj
* @return
*/
@Override
public List<TcJbsjndfltj> selectTcJbsjndfltjList(TcJbsjndfltj tcJbsjndfltj)
{
return tcJbsjndfltjMapper.selectTcJbsjndfltjList(tcJbsjndfltj);
}
/**
*
*
* @param tcJbsjndfltj
* @return
*/
@Override
public int insertTcJbsjndfltj(TcJbsjndfltj tcJbsjndfltj)
{
tcJbsjndfltj.setCreateTime(DateUtils.getNowDate());
return tcJbsjndfltjMapper.insertTcJbsjndfltj(tcJbsjndfltj);
}
/**
*
*
* @param tcJbsjndfltj
* @return
*/
@Override
public int updateTcJbsjndfltj(TcJbsjndfltj tcJbsjndfltj)
{
tcJbsjndfltj.setUpdateTime(DateUtils.getNowDate());
return tcJbsjndfltjMapper.updateTcJbsjndfltj(tcJbsjndfltj);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcJbsjndfltjByIds(Long[] ids)
{
return tcJbsjndfltjMapper.deleteTcJbsjndfltjByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcJbsjndfltjById(Long id)
{
return tcJbsjndfltjMapper.deleteTcJbsjndfltjById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcQlzxxddtMapper;
import com.ruoyi.tcZz.domain.TcQlzxxddt;
import com.ruoyi.tcZz.service.ITcQlzxxddtService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcQlzxxddtServiceImpl implements ITcQlzxxddtService
{
@Autowired
private TcQlzxxddtMapper tcQlzxxddtMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcQlzxxddt selectTcQlzxxddtById(Long id)
{
return tcQlzxxddtMapper.selectTcQlzxxddtById(id);
}
/**
*
*
* @param tcQlzxxddt
* @return
*/
@Override
public List<TcQlzxxddt> selectTcQlzxxddtList(TcQlzxxddt tcQlzxxddt)
{
return tcQlzxxddtMapper.selectTcQlzxxddtList(tcQlzxxddt);
}
/**
*
*
* @param tcQlzxxddt
* @return
*/
@Override
public int insertTcQlzxxddt(TcQlzxxddt tcQlzxxddt)
{
tcQlzxxddt.setCreateTime(DateUtils.getNowDate());
return tcQlzxxddtMapper.insertTcQlzxxddt(tcQlzxxddt);
}
/**
*
*
* @param tcQlzxxddt
* @return
*/
@Override
public int updateTcQlzxxddt(TcQlzxxddt tcQlzxxddt)
{
tcQlzxxddt.setUpdateTime(DateUtils.getNowDate());
return tcQlzxxddtMapper.updateTcQlzxxddt(tcQlzxxddt);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcQlzxxddtByIds(Long[] ids)
{
return tcQlzxxddtMapper.deleteTcQlzxxddtByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcQlzxxddtById(Long id)
{
return tcQlzxxddtMapper.deleteTcQlzxxddtById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcQlzxxdsjtjMapper;
import com.ruoyi.tcZz.domain.TcQlzxxdsjtj;
import com.ruoyi.tcZz.service.ITcQlzxxdsjtjService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcQlzxxdsjtjServiceImpl implements ITcQlzxxdsjtjService
{
@Autowired
private TcQlzxxdsjtjMapper tcQlzxxdsjtjMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcQlzxxdsjtj selectTcQlzxxdsjtjById(Long id)
{
return tcQlzxxdsjtjMapper.selectTcQlzxxdsjtjById(id);
}
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
@Override
public List<TcQlzxxdsjtj> selectTcQlzxxdsjtjList(TcQlzxxdsjtj tcQlzxxdsjtj)
{
return tcQlzxxdsjtjMapper.selectTcQlzxxdsjtjList(tcQlzxxdsjtj);
}
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
@Override
public int insertTcQlzxxdsjtj(TcQlzxxdsjtj tcQlzxxdsjtj)
{
tcQlzxxdsjtj.setCreateTime(DateUtils.getNowDate());
return tcQlzxxdsjtjMapper.insertTcQlzxxdsjtj(tcQlzxxdsjtj);
}
/**
*
*
* @param tcQlzxxdsjtj
* @return
*/
@Override
public int updateTcQlzxxdsjtj(TcQlzxxdsjtj tcQlzxxdsjtj)
{
tcQlzxxdsjtj.setUpdateTime(DateUtils.getNowDate());
return tcQlzxxdsjtjMapper.updateTcQlzxxdsjtj(tcQlzxxdsjtj);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcQlzxxdsjtjByIds(Long[] ids)
{
return tcQlzxxdsjtjMapper.deleteTcQlzxxdsjtjByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcQlzxxdsjtjById(Long id)
{
return tcQlzxxdsjtjMapper.deleteTcQlzxxdsjtjById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcTtsumMapper;
import com.ruoyi.tcZz.domain.TcTtsum;
import com.ruoyi.tcZz.service.ITcTtsumService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcTtsumServiceImpl implements ITcTtsumService
{
@Autowired
private TcTtsumMapper tcTtsumMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcTtsum selectTcTtsumById(Long id)
{
return tcTtsumMapper.selectTcTtsumById(id);
}
/**
*
*
* @param tcTtsum
* @return
*/
@Override
public List<TcTtsum> selectTcTtsumList(TcTtsum tcTtsum)
{
return tcTtsumMapper.selectTcTtsumList(tcTtsum);
}
/**
*
*
* @param tcTtsum
* @return
*/
@Override
public int insertTcTtsum(TcTtsum tcTtsum)
{
tcTtsum.setCreateTime(DateUtils.getNowDate());
return tcTtsumMapper.insertTcTtsum(tcTtsum);
}
/**
*
*
* @param tcTtsum
* @return
*/
@Override
public int updateTcTtsum(TcTtsum tcTtsum)
{
tcTtsum.setUpdateTime(DateUtils.getNowDate());
return tcTtsumMapper.updateTcTtsum(tcTtsum);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcTtsumByIds(Long[] ids)
{
return tcTtsumMapper.deleteTcTtsumByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcTtsumById(Long id)
{
return tcTtsumMapper.deleteTcTtsumById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcVxMapper;
import com.ruoyi.tcZz.domain.TcVx;
import com.ruoyi.tcZz.service.ITcVxService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcVxServiceImpl implements ITcVxService
{
@Autowired
private TcVxMapper tcVxMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcVx selectTcVxById(Long id)
{
return tcVxMapper.selectTcVxById(id);
}
/**
*
*
* @param tcVx
* @return
*/
@Override
public List<TcVx> selectTcVxList(TcVx tcVx)
{
return tcVxMapper.selectTcVxList(tcVx);
}
/**
*
*
* @param tcVx
* @return
*/
@Override
public int insertTcVx(TcVx tcVx)
{
tcVx.setCreateTime(DateUtils.getNowDate());
return tcVxMapper.insertTcVx(tcVx);
}
/**
*
*
* @param tcVx
* @return
*/
@Override
public int updateTcVx(TcVx tcVx)
{
tcVx.setUpdateTime(DateUtils.getNowDate());
return tcVxMapper.updateTcVx(tcVx);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcVxByIds(Long[] ids)
{
return tcVxMapper.deleteTcVxByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcVxById(Long id)
{
return tcVxMapper.deleteTcVxById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcWbMapper;
import com.ruoyi.tcZz.domain.TcWb;
import com.ruoyi.tcZz.service.ITcWbService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWbServiceImpl implements ITcWbService
{
@Autowired
private TcWbMapper tcWbMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWb selectTcWbById(Long id)
{
return tcWbMapper.selectTcWbById(id);
}
/**
*
*
* @param tcWb
* @return
*/
@Override
public List<TcWb> selectTcWbList(TcWb tcWb)
{
return tcWbMapper.selectTcWbList(tcWb);
}
/**
*
*
* @param tcWb
* @return
*/
@Override
public int insertTcWb(TcWb tcWb)
{
tcWb.setCreateTime(DateUtils.getNowDate());
return tcWbMapper.insertTcWb(tcWb);
}
/**
*
*
* @param tcWb
* @return
*/
@Override
public int updateTcWb(TcWb tcWb)
{
tcWb.setUpdateTime(DateUtils.getNowDate());
return tcWbMapper.updateTcWb(tcWb);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWbByIds(Long[] ids)
{
return tcWbMapper.deleteTcWbByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWbById(Long id)
{
return tcWbMapper.deleteTcWbById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcWzMapper;
import com.ruoyi.tcZz.domain.TcWz;
import com.ruoyi.tcZz.service.ITcWzService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWzServiceImpl implements ITcWzService
{
@Autowired
private TcWzMapper tcWzMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWz selectTcWzById(Long id)
{
return tcWzMapper.selectTcWzById(id);
}
/**
*
*
* @param tcWz
* @return
*/
@Override
public List<TcWz> selectTcWzList(TcWz tcWz)
{
return tcWzMapper.selectTcWzList(tcWz);
}
/**
*
*
* @param tcWz
* @return
*/
@Override
public int insertTcWz(TcWz tcWz)
{
tcWz.setCreateTime(DateUtils.getNowDate());
return tcWzMapper.insertTcWz(tcWz);
}
/**
*
*
* @param tcWz
* @return
*/
@Override
public int updateTcWz(TcWz tcWz)
{
tcWz.setUpdateTime(DateUtils.getNowDate());
return tcWzMapper.updateTcWz(tcWz);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWzByIds(Long[] ids)
{
return tcWzMapper.deleteTcWzByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWzById(Long id)
{
return tcWzMapper.deleteTcWzById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcZdgzxmMapper;
import com.ruoyi.tcZz.domain.TcZdgzxm;
import com.ruoyi.tcZz.service.ITcZdgzxmService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcZdgzxmServiceImpl implements ITcZdgzxmService
{
@Autowired
private TcZdgzxmMapper tcZdgzxmMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcZdgzxm selectTcZdgzxmById(Long id)
{
return tcZdgzxmMapper.selectTcZdgzxmById(id);
}
/**
*
*
* @param tcZdgzxm
* @return
*/
@Override
public List<TcZdgzxm> selectTcZdgzxmList(TcZdgzxm tcZdgzxm)
{
return tcZdgzxmMapper.selectTcZdgzxmList(tcZdgzxm);
}
/**
*
*
* @param tcZdgzxm
* @return
*/
@Override
public int insertTcZdgzxm(TcZdgzxm tcZdgzxm)
{
tcZdgzxm.setCreateTime(DateUtils.getNowDate());
return tcZdgzxmMapper.insertTcZdgzxm(tcZdgzxm);
}
/**
*
*
* @param tcZdgzxm
* @return
*/
@Override
public int updateTcZdgzxm(TcZdgzxm tcZdgzxm)
{
tcZdgzxm.setUpdateTime(DateUtils.getNowDate());
return tcZdgzxmMapper.updateTcZdgzxm(tcZdgzxm);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcZdgzxmByIds(Long[] ids)
{
return tcZdgzxmMapper.deleteTcZdgzxmByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcZdgzxmById(Long id)
{
return tcZdgzxmMapper.deleteTcZdgzxmById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcZdlyjgMapper;
import com.ruoyi.tcZz.domain.TcZdlyjg;
import com.ruoyi.tcZz.service.ITcZdlyjgService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcZdlyjgServiceImpl implements ITcZdlyjgService
{
@Autowired
private TcZdlyjgMapper tcZdlyjgMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcZdlyjg selectTcZdlyjgById(Long id)
{
return tcZdlyjgMapper.selectTcZdlyjgById(id);
}
/**
*
*
* @param tcZdlyjg
* @return
*/
@Override
public List<TcZdlyjg> selectTcZdlyjgList(TcZdlyjg tcZdlyjg)
{
return tcZdlyjgMapper.selectTcZdlyjgList(tcZdlyjg);
}
/**
*
*
* @param tcZdlyjg
* @return
*/
@Override
public int insertTcZdlyjg(TcZdlyjg tcZdlyjg)
{
tcZdlyjg.setCreateTime(DateUtils.getNowDate());
return tcZdlyjgMapper.insertTcZdlyjg(tcZdlyjg);
}
/**
*
*
* @param tcZdlyjg
* @return
*/
@Override
public int updateTcZdlyjg(TcZdlyjg tcZdlyjg)
{
tcZdlyjg.setUpdateTime(DateUtils.getNowDate());
return tcZdlyjgMapper.updateTcZdlyjg(tcZdlyjg);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcZdlyjgByIds(Long[] ids)
{
return tcZdlyjgMapper.deleteTcZdlyjgByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcZdlyjgById(Long id)
{
return tcZdlyjgMapper.deleteTcZdlyjgById(id);
}
}

@ -0,0 +1,96 @@
package com.ruoyi.tcZz.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.tcZz.mapper.TcZdqymlMapper;
import com.ruoyi.tcZz.domain.TcZdqyml;
import com.ruoyi.tcZz.service.ITcZdqymlService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcZdqymlServiceImpl implements ITcZdqymlService
{
@Autowired
private TcZdqymlMapper tcZdqymlMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcZdqyml selectTcZdqymlById(Long id)
{
return tcZdqymlMapper.selectTcZdqymlById(id);
}
/**
*
*
* @param tcZdqyml
* @return
*/
@Override
public List<TcZdqyml> selectTcZdqymlList(TcZdqyml tcZdqyml)
{
return tcZdqymlMapper.selectTcZdqymlList(tcZdqyml);
}
/**
*
*
* @param tcZdqyml
* @return
*/
@Override
public int insertTcZdqyml(TcZdqyml tcZdqyml)
{
tcZdqyml.setCreateTime(DateUtils.getNowDate());
return tcZdqymlMapper.insertTcZdqyml(tcZdqyml);
}
/**
*
*
* @param tcZdqyml
* @return
*/
@Override
public int updateTcZdqyml(TcZdqyml tcZdqyml)
{
tcZdqyml.setUpdateTime(DateUtils.getNowDate());
return tcZdqymlMapper.updateTcZdqyml(tcZdqyml);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcZdqymlByIds(Long[] ids)
{
return tcZdqymlMapper.deleteTcZdqymlByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcZdqymlById(Long id)
{
return tcZdqymlMapper.deleteTcZdqymlById(id);
}
}

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcBzhanMapper">
<resultMap type="TcBzhan" id="TcBzhanResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="zhId" column="zh_id" />
<result property="url" column="url" />
<result property="type" column="type" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcBzhanVo">
select id, area_id, isStatus, zh_id, url, type, create_by, create_time, update_by, update_time, remark from tc_bzhan
</sql>
<select id="selectTcBzhanList" parameterType="TcBzhan" resultMap="TcBzhanResult">
<include refid="selectTcBzhanVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="zhId != null "> and zh_id = #{zhId}</if>
<if test="url != null and url != ''"> and url = #{url}</if>
<if test="type != null "> and type = #{type}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcBzhanById" parameterType="Long" resultMap="TcBzhanResult">
<include refid="selectTcBzhanVo"/>
where id = #{id}
</select>
<insert id="insertTcBzhan" parameterType="TcBzhan" useGeneratedKeys="true" keyProperty="id">
insert into tc_bzhan
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="zhId != null">zh_id,</if>
<if test="url != null">url,</if>
<if test="type != null">type,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="zhId != null">#{zhId},</if>
<if test="url != null">#{url},</if>
<if test="type != null">#{type},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcBzhan" parameterType="TcBzhan">
update tc_bzhan
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="zhId != null">zh_id = #{zhId},</if>
<if test="url != null">url = #{url},</if>
<if test="type != null">type = #{type},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcBzhanById" parameterType="Long">
delete from tc_bzhan where id = #{id}
</delete>
<delete id="deleteTcBzhanByIds" parameterType="String">
delete from tc_bzhan where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcDyMapper">
<resultMap type="TcDy" id="TcDyResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="userName" column="user_name" />
<result property="intro" column="intro" />
<result property="fsCount" column="fs_count" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcDyVo">
select id, area_id, isStatus, user_name, intro, fs_count, create_by, create_time, update_by, update_time, remark from tc_dy
</sql>
<select id="selectTcDyList" parameterType="TcDy" resultMap="TcDyResult">
<include refid="selectTcDyVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
<if test="intro != null and intro != ''"> and intro = #{intro}</if>
<if test="fsCount != null and fsCount != ''"> and fs_count = #{fsCount}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcDyById" parameterType="Long" resultMap="TcDyResult">
<include refid="selectTcDyVo"/>
where id = #{id}
</select>
<insert id="insertTcDy" parameterType="TcDy" useGeneratedKeys="true" keyProperty="id">
insert into tc_dy
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="userName != null">user_name,</if>
<if test="intro != null">intro,</if>
<if test="fsCount != null">fs_count,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="userName != null">#{userName},</if>
<if test="intro != null">#{intro},</if>
<if test="fsCount != null">#{fsCount},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcDy" parameterType="TcDy">
update tc_dy
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="userName != null">user_name = #{userName},</if>
<if test="intro != null">intro = #{intro},</if>
<if test="fsCount != null">fs_count = #{fsCount},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcDyById" parameterType="Long">
delete from tc_dy where id = #{id}
</delete>
<delete id="deleteTcDyByIds" parameterType="String">
delete from tc_dy where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,127 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcJbmapMapper">
<resultMap type="TcJbmap" id="TcJbmapResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="jbObj" column="jb_obj" />
<result property="number" column="number" />
<result property="jbTime" column="jb_time" />
<result property="address" column="address" />
<result property="content" column="content" />
<result property="state" column="state" />
<result property="longitude" column="longitude" />
<result property="latitude" column="latitude" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcJbmapVo">
select id, area_id, isStatus, jb_obj, number, jb_time, address, content, state, longitude, latitude, create_by, create_time, update_by, update_time, remark from tc_jbmap
</sql>
<select id="selectTcJbmapList" parameterType="TcJbmap" resultMap="TcJbmapResult">
<include refid="selectTcJbmapVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="jbObj != null and jbObj != ''"> and jb_obj = #{jbObj}</if>
<if test="number != null "> and number = #{number}</if>
<if test="params.beginJbTime != null and params.beginJbTime != '' and params.endJbTime != null and params.endJbTime != ''"> and jb_time between #{params.beginJbTime} and #{params.endJbTime}</if>
<if test="address != null and address != ''"> and address = #{address}</if>
<if test="content != null and content != ''"> and content = #{content}</if>
<if test="state != null "> and state = #{state}</if>
<if test="longitude != null and longitude != ''"> and longitude = #{longitude}</if>
<if test="latitude != null and latitude != ''"> and latitude = #{latitude}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcJbmapById" parameterType="Long" resultMap="TcJbmapResult">
<include refid="selectTcJbmapVo"/>
where id = #{id}
</select>
<insert id="insertTcJbmap" parameterType="TcJbmap" useGeneratedKeys="true" keyProperty="id">
insert into tc_jbmap
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="jbObj != null">jb_obj,</if>
<if test="number != null">number,</if>
<if test="jbTime != null">jb_time,</if>
<if test="address != null">address,</if>
<if test="content != null">content,</if>
<if test="state != null">state,</if>
<if test="longitude != null">longitude,</if>
<if test="latitude != null">latitude,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="jbObj != null">#{jbObj},</if>
<if test="number != null">#{number},</if>
<if test="jbTime != null">#{jbTime},</if>
<if test="address != null">#{address},</if>
<if test="content != null">#{content},</if>
<if test="state != null">#{state},</if>
<if test="longitude != null">#{longitude},</if>
<if test="latitude != null">#{latitude},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcJbmap" parameterType="TcJbmap">
update tc_jbmap
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="jbObj != null">jb_obj = #{jbObj},</if>
<if test="number != null">number = #{number},</if>
<if test="jbTime != null">jb_time = #{jbTime},</if>
<if test="address != null">address = #{address},</if>
<if test="content != null">content = #{content},</if>
<if test="state != null">state = #{state},</if>
<if test="longitude != null">longitude = #{longitude},</if>
<if test="latitude != null">latitude = #{latitude},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcJbmapById" parameterType="Long">
delete from tc_jbmap where id = #{id}
</delete>
<delete id="deleteTcJbmapByIds" parameterType="String">
delete from tc_jbmap where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcJbsjndfltjMapper">
<resultMap type="TcJbsjndfltj" id="TcJbsjndfltjResult">
<result property="id" column="id" />
<result property="type" column="type" />
<result property="count" column="count" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcJbsjndfltjVo">
select id, type, count, create_by, create_time, update_by, update_time, remark from tc_jbsjndfltj
</sql>
<select id="selectTcJbsjndfltjList" parameterType="TcJbsjndfltj" resultMap="TcJbsjndfltjResult">
<include refid="selectTcJbsjndfltjVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="type != null and type != ''"> and type = #{type}</if>
<if test="count != null "> and count = #{count}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcJbsjndfltjById" parameterType="Long" resultMap="TcJbsjndfltjResult">
<include refid="selectTcJbsjndfltjVo"/>
where id = #{id}
</select>
<insert id="insertTcJbsjndfltj" parameterType="TcJbsjndfltj" useGeneratedKeys="true" keyProperty="id">
insert into tc_jbsjndfltj
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="type != null">type,</if>
<if test="count != null">count,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="type != null">#{type},</if>
<if test="count != null">#{count},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcJbsjndfltj" parameterType="TcJbsjndfltj">
update tc_jbsjndfltj
<trim prefix="SET" suffixOverrides=",">
<if test="type != null">type = #{type},</if>
<if test="count != null">count = #{count},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcJbsjndfltjById" parameterType="Long">
delete from tc_jbsjndfltj where id = #{id}
</delete>
<delete id="deleteTcJbsjndfltjByIds" parameterType="String">
delete from tc_jbsjndfltj where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcQlzxxddtMapper">
<resultMap type="TcQlzxxddt" id="TcQlzxxddtResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="title" column="title" />
<result property="content" column="content" />
<result property="imageUrl" column="image_url" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcQlzxxddtVo">
select id, area_id, isStatus, title, content, image_url, create_by, create_time, update_by, update_time, remark from tc_qlzxxddt
</sql>
<select id="selectTcQlzxxddtList" parameterType="TcQlzxxddt" resultMap="TcQlzxxddtResult">
<include refid="selectTcQlzxxddtVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="title != null and title != ''"> and title = #{title}</if>
<if test="content != null and content != ''"> and content = #{content}</if>
<if test="imageUrl != null and imageUrl != ''"> and image_url = #{imageUrl}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcQlzxxddtById" parameterType="Long" resultMap="TcQlzxxddtResult">
<include refid="selectTcQlzxxddtVo"/>
where id = #{id}
</select>
<insert id="insertTcQlzxxddt" parameterType="TcQlzxxddt" useGeneratedKeys="true" keyProperty="id">
insert into tc_qlzxxddt
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="title != null">title,</if>
<if test="content != null">content,</if>
<if test="imageUrl != null">image_url,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="title != null">#{title},</if>
<if test="content != null">#{content},</if>
<if test="imageUrl != null">#{imageUrl},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcQlzxxddt" parameterType="TcQlzxxddt">
update tc_qlzxxddt
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="title != null">title = #{title},</if>
<if test="content != null">content = #{content},</if>
<if test="imageUrl != null">image_url = #{imageUrl},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcQlzxxddtById" parameterType="Long">
delete from tc_qlzxxddt where id = #{id}
</delete>
<delete id="deleteTcQlzxxddtByIds" parameterType="String">
delete from tc_qlzxxddt where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcQlzxxdsjtjMapper">
<resultMap type="TcQlzxxdsjtj" id="TcQlzxxdsjtjResult">
<result property="id" column="id" />
<result property="dateTime" column="date_time" />
<result property="count1" column="count1" />
<result property="count2" column="count2" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcQlzxxdsjtjVo">
select id, date_time, count1, count2, create_by, create_time, update_by, update_time, remark from tc_qlzxxdsjtj
</sql>
<select id="selectTcQlzxxdsjtjList" parameterType="TcQlzxxdsjtj" resultMap="TcQlzxxdsjtjResult">
<include refid="selectTcQlzxxdsjtjVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="params.beginDateTime != null and params.beginDateTime != '' and params.endDateTime != null and params.endDateTime != ''"> and date_time between #{params.beginDateTime} and #{params.endDateTime}</if>
<if test="count1 != null "> and count1 = #{count1}</if>
<if test="count2 != null "> and count2 = #{count2}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcQlzxxdsjtjById" parameterType="Long" resultMap="TcQlzxxdsjtjResult">
<include refid="selectTcQlzxxdsjtjVo"/>
where id = #{id}
</select>
<insert id="insertTcQlzxxdsjtj" parameterType="TcQlzxxdsjtj" useGeneratedKeys="true" keyProperty="id">
insert into tc_qlzxxdsjtj
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="dateTime != null">date_time,</if>
<if test="count1 != null">count1,</if>
<if test="count2 != null">count2,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="dateTime != null">#{dateTime},</if>
<if test="count1 != null">#{count1},</if>
<if test="count2 != null">#{count2},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcQlzxxdsjtj" parameterType="TcQlzxxdsjtj">
update tc_qlzxxdsjtj
<trim prefix="SET" suffixOverrides=",">
<if test="dateTime != null">date_time = #{dateTime},</if>
<if test="count1 != null">count1 = #{count1},</if>
<if test="count2 != null">count2 = #{count2},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcQlzxxdsjtjById" parameterType="Long">
delete from tc_qlzxxdsjtj where id = #{id}
</delete>
<delete id="deleteTcQlzxxdsjtjByIds" parameterType="String">
delete from tc_qlzxxdsjtj where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcTtsumMapper">
<resultMap type="TcTtsum" id="TcTtsumResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="zhId" column="zh_id" />
<result property="intro" column="intro" />
<result property="type" column="type" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcTtsumVo">
select id, area_id, isStatus, zh_id, intro, type, create_by, create_time, update_by, update_time, remark from tc_ttsum
</sql>
<select id="selectTcTtsumList" parameterType="TcTtsum" resultMap="TcTtsumResult">
<include refid="selectTcTtsumVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="zhId != null "> and zh_id = #{zhId}</if>
<if test="intro != null and intro != ''"> and intro = #{intro}</if>
<if test="type != null "> and type = #{type}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcTtsumById" parameterType="Long" resultMap="TcTtsumResult">
<include refid="selectTcTtsumVo"/>
where id = #{id}
</select>
<insert id="insertTcTtsum" parameterType="TcTtsum" useGeneratedKeys="true" keyProperty="id">
insert into tc_ttsum
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="zhId != null">zh_id,</if>
<if test="intro != null">intro,</if>
<if test="type != null">type,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="zhId != null">#{zhId},</if>
<if test="intro != null">#{intro},</if>
<if test="type != null">#{type},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcTtsum" parameterType="TcTtsum">
update tc_ttsum
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="zhId != null">zh_id = #{zhId},</if>
<if test="intro != null">intro = #{intro},</if>
<if test="type != null">type = #{type},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcTtsumById" parameterType="Long">
delete from tc_ttsum where id = #{id}
</delete>
<delete id="deleteTcTtsumByIds" parameterType="String">
delete from tc_ttsum where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcVxMapper">
<resultMap type="TcVx" id="TcVxResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="zhId" column="zh_id" />
<result property="tmt" column="tmt" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcVxVo">
select id, area_id, isStatus, zh_id, tmt, create_by, create_time, update_by, update_time, remark from tc_vx
</sql>
<select id="selectTcVxList" parameterType="TcVx" resultMap="TcVxResult">
<include refid="selectTcVxVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="zhId != null "> and zh_id = #{zhId}</if>
<if test="tmt != null and tmt != ''"> and tmt = #{tmt}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcVxById" parameterType="Long" resultMap="TcVxResult">
<include refid="selectTcVxVo"/>
where id = #{id}
</select>
<insert id="insertTcVx" parameterType="TcVx" useGeneratedKeys="true" keyProperty="id">
insert into tc_vx
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="zhId != null">zh_id,</if>
<if test="tmt != null">tmt,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="zhId != null">#{zhId},</if>
<if test="tmt != null">#{tmt},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcVx" parameterType="TcVx">
update tc_vx
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="zhId != null">zh_id = #{zhId},</if>
<if test="tmt != null">tmt = #{tmt},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcVxById" parameterType="Long">
delete from tc_vx where id = #{id}
</delete>
<delete id="deleteTcVxByIds" parameterType="String">
delete from tc_vx where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcWbMapper">
<resultMap type="TcWb" id="TcWbResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="zhName" column="zh_name" />
<result property="approve" column="approve" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcWbVo">
select id, area_id, isStatus, zh_name, approve, create_by, create_time, update_by, update_time, remark from tc_wb
</sql>
<select id="selectTcWbList" parameterType="TcWb" resultMap="TcWbResult">
<include refid="selectTcWbVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="zhName != null and zhName != ''"> and zh_name like concat('%', #{zhName}, '%')</if>
<if test="approve != null and approve != ''"> and approve = #{approve}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcWbById" parameterType="Long" resultMap="TcWbResult">
<include refid="selectTcWbVo"/>
where id = #{id}
</select>
<insert id="insertTcWb" parameterType="TcWb" useGeneratedKeys="true" keyProperty="id">
insert into tc_wb
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="zhName != null">zh_name,</if>
<if test="approve != null">approve,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="zhName != null">#{zhName},</if>
<if test="approve != null">#{approve},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcWb" parameterType="TcWb">
update tc_wb
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="zhName != null">zh_name = #{zhName},</if>
<if test="approve != null">approve = #{approve},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcWbById" parameterType="Long">
delete from tc_wb where id = #{id}
</delete>
<delete id="deleteTcWbByIds" parameterType="String">
delete from tc_wb where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,107 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcWzMapper">
<resultMap type="TcWz" id="TcWzResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="webName" column="web_name" />
<result property="trueIp" column="true_ip" />
<result property="webDns" column="web_dns" />
<result property="icp" column="icp" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcWzVo">
select id, area_id, isStatus, web_name, true_ip, web_dns, icp, create_by, create_time, update_by, update_time, remark from tc_wz
</sql>
<select id="selectTcWzList" parameterType="TcWz" resultMap="TcWzResult">
<include refid="selectTcWzVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="webName != null and webName != ''"> and web_name like concat('%', #{webName}, '%')</if>
<if test="trueIp != null and trueIp != ''"> and true_ip = #{trueIp}</if>
<if test="webDns != null and webDns != ''"> and web_dns = #{webDns}</if>
<if test="icp != null and icp != ''"> and icp = #{icp}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcWzById" parameterType="Long" resultMap="TcWzResult">
<include refid="selectTcWzVo"/>
where id = #{id}
</select>
<insert id="insertTcWz" parameterType="TcWz" useGeneratedKeys="true" keyProperty="id">
insert into tc_wz
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="webName != null">web_name,</if>
<if test="trueIp != null">true_ip,</if>
<if test="webDns != null">web_dns,</if>
<if test="icp != null">icp,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="webName != null">#{webName},</if>
<if test="trueIp != null">#{trueIp},</if>
<if test="webDns != null">#{webDns},</if>
<if test="icp != null">#{icp},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcWz" parameterType="TcWz">
update tc_wz
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="webName != null">web_name = #{webName},</if>
<if test="trueIp != null">true_ip = #{trueIp},</if>
<if test="webDns != null">web_dns = #{webDns},</if>
<if test="icp != null">icp = #{icp},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcWzById" parameterType="Long">
delete from tc_wz where id = #{id}
</delete>
<delete id="deleteTcWzByIds" parameterType="String">
delete from tc_wz where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcZdgzxmMapper">
<resultMap type="TcZdgzxm" id="TcZdgzxmResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="tjUnit" column="tj_unit" />
<result property="itemName" column="item_name" />
<result property="itemContent" column="item_content" />
<result property="itemType" column="item_type" />
<result property="itemLinkMan" column="item_link_man" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcZdgzxmVo">
select id, area_id, isStatus, tj_unit, item_name, item_content, item_type, item_link_man, create_by, create_time, update_by, update_time, remark from tc_zdgzxm
</sql>
<select id="selectTcZdgzxmList" parameterType="TcZdgzxm" resultMap="TcZdgzxmResult">
<include refid="selectTcZdgzxmVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="tjUnit != null and tjUnit != ''"> and tj_unit = #{tjUnit}</if>
<if test="itemName != null and itemName != ''"> and item_name like concat('%', #{itemName}, '%')</if>
<if test="itemContent != null and itemContent != ''"> and item_content = #{itemContent}</if>
<if test="itemType != null and itemType != ''"> and item_type = #{itemType}</if>
<if test="itemLinkMan != null and itemLinkMan != ''"> and item_link_man = #{itemLinkMan}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcZdgzxmById" parameterType="Long" resultMap="TcZdgzxmResult">
<include refid="selectTcZdgzxmVo"/>
where id = #{id}
</select>
<insert id="insertTcZdgzxm" parameterType="TcZdgzxm" useGeneratedKeys="true" keyProperty="id">
insert into tc_zdgzxm
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="tjUnit != null">tj_unit,</if>
<if test="itemName != null">item_name,</if>
<if test="itemContent != null">item_content,</if>
<if test="itemType != null">item_type,</if>
<if test="itemLinkMan != null">item_link_man,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="tjUnit != null">#{tjUnit},</if>
<if test="itemName != null">#{itemName},</if>
<if test="itemContent != null">#{itemContent},</if>
<if test="itemType != null">#{itemType},</if>
<if test="itemLinkMan != null">#{itemLinkMan},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcZdgzxm" parameterType="TcZdgzxm">
update tc_zdgzxm
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="tjUnit != null">tj_unit = #{tjUnit},</if>
<if test="itemName != null">item_name = #{itemName},</if>
<if test="itemContent != null">item_content = #{itemContent},</if>
<if test="itemType != null">item_type = #{itemType},</if>
<if test="itemLinkMan != null">item_link_man = #{itemLinkMan},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcZdgzxmById" parameterType="Long">
delete from tc_zdgzxm where id = #{id}
</delete>
<delete id="deleteTcZdgzxmByIds" parameterType="String">
delete from tc_zdgzxm where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcZdlyjgMapper">
<resultMap type="TcZdlyjg" id="TcZdlyjgResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="enterpriseType" column="enterprise_type" />
<result property="jgObgj" column="jg_obgj" />
<result property="jzxw" column="jzxw" />
<result property="jgDep" column="jg_dep" />
<result property="zyyj" column="zyyj" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcZdlyjgVo">
select id, area_id, isStatus, enterprise_type, jg_obgj, jzxw, jg_dep, zyyj, create_by, create_time, update_by, update_time, remark from tc_zdlyjg
</sql>
<select id="selectTcZdlyjgList" parameterType="TcZdlyjg" resultMap="TcZdlyjgResult">
<include refid="selectTcZdlyjgVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="enterpriseType != null and enterpriseType != ''"> and enterprise_type = #{enterpriseType}</if>
<if test="jgObgj != null and jgObgj != ''"> and jg_obgj = #{jgObgj}</if>
<if test="jzxw != null and jzxw != ''"> and jzxw = #{jzxw}</if>
<if test="jgDep != null and jgDep != ''"> and jg_dep = #{jgDep}</if>
<if test="zyyj != null and zyyj != ''"> and zyyj = #{zyyj}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcZdlyjgById" parameterType="Long" resultMap="TcZdlyjgResult">
<include refid="selectTcZdlyjgVo"/>
where id = #{id}
</select>
<insert id="insertTcZdlyjg" parameterType="TcZdlyjg" useGeneratedKeys="true" keyProperty="id">
insert into tc_zdlyjg
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="enterpriseType != null">enterprise_type,</if>
<if test="jgObgj != null">jg_obgj,</if>
<if test="jzxw != null">jzxw,</if>
<if test="jgDep != null">jg_dep,</if>
<if test="zyyj != null">zyyj,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="enterpriseType != null">#{enterpriseType},</if>
<if test="jgObgj != null">#{jgObgj},</if>
<if test="jzxw != null">#{jzxw},</if>
<if test="jgDep != null">#{jgDep},</if>
<if test="zyyj != null">#{zyyj},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcZdlyjg" parameterType="TcZdlyjg">
update tc_zdlyjg
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="enterpriseType != null">enterprise_type = #{enterpriseType},</if>
<if test="jgObgj != null">jg_obgj = #{jgObgj},</if>
<if test="jzxw != null">jzxw = #{jzxw},</if>
<if test="jgDep != null">jg_dep = #{jgDep},</if>
<if test="zyyj != null">zyyj = #{zyyj},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcZdlyjgById" parameterType="Long">
delete from tc_zdlyjg where id = #{id}
</delete>
<delete id="deleteTcZdlyjgByIds" parameterType="String">
delete from tc_zdlyjg where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,132 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.tcZz.mapper.TcZdqymlMapper">
<resultMap type="TcZdqyml" id="TcZdqymlResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="enterpriseName" column="enterprise_name" />
<result property="enterpriseType" column="enterprise_type" />
<result property="netYw" column="net_yw" />
<result property="depJg" column="dep_jg" />
<result property="unitAddress" column="unit_address" />
<result property="linkMan" column="link_man" />
<result property="linkTel" column="link_tel" />
<result property="url" column="url" />
<result property="dns" column="dns" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectTcZdqymlVo">
select id, area_id, isStatus, enterprise_name, enterprise_type, net_yw, dep_jg, unit_address, link_man, link_tel, url, dns, create_by, create_time, update_by, update_time, remark from tc_zdqyml
</sql>
<select id="selectTcZdqymlList" parameterType="TcZdqyml" resultMap="TcZdqymlResult">
<include refid="selectTcZdqymlVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="isStatus != null "> and isStatus = #{isStatus}</if>
<if test="enterpriseName != null and enterpriseName != ''"> and enterprise_name like concat('%', #{enterpriseName}, '%')</if>
<if test="enterpriseType != null and enterpriseType != ''"> and enterprise_type = #{enterpriseType}</if>
<if test="netYw != null and netYw != ''"> and net_yw = #{netYw}</if>
<if test="depJg != null and depJg != ''"> and dep_jg = #{depJg}</if>
<if test="unitAddress != null and unitAddress != ''"> and unit_address = #{unitAddress}</if>
<if test="linkMan != null and linkMan != ''"> and link_man = #{linkMan}</if>
<if test="linkTel != null and linkTel != ''"> and link_tel = #{linkTel}</if>
<if test="url != null and url != ''"> and url = #{url}</if>
<if test="dns != null and dns != ''"> and dns = #{dns}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="params.beginUpdateTime != null and params.beginUpdateTime != '' and params.endUpdateTime != null and params.endUpdateTime != ''"> and update_time between #{params.beginUpdateTime} and #{params.endUpdateTime}</if>
<if test="remark != null and remark != ''"> and remark = #{remark}</if>
</where>
</select>
<select id="selectTcZdqymlById" parameterType="Long" resultMap="TcZdqymlResult">
<include refid="selectTcZdqymlVo"/>
where id = #{id}
</select>
<insert id="insertTcZdqyml" parameterType="TcZdqyml" useGeneratedKeys="true" keyProperty="id">
insert into tc_zdqyml
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="enterpriseName != null">enterprise_name,</if>
<if test="enterpriseType != null">enterprise_type,</if>
<if test="netYw != null">net_yw,</if>
<if test="depJg != null">dep_jg,</if>
<if test="unitAddress != null">unit_address,</if>
<if test="linkMan != null">link_man,</if>
<if test="linkTel != null">link_tel,</if>
<if test="url != null">url,</if>
<if test="dns != null">dns,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="areaId != null">#{areaId},</if>
<if test="isStatus != null">#{isStatus},</if>
<if test="enterpriseName != null">#{enterpriseName},</if>
<if test="enterpriseType != null">#{enterpriseType},</if>
<if test="netYw != null">#{netYw},</if>
<if test="depJg != null">#{depJg},</if>
<if test="unitAddress != null">#{unitAddress},</if>
<if test="linkMan != null">#{linkMan},</if>
<if test="linkTel != null">#{linkTel},</if>
<if test="url != null">#{url},</if>
<if test="dns != null">#{dns},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateTcZdqyml" parameterType="TcZdqyml">
update tc_zdqyml
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="enterpriseName != null">enterprise_name = #{enterpriseName},</if>
<if test="enterpriseType != null">enterprise_type = #{enterpriseType},</if>
<if test="netYw != null">net_yw = #{netYw},</if>
<if test="depJg != null">dep_jg = #{depJg},</if>
<if test="unitAddress != null">unit_address = #{unitAddress},</if>
<if test="linkMan != null">link_man = #{linkMan},</if>
<if test="linkTel != null">link_tel = #{linkTel},</if>
<if test="url != null">url = #{url},</if>
<if test="dns != null">dns = #{dns},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTcZdqymlById" parameterType="Long">
delete from tc_zdqyml where id = #{id}
</delete>
<delete id="deleteTcZdqymlByIds" parameterType="String">
delete from tc_zdqyml where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>
Loading…
Cancel
Save