网络生态添加注释

duhanyu
杜函宇 1 year ago
parent a04977b153
commit cf9d63f7d3

@ -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.TcAqg;
import com.ruoyi.tcZz.service.ITcAqgService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/aqg")
public class TcAqgController extends BaseController
{
@Autowired
private ITcAqgService tcAqgService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:aqg:list')")
@GetMapping("/list")
public TableDataInfo list(TcAqg tcAqg)
{
startPage();
List<TcAqg> list = tcAqgService.selectTcAqgList(tcAqg);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:aqg:export')")
@Log(title = "网络安全官", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcAqg tcAqg)
{
List<TcAqg> list = tcAqgService.selectTcAqgList(tcAqg);
ExcelUtil<TcAqg> util = new ExcelUtil<TcAqg>(TcAqg.class);
util.exportExcel(response, list, "网络安全官数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:aqg:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcAqgService.selectTcAqgById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:aqg:add')")
@Log(title = "网络安全官", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcAqg tcAqg)
{
return toAjax(tcAqgService.insertTcAqg(tcAqg));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:aqg:edit')")
@Log(title = "网络安全官", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcAqg tcAqg)
{
return toAjax(tcAqgService.updateTcAqg(tcAqg));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:aqg:remove')")
@Log(title = "网络安全官", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcAqgService.deleteTcAqgByIds(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.TcBjsjwp;
import com.ruoyi.tcZz.service.ITcBjsjwpService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/bjsjwp")
public class TcBjsjwpController extends BaseController
{
@Autowired
private ITcBjsjwpService tcBjsjwpService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:bjsjwp:list')")
@GetMapping("/list")
public TableDataInfo list(TcBjsjwp tcBjsjwp)
{
startPage();
List<TcBjsjwp> list = tcBjsjwpService.selectTcBjsjwpList(tcBjsjwp);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:bjsjwp:export')")
@Log(title = "本级上级网评指令比例(月)", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcBjsjwp tcBjsjwp)
{
List<TcBjsjwp> list = tcBjsjwpService.selectTcBjsjwpList(tcBjsjwp);
ExcelUtil<TcBjsjwp> util = new ExcelUtil<TcBjsjwp>(TcBjsjwp.class);
util.exportExcel(response, list, "本级上级网评指令比例(月)数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:bjsjwp:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcBjsjwpService.selectTcBjsjwpById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:bjsjwp:add')")
@Log(title = "本级上级网评指令比例(月)", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcBjsjwp tcBjsjwp)
{
return toAjax(tcBjsjwpService.insertTcBjsjwp(tcBjsjwp));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:bjsjwp:edit')")
@Log(title = "本级上级网评指令比例(月)", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcBjsjwp tcBjsjwp)
{
return toAjax(tcBjsjwpService.updateTcBjsjwp(tcBjsjwp));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:bjsjwp:remove')")
@Log(title = "本级上级网评指令比例(月)", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcBjsjwpService.deleteTcBjsjwpByIds(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.TcFb;
import com.ruoyi.tcZz.service.ITcFbService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/fb")
public class TcFbController extends BaseController
{
@Autowired
private ITcFbService tcFbService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:fb:list')")
@GetMapping("/list")
public TableDataInfo list(TcFb tcFb)
{
startPage();
List<TcFb> list = tcFbService.selectTcFbList(tcFb);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:fb:export')")
@Log(title = "上级媒体、本地发布", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcFb tcFb)
{
List<TcFb> list = tcFbService.selectTcFbList(tcFb);
ExcelUtil<TcFb> util = new ExcelUtil<TcFb>(TcFb.class);
util.exportExcel(response, list, "上级媒体、本地发布数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:fb:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcFbService.selectTcFbById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:fb:add')")
@Log(title = "上级媒体、本地发布", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcFb tcFb)
{
return toAjax(tcFbService.insertTcFb(tcFb));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:fb:edit')")
@Log(title = "上级媒体、本地发布", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcFb tcFb)
{
return toAjax(tcFbService.updateTcFb(tcFb));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:fb:remove')")
@Log(title = "上级媒体、本地发布", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcFbService.deleteTcFbByIds(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.TcWlaqzcqy;
import com.ruoyi.tcZz.service.ITcWlaqzcqyService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/wlaqzcqy")
public class TcWlaqzcqyController extends BaseController
{
@Autowired
private ITcWlaqzcqyService tcWlaqzcqyService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlaqzcqy:list')")
@GetMapping("/list")
public TableDataInfo list(TcWlaqzcqy tcWlaqzcqy)
{
startPage();
List<TcWlaqzcqy> list = tcWlaqzcqyService.selectTcWlaqzcqyList(tcWlaqzcqy);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlaqzcqy:export')")
@Log(title = "网络安全支持单位", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWlaqzcqy tcWlaqzcqy)
{
List<TcWlaqzcqy> list = tcWlaqzcqyService.selectTcWlaqzcqyList(tcWlaqzcqy);
ExcelUtil<TcWlaqzcqy> util = new ExcelUtil<TcWlaqzcqy>(TcWlaqzcqy.class);
util.exportExcel(response, list, "网络安全支持单位数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlaqzcqy:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWlaqzcqyService.selectTcWlaqzcqyById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlaqzcqy:add')")
@Log(title = "网络安全支持单位", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWlaqzcqy tcWlaqzcqy)
{
return toAjax(tcWlaqzcqyService.insertTcWlaqzcqy(tcWlaqzcqy));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlaqzcqy:edit')")
@Log(title = "网络安全支持单位", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWlaqzcqy tcWlaqzcqy)
{
return toAjax(tcWlaqzcqyService.updateTcWlaqzcqy(tcWlaqzcqy));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlaqzcqy:remove')")
@Log(title = "网络安全支持单位", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWlaqzcqyService.deleteTcWlaqzcqyByIds(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.TcWldv;
import com.ruoyi.tcZz.service.ITcWldvService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* VController
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/wldv")
public class TcWldvController extends BaseController
{
@Autowired
private ITcWldvService tcWldvService;
/**
* V
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wldv:list')")
@GetMapping("/list")
public TableDataInfo list(TcWldv tcWldv)
{
startPage();
List<TcWldv> list = tcWldvService.selectTcWldvList(tcWldv);
return getDataTable(list);
}
/**
* V
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wldv:export')")
@Log(title = "网络大V", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWldv tcWldv)
{
List<TcWldv> list = tcWldvService.selectTcWldvList(tcWldv);
ExcelUtil<TcWldv> util = new ExcelUtil<TcWldv>(TcWldv.class);
util.exportExcel(response, list, "网络大V数据");
}
/**
* V
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wldv:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWldvService.selectTcWldvById(id));
}
/**
* V
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wldv:add')")
@Log(title = "网络大V", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWldv tcWldv)
{
return toAjax(tcWldvService.insertTcWldv(tcWldv));
}
/**
* V
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wldv:edit')")
@Log(title = "网络大V", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWldv tcWldv)
{
return toAjax(tcWldvService.updateTcWldv(tcWldv));
}
/**
* V
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wldv:remove')")
@Log(title = "网络大V", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWldvService.deleteTcWldvByIds(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.TcWlmqfzr;
import com.ruoyi.tcZz.service.ITcWlmqfzrService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/wlmqfzr")
public class TcWlmqfzrController extends BaseController
{
@Autowired
private ITcWlmqfzrService tcWlmqfzrService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlmqfzr:list')")
@GetMapping("/list")
public TableDataInfo list(TcWlmqfzr tcWlmqfzr)
{
startPage();
List<TcWlmqfzr> list = tcWlmqfzrService.selectTcWlmqfzrList(tcWlmqfzr);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlmqfzr:export')")
@Log(title = "网络民情负责人", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWlmqfzr tcWlmqfzr)
{
List<TcWlmqfzr> list = tcWlmqfzrService.selectTcWlmqfzrList(tcWlmqfzr);
ExcelUtil<TcWlmqfzr> util = new ExcelUtil<TcWlmqfzr>(TcWlmqfzr.class);
util.exportExcel(response, list, "网络民情负责人数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlmqfzr:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWlmqfzrService.selectTcWlmqfzrById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlmqfzr:add')")
@Log(title = "网络民情负责人", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWlmqfzr tcWlmqfzr)
{
return toAjax(tcWlmqfzrService.insertTcWlmqfzr(tcWlmqfzr));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlmqfzr:edit')")
@Log(title = "网络民情负责人", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWlmqfzr tcWlmqfzr)
{
return toAjax(tcWlmqfzrService.updateTcWlmqfzr(tcWlmqfzr));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlmqfzr:remove')")
@Log(title = "网络民情负责人", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWlmqfzrService.deleteTcWlmqfzrByIds(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.TcWlwmzyz;
import com.ruoyi.tcZz.service.ITcWlwmzyzService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/wlwmzyz")
public class TcWlwmzyzController extends BaseController
{
@Autowired
private ITcWlwmzyzService tcWlwmzyzService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlwmzyz:list')")
@GetMapping("/list")
public TableDataInfo list(TcWlwmzyz tcWlwmzyz)
{
startPage();
List<TcWlwmzyz> list = tcWlwmzyzService.selectTcWlwmzyzList(tcWlwmzyz);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlwmzyz:export')")
@Log(title = "网络文明志愿者", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWlwmzyz tcWlwmzyz)
{
List<TcWlwmzyz> list = tcWlwmzyzService.selectTcWlwmzyzList(tcWlwmzyz);
ExcelUtil<TcWlwmzyz> util = new ExcelUtil<TcWlwmzyz>(TcWlwmzyz.class);
util.exportExcel(response, list, "网络文明志愿者数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlwmzyz:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWlwmzyzService.selectTcWlwmzyzById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlwmzyz:add')")
@Log(title = "网络文明志愿者", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWlwmzyz tcWlwmzyz)
{
return toAjax(tcWlwmzyzService.insertTcWlwmzyz(tcWlwmzyz));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlwmzyz:edit')")
@Log(title = "网络文明志愿者", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWlwmzyz tcWlwmzyz)
{
return toAjax(tcWlwmzyzService.updateTcWlwmzyz(tcWlwmzyz));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wlwmzyz:remove')")
@Log(title = "网络文明志愿者", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWlwmzyzService.deleteTcWlwmzyzByIds(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.TcWpwzlyqk;
import com.ruoyi.tcZz.service.ITcWpwzlyqkService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/wpwzlyqk")
public class TcWpwzlyqkController extends BaseController
{
@Autowired
private ITcWpwzlyqkService tcWpwzlyqkService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpwzlyqk:list')")
@GetMapping("/list")
public TableDataInfo list(TcWpwzlyqk tcWpwzlyqk)
{
startPage();
List<TcWpwzlyqk> list = tcWpwzlyqkService.selectTcWpwzlyqkList(tcWpwzlyqk);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpwzlyqk:export')")
@Log(title = "网评文章录用情况", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWpwzlyqk tcWpwzlyqk)
{
List<TcWpwzlyqk> list = tcWpwzlyqkService.selectTcWpwzlyqkList(tcWpwzlyqk);
ExcelUtil<TcWpwzlyqk> util = new ExcelUtil<TcWpwzlyqk>(TcWpwzlyqk.class);
util.exportExcel(response, list, "网评文章录用情况数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpwzlyqk:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWpwzlyqkService.selectTcWpwzlyqkById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpwzlyqk:add')")
@Log(title = "网评文章录用情况", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWpwzlyqk tcWpwzlyqk)
{
return toAjax(tcWpwzlyqkService.insertTcWpwzlyqk(tcWpwzlyqk));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpwzlyqk:edit')")
@Log(title = "网评文章录用情况", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWpwzlyqk tcWpwzlyqk)
{
return toAjax(tcWpwzlyqkService.updateTcWpwzlyqk(tcWpwzlyqk));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpwzlyqk:remove')")
@Log(title = "网评文章录用情况", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWpwzlyqkService.deleteTcWpwzlyqkByIds(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.TcWpy;
import com.ruoyi.tcZz.service.ITcWpyService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/wpy")
public class TcWpyController extends BaseController
{
@Autowired
private ITcWpyService tcWpyService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpy:list')")
@GetMapping("/list")
public TableDataInfo list(TcWpy tcWpy)
{
startPage();
List<TcWpy> list = tcWpyService.selectTcWpyList(tcWpy);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpy:export')")
@Log(title = "网评员", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWpy tcWpy)
{
List<TcWpy> list = tcWpyService.selectTcWpyList(tcWpy);
ExcelUtil<TcWpy> util = new ExcelUtil<TcWpy>(TcWpy.class);
util.exportExcel(response, list, "网评员数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpy:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWpyService.selectTcWpyById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpy:add')")
@Log(title = "网评员", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWpy tcWpy)
{
return toAjax(tcWpyService.insertTcWpy(tcWpy));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpy:edit')")
@Log(title = "网评员", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWpy tcWpy)
{
return toAjax(tcWpyService.updateTcWpy(tcWpy));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpy:remove')")
@Log(title = "网评员", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWpyService.deleteTcWpyByIds(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.TcWpyrwwcl;
import com.ruoyi.tcZz.service.ITcWpyrwwclService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2023-10-13
*/
@RestController
@RequestMapping("/tcZz/networkEcology/wpyrwwcl")
public class TcWpyrwwclController extends BaseController
{
@Autowired
private ITcWpyrwwclService tcWpyrwwclService;
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpyrwwcl:list')")
@GetMapping("/list")
public TableDataInfo list(TcWpyrwwcl tcWpyrwwcl)
{
startPage();
List<TcWpyrwwcl> list = tcWpyrwwclService.selectTcWpyrwwclList(tcWpyrwwcl);
return getDataTable(list);
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpyrwwcl:export')")
@Log(title = "网评员任务完成率(网评系统)", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TcWpyrwwcl tcWpyrwwcl)
{
List<TcWpyrwwcl> list = tcWpyrwwclService.selectTcWpyrwwclList(tcWpyrwwcl);
ExcelUtil<TcWpyrwwcl> util = new ExcelUtil<TcWpyrwwcl>(TcWpyrwwcl.class);
util.exportExcel(response, list, "网评员任务完成率(网评系统)数据");
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpyrwwcl:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return success(tcWpyrwwclService.selectTcWpyrwwclById(id));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpyrwwcl:add')")
@Log(title = "网评员任务完成率(网评系统)", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody TcWpyrwwcl tcWpyrwwcl)
{
return toAjax(tcWpyrwwclService.insertTcWpyrwwcl(tcWpyrwwcl));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpyrwwcl:edit')")
@Log(title = "网评员任务完成率(网评系统)", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody TcWpyrwwcl tcWpyrwwcl)
{
return toAjax(tcWpyrwwclService.updateTcWpyrwwcl(tcWpyrwwcl));
}
/**
*
*/
@PreAuthorize("@ss.hasPermi('tcZz/networkEcology:wpyrwwcl:remove')")
@Log(title = "网评员任务完成率(网评系统)", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(tcWpyrwwclService.deleteTcWpyrwwclByIds(ids));
}
}

@ -0,0 +1,83 @@
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_aqg
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网络安全官对象")
public class TcAqg extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 单位 */
@ApiModelProperty(value = "单位")
@Excel(name = "单位")
private String unit;
/** 第一负责人 */
@ApiModelProperty(value = "第一负责人")
@Excel(name = "第一负责人")
private String fzr;
/** 职务 */
@ApiModelProperty(value = "职务")
@Excel(name = "职务")
private String duty;
/** 直接负责人 */
@ApiModelProperty(value = "直接负责人")
@Excel(name = "直接负责人")
private String fzr1;
/** 职务_1 */
@ApiModelProperty(value = "职务_1")
@Excel(name = "职务_1")
private String duty1;
/** 负责科室 */
@ApiModelProperty(value = "负责科室")
@Excel(name = "负责科室")
private String fzks;
/** 网络安全官 */
@ApiModelProperty(value = "网络安全官")
@Excel(name = "网络安全官")
private String fzr3;
/** 职务_2 */
@ApiModelProperty(value = "职务_2")
@Excel(name = "职务_2")
private String duty3;
/** 电话 */
@ApiModelProperty(value = "电话")
@Excel(name = "电话")
private String tel;
}

@ -0,0 +1,38 @@
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_bjsjwp
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("本级上级网评指令比例(月)对象")
public class TcBjsjwp extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 本级网评指令比例 */
@ApiModelProperty(value = "本级网评指令比例")
@Excel(name = "本级网评指令比例")
private Long count1;
/** 上级网评指令比例 */
@ApiModelProperty(value = "上级网评指令比例")
@Excel(name = "上级网评指令比例")
private Long count2;
}

@ -0,0 +1,65 @@
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_fb
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("上级媒体、本地发布对象")
public class TcFb extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 类型 */
@ApiModelProperty(value = "类型,1=上级媒体,2=本地发布")
@Excel(name = "类型",readConverterExp = "1=上级媒体,2=本地发布",combo = "1=上级媒体,2=本地发布")
private Long type;
/** 标题 */
@ApiModelProperty(value = "标题")
@Excel(name = "标题")
private String title;
/** 来源 */
@ApiModelProperty(value = "来源")
@Excel(name = "来源")
private String source;
/** 发布时间 */
@ApiModelProperty(value = "发布时间")
@Excel(name = "发布时间")
private Date dateTime;
/** 网址 */
@ApiModelProperty(value = "网址")
@Excel(name = "网址")
private String url;
}

@ -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_wlaqzcqy
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网络安全支持单位对象")
public class TcWlaqzcqy extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 支撑单位 */
@ApiModelProperty(value = "支持单位")
@Excel(name = "支持单位")
private String zzUnit;
/** 联系人 */
@ApiModelProperty(value = "联系人")
@Excel(name = "联系人")
private String linkMan;
/** 联系方式 */
@ApiModelProperty(value = "联系方式")
@Excel(name = "联系方式")
private String linkTel;
}

@ -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;
/**
* V tc_wldv
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网络大V对象")
public class TcWldv extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 分类 */
@ApiModelProperty(value = "分类")
@Excel(name = "分类")
private String type;
/** 账号名称 */
@ApiModelProperty(value = "账号名称")
@Excel(name = "账号名称")
private String zhName;
/** 属性 */
@ApiModelProperty(value = "属性")
@Excel(name = "属性")
private String property;
/** 简介 */
@ApiModelProperty(value = "简介")
@Excel(name = "简介")
private String intro;
/** 粉丝数 */
@ApiModelProperty(value = "粉丝数")
@Excel(name = "粉丝数")
private Long fsCount;
}

@ -0,0 +1,68 @@
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_wlmqfzr
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网络民情负责人对象")
public class TcWlmqfzr extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 单位 */
@ApiModelProperty(value = "单位")
@Excel(name = "单位")
private String unit;
/** 民情负责人 */
@ApiModelProperty(value = "民情负责人")
@Excel(name = "民情负责人")
private String mqFzr;
/** 职务 */
@ApiModelProperty(value = "职务")
@Excel(name = "职务")
private String duty;
/** 联系电话 */
@ApiModelProperty(value = "联系电话")
@Excel(name = "联系电话")
private String linkTel;
/** 传真号码 */
@ApiModelProperty(value = "传真号码")
@Excel(name = "传真号码")
private String faxNumber;
/** 手机号码 */
@ApiModelProperty(value = "手机号码")
@Excel(name = "手机号码")
private String phoneNumber;
}

@ -0,0 +1,71 @@
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_wlwmzyz
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网络文明志愿者对象")
public class TcWlwmzyz extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 姓名 */
@ApiModelProperty(value = "姓名")
@Excel(name = "姓名")
private String name;
/** 年龄 */
@ApiModelProperty(value = "年龄")
@Excel(name = "年龄")
private Long age;
/** 活动内容 */
@ApiModelProperty(value = "活动内容")
@Excel(name = "活动内容")
private String activityContent;
/** 单位 */
@ApiModelProperty(value = "单位")
@Excel(name = "单位")
private String unit;
/** 职务 */
@ApiModelProperty(value = "职务")
@Excel(name = "职务")
private String duty;
/** 联系电话 */
@ApiModelProperty(value = "联系电话")
@Excel(name = "联系电话")
private String linkTel;
/** 志愿者类型 */
@ApiModelProperty(value = "志愿者类型,1=银龄生活,2=凌云燕")
@Excel(name = "志愿者类型",readConverterExp = "1=银龄生活,2=凌云燕",combo = "1=银龄生活,2=凌云燕")
private Long type;
}

@ -0,0 +1,52 @@
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_wpwzlyqk
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网评文章录用情况对象")
public class TcWpwzlyqk extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 类型 */
@ApiModelProperty(value = "类型,1=本级录用,2=苏州级录用,3=省级及以上录用")
@Excel(name = "类型",readConverterExp = "1=本级录用,2=苏州级录用,3=省级及以上录用",combo = "1=本级录用,2=苏州级录用,3=省级及以上录用")
private Long type;
/** 标题 */
@ApiModelProperty(value = "标题")
@Excel(name = "标题")
private String title;
/** 网址 */
@ApiModelProperty(value = "网址")
@Excel(name = "网址")
private String url;
}

@ -0,0 +1,82 @@
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_wpy
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网评员对象")
public class TcWpy extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 区域 */
@ApiModelProperty(value = "区域,1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
@Excel(name = "区域",readConverterExp = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道",combo = "1=太仓市,2=城厢镇,3=沙溪镇,4=浏河镇,5=浮桥镇,6=璜泾镇,7=双凤镇,8=娄东街道,9=陆渡街道")
private String areaId;
/** 启用/禁用 */
@ApiModelProperty(value = "启用/禁用,1=启用,2=禁用")
@Excel(name = "启用/禁用",readConverterExp = "1=启用,2=禁用",combo = "1=启用,2=禁用")
private Long isStatus;
/** 姓名 */
@ApiModelProperty(value = "姓名")
@Excel(name = "姓名")
private String name;
/** 性别 */
@ApiModelProperty(value = "性别")
@Excel(name = "性别")
private String sex;
/** 年龄 */
@ApiModelProperty(value = "年龄")
@Excel(name = "年龄")
private Long age;
/** 名族 */
@ApiModelProperty(value = "民族")
@Excel(name = "民族")
private String nationality;
/** 政治面貌 */
@ApiModelProperty(value = "政治面貌")
@Excel(name = "政治面貌")
private String zzmm;
/** 单位 */
@ApiModelProperty(value = "单位")
@Excel(name = "单位")
private String unit;
/** 移动电话 */
@ApiModelProperty(value = "移动电话")
@Excel(name = "移动电话")
private Long phoneNumber;
/** 微信号 */
@ApiModelProperty(value = "微信号")
@Excel(name = "微信号")
private Long vxNumber;
/** 网评员类型 */
@ApiModelProperty(value = "网评员类型,1=核心网评员,2=骨干网评员,3=普通网评员")
@Excel(name = "网评员类型",readConverterExp = "1=核心网评员,2=骨干网评员,3=普通网评员",combo = "1=核心网评员,2=骨干网评员,3=普通网评员")
private Long type;
}

@ -0,0 +1,38 @@
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_wpyrwwcl
*
* @author ruoyi
* @date 2023-10-13
*/
@Data
@ApiModel("网评员任务完成率(网评系统)对象")
public class TcWpyrwwcl extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
@ApiModelProperty(value = "id")
private Long id;
/** 单位 */
@ApiModelProperty(value = "单位")
@Excel(name = "单位")
private String unit;
/** 数量 */
@ApiModelProperty(value = "数量")
@Excel(name = "数量")
private Long count;
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcAqg;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcAqgMapper
{
/**
*
*
* @param id
* @return
*/
public TcAqg selectTcAqgById(Long id);
/**
*
*
* @param tcAqg
* @return
*/
public List<TcAqg> selectTcAqgList(TcAqg tcAqg);
/**
*
*
* @param tcAqg
* @return
*/
public int insertTcAqg(TcAqg tcAqg);
/**
*
*
* @param tcAqg
* @return
*/
public int updateTcAqg(TcAqg tcAqg);
/**
*
*
* @param id
* @return
*/
public int deleteTcAqgById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcAqgByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcBjsjwp;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcBjsjwpMapper
{
/**
*
*
* @param id
* @return
*/
public TcBjsjwp selectTcBjsjwpById(Long id);
/**
*
*
* @param tcBjsjwp
* @return
*/
public List<TcBjsjwp> selectTcBjsjwpList(TcBjsjwp tcBjsjwp);
/**
*
*
* @param tcBjsjwp
* @return
*/
public int insertTcBjsjwp(TcBjsjwp tcBjsjwp);
/**
*
*
* @param tcBjsjwp
* @return
*/
public int updateTcBjsjwp(TcBjsjwp tcBjsjwp);
/**
*
*
* @param id
* @return
*/
public int deleteTcBjsjwpById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcBjsjwpByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcFb;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcFbMapper
{
/**
*
*
* @param id
* @return
*/
public TcFb selectTcFbById(Long id);
/**
*
*
* @param tcFb
* @return
*/
public List<TcFb> selectTcFbList(TcFb tcFb);
/**
*
*
* @param tcFb
* @return
*/
public int insertTcFb(TcFb tcFb);
/**
*
*
* @param tcFb
* @return
*/
public int updateTcFb(TcFb tcFb);
/**
*
*
* @param id
* @return
*/
public int deleteTcFbById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcFbByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWlaqzcqy;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWlaqzcqyMapper
{
/**
*
*
* @param id
* @return
*/
public TcWlaqzcqy selectTcWlaqzcqyById(Long id);
/**
*
*
* @param tcWlaqzcqy
* @return
*/
public List<TcWlaqzcqy> selectTcWlaqzcqyList(TcWlaqzcqy tcWlaqzcqy);
/**
*
*
* @param tcWlaqzcqy
* @return
*/
public int insertTcWlaqzcqy(TcWlaqzcqy tcWlaqzcqy);
/**
*
*
* @param tcWlaqzcqy
* @return
*/
public int updateTcWlaqzcqy(TcWlaqzcqy tcWlaqzcqy);
/**
*
*
* @param id
* @return
*/
public int deleteTcWlaqzcqyById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWlaqzcqyByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWldv;
/**
* VMapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWldvMapper
{
/**
* V
*
* @param id V
* @return V
*/
public TcWldv selectTcWldvById(Long id);
/**
* V
*
* @param tcWldv V
* @return V
*/
public List<TcWldv> selectTcWldvList(TcWldv tcWldv);
/**
* V
*
* @param tcWldv V
* @return
*/
public int insertTcWldv(TcWldv tcWldv);
/**
* V
*
* @param tcWldv V
* @return
*/
public int updateTcWldv(TcWldv tcWldv);
/**
* V
*
* @param id V
* @return
*/
public int deleteTcWldvById(Long id);
/**
* V
*
* @param ids
* @return
*/
public int deleteTcWldvByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWlmqfzr;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWlmqfzrMapper
{
/**
*
*
* @param id
* @return
*/
public TcWlmqfzr selectTcWlmqfzrById(Long id);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public List<TcWlmqfzr> selectTcWlmqfzrList(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public int insertTcWlmqfzr(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public int updateTcWlmqfzr(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param id
* @return
*/
public int deleteTcWlmqfzrById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWlmqfzrByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWlwmzyz;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWlwmzyzMapper
{
/**
*
*
* @param id
* @return
*/
public TcWlwmzyz selectTcWlwmzyzById(Long id);
/**
*
*
* @param tcWlwmzyz
* @return
*/
public List<TcWlwmzyz> selectTcWlwmzyzList(TcWlwmzyz tcWlwmzyz);
/**
*
*
* @param tcWlwmzyz
* @return
*/
public int insertTcWlwmzyz(TcWlwmzyz tcWlwmzyz);
/**
*
*
* @param tcWlwmzyz
* @return
*/
public int updateTcWlwmzyz(TcWlwmzyz tcWlwmzyz);
/**
*
*
* @param id
* @return
*/
public int deleteTcWlwmzyzById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWlwmzyzByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWpwzlyqk;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWpwzlyqkMapper
{
/**
*
*
* @param id
* @return
*/
public TcWpwzlyqk selectTcWpwzlyqkById(Long id);
/**
*
*
* @param tcWpwzlyqk
* @return
*/
public List<TcWpwzlyqk> selectTcWpwzlyqkList(TcWpwzlyqk tcWpwzlyqk);
/**
*
*
* @param tcWpwzlyqk
* @return
*/
public int insertTcWpwzlyqk(TcWpwzlyqk tcWpwzlyqk);
/**
*
*
* @param tcWpwzlyqk
* @return
*/
public int updateTcWpwzlyqk(TcWpwzlyqk tcWpwzlyqk);
/**
*
*
* @param id
* @return
*/
public int deleteTcWpwzlyqkById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWpwzlyqkByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWpy;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWpyMapper
{
/**
*
*
* @param id
* @return
*/
public TcWpy selectTcWpyById(Long id);
/**
*
*
* @param tcWpy
* @return
*/
public List<TcWpy> selectTcWpyList(TcWpy tcWpy);
/**
*
*
* @param tcWpy
* @return
*/
public int insertTcWpy(TcWpy tcWpy);
/**
*
*
* @param tcWpy
* @return
*/
public int updateTcWpy(TcWpy tcWpy);
/**
*
*
* @param id
* @return
*/
public int deleteTcWpyById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWpyByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWpyrwwcl;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWpyrwwclMapper
{
/**
*
*
* @param id
* @return
*/
public TcWpyrwwcl selectTcWpyrwwclById(Long id);
/**
*
*
* @param tcWpyrwwcl
* @return
*/
public List<TcWpyrwwcl> selectTcWpyrwwclList(TcWpyrwwcl tcWpyrwwcl);
/**
*
*
* @param tcWpyrwwcl
* @return
*/
public int insertTcWpyrwwcl(TcWpyrwwcl tcWpyrwwcl);
/**
*
*
* @param tcWpyrwwcl
* @return
*/
public int updateTcWpyrwwcl(TcWpyrwwcl tcWpyrwwcl);
/**
*
*
* @param id
* @return
*/
public int deleteTcWpyrwwclById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWpyrwwclByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcAqg;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcAqgService
{
/**
*
*
* @param id
* @return
*/
public TcAqg selectTcAqgById(Long id);
/**
*
*
* @param tcAqg
* @return
*/
public List<TcAqg> selectTcAqgList(TcAqg tcAqg);
/**
*
*
* @param tcAqg
* @return
*/
public int insertTcAqg(TcAqg tcAqg);
/**
*
*
* @param tcAqg
* @return
*/
public int updateTcAqg(TcAqg tcAqg);
/**
*
*
* @param ids
* @return
*/
public int deleteTcAqgByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcAqgById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcBjsjwp;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcBjsjwpService
{
/**
*
*
* @param id
* @return
*/
public TcBjsjwp selectTcBjsjwpById(Long id);
/**
*
*
* @param tcBjsjwp
* @return
*/
public List<TcBjsjwp> selectTcBjsjwpList(TcBjsjwp tcBjsjwp);
/**
*
*
* @param tcBjsjwp
* @return
*/
public int insertTcBjsjwp(TcBjsjwp tcBjsjwp);
/**
*
*
* @param tcBjsjwp
* @return
*/
public int updateTcBjsjwp(TcBjsjwp tcBjsjwp);
/**
*
*
* @param ids
* @return
*/
public int deleteTcBjsjwpByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcBjsjwpById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcFb;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcFbService
{
/**
*
*
* @param id
* @return
*/
public TcFb selectTcFbById(Long id);
/**
*
*
* @param tcFb
* @return
*/
public List<TcFb> selectTcFbList(TcFb tcFb);
/**
*
*
* @param tcFb
* @return
*/
public int insertTcFb(TcFb tcFb);
/**
*
*
* @param tcFb
* @return
*/
public int updateTcFb(TcFb tcFb);
/**
*
*
* @param ids
* @return
*/
public int deleteTcFbByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcFbById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWlaqzcqy;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWlaqzcqyService
{
/**
*
*
* @param id
* @return
*/
public TcWlaqzcqy selectTcWlaqzcqyById(Long id);
/**
*
*
* @param tcWlaqzcqy
* @return
*/
public List<TcWlaqzcqy> selectTcWlaqzcqyList(TcWlaqzcqy tcWlaqzcqy);
/**
*
*
* @param tcWlaqzcqy
* @return
*/
public int insertTcWlaqzcqy(TcWlaqzcqy tcWlaqzcqy);
/**
*
*
* @param tcWlaqzcqy
* @return
*/
public int updateTcWlaqzcqy(TcWlaqzcqy tcWlaqzcqy);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWlaqzcqyByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWlaqzcqyById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWldv;
/**
* VService
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWldvService
{
/**
* V
*
* @param id V
* @return V
*/
public TcWldv selectTcWldvById(Long id);
/**
* V
*
* @param tcWldv V
* @return V
*/
public List<TcWldv> selectTcWldvList(TcWldv tcWldv);
/**
* V
*
* @param tcWldv V
* @return
*/
public int insertTcWldv(TcWldv tcWldv);
/**
* V
*
* @param tcWldv V
* @return
*/
public int updateTcWldv(TcWldv tcWldv);
/**
* V
*
* @param ids V
* @return
*/
public int deleteTcWldvByIds(Long[] ids);
/**
* V
*
* @param id V
* @return
*/
public int deleteTcWldvById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWlmqfzr;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWlmqfzrService
{
/**
*
*
* @param id
* @return
*/
public TcWlmqfzr selectTcWlmqfzrById(Long id);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public List<TcWlmqfzr> selectTcWlmqfzrList(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public int insertTcWlmqfzr(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public int updateTcWlmqfzr(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWlmqfzrByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWlmqfzrById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWlwmzyz;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWlwmzyzService
{
/**
*
*
* @param id
* @return
*/
public TcWlwmzyz selectTcWlwmzyzById(Long id);
/**
*
*
* @param tcWlwmzyz
* @return
*/
public List<TcWlwmzyz> selectTcWlwmzyzList(TcWlwmzyz tcWlwmzyz);
/**
*
*
* @param tcWlwmzyz
* @return
*/
public int insertTcWlwmzyz(TcWlwmzyz tcWlwmzyz);
/**
*
*
* @param tcWlwmzyz
* @return
*/
public int updateTcWlwmzyz(TcWlwmzyz tcWlwmzyz);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWlwmzyzByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWlwmzyzById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWpwzlyqk;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWpwzlyqkService
{
/**
*
*
* @param id
* @return
*/
public TcWpwzlyqk selectTcWpwzlyqkById(Long id);
/**
*
*
* @param tcWpwzlyqk
* @return
*/
public List<TcWpwzlyqk> selectTcWpwzlyqkList(TcWpwzlyqk tcWpwzlyqk);
/**
*
*
* @param tcWpwzlyqk
* @return
*/
public int insertTcWpwzlyqk(TcWpwzlyqk tcWpwzlyqk);
/**
*
*
* @param tcWpwzlyqk
* @return
*/
public int updateTcWpwzlyqk(TcWpwzlyqk tcWpwzlyqk);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWpwzlyqkByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWpwzlyqkById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWpy;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWpyService
{
/**
*
*
* @param id
* @return
*/
public TcWpy selectTcWpyById(Long id);
/**
*
*
* @param tcWpy
* @return
*/
public List<TcWpy> selectTcWpyList(TcWpy tcWpy);
/**
*
*
* @param tcWpy
* @return
*/
public int insertTcWpy(TcWpy tcWpy);
/**
*
*
* @param tcWpy
* @return
*/
public int updateTcWpy(TcWpy tcWpy);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWpyByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWpyById(Long id);
}

@ -0,0 +1,61 @@
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWpyrwwcl;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcWpyrwwclService
{
/**
*
*
* @param id
* @return
*/
public TcWpyrwwcl selectTcWpyrwwclById(Long id);
/**
*
*
* @param tcWpyrwwcl
* @return
*/
public List<TcWpyrwwcl> selectTcWpyrwwclList(TcWpyrwwcl tcWpyrwwcl);
/**
*
*
* @param tcWpyrwwcl
* @return
*/
public int insertTcWpyrwwcl(TcWpyrwwcl tcWpyrwwcl);
/**
*
*
* @param tcWpyrwwcl
* @return
*/
public int updateTcWpyrwwcl(TcWpyrwwcl tcWpyrwwcl);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWpyrwwclByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWpyrwwclById(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.TcAqgMapper;
import com.ruoyi.tcZz.domain.TcAqg;
import com.ruoyi.tcZz.service.ITcAqgService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcAqgServiceImpl implements ITcAqgService
{
@Autowired
private TcAqgMapper tcAqgMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcAqg selectTcAqgById(Long id)
{
return tcAqgMapper.selectTcAqgById(id);
}
/**
*
*
* @param tcAqg
* @return
*/
@Override
public List<TcAqg> selectTcAqgList(TcAqg tcAqg)
{
return tcAqgMapper.selectTcAqgList(tcAqg);
}
/**
*
*
* @param tcAqg
* @return
*/
@Override
public int insertTcAqg(TcAqg tcAqg)
{
tcAqg.setCreateTime(DateUtils.getNowDate());
return tcAqgMapper.insertTcAqg(tcAqg);
}
/**
*
*
* @param tcAqg
* @return
*/
@Override
public int updateTcAqg(TcAqg tcAqg)
{
tcAqg.setUpdateTime(DateUtils.getNowDate());
return tcAqgMapper.updateTcAqg(tcAqg);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcAqgByIds(Long[] ids)
{
return tcAqgMapper.deleteTcAqgByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcAqgById(Long id)
{
return tcAqgMapper.deleteTcAqgById(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.TcBjsjwpMapper;
import com.ruoyi.tcZz.domain.TcBjsjwp;
import com.ruoyi.tcZz.service.ITcBjsjwpService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcBjsjwpServiceImpl implements ITcBjsjwpService
{
@Autowired
private TcBjsjwpMapper tcBjsjwpMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcBjsjwp selectTcBjsjwpById(Long id)
{
return tcBjsjwpMapper.selectTcBjsjwpById(id);
}
/**
*
*
* @param tcBjsjwp
* @return
*/
@Override
public List<TcBjsjwp> selectTcBjsjwpList(TcBjsjwp tcBjsjwp)
{
return tcBjsjwpMapper.selectTcBjsjwpList(tcBjsjwp);
}
/**
*
*
* @param tcBjsjwp
* @return
*/
@Override
public int insertTcBjsjwp(TcBjsjwp tcBjsjwp)
{
tcBjsjwp.setCreateTime(DateUtils.getNowDate());
return tcBjsjwpMapper.insertTcBjsjwp(tcBjsjwp);
}
/**
*
*
* @param tcBjsjwp
* @return
*/
@Override
public int updateTcBjsjwp(TcBjsjwp tcBjsjwp)
{
tcBjsjwp.setUpdateTime(DateUtils.getNowDate());
return tcBjsjwpMapper.updateTcBjsjwp(tcBjsjwp);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcBjsjwpByIds(Long[] ids)
{
return tcBjsjwpMapper.deleteTcBjsjwpByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcBjsjwpById(Long id)
{
return tcBjsjwpMapper.deleteTcBjsjwpById(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.TcFbMapper;
import com.ruoyi.tcZz.domain.TcFb;
import com.ruoyi.tcZz.service.ITcFbService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcFbServiceImpl implements ITcFbService
{
@Autowired
private TcFbMapper tcFbMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcFb selectTcFbById(Long id)
{
return tcFbMapper.selectTcFbById(id);
}
/**
*
*
* @param tcFb
* @return
*/
@Override
public List<TcFb> selectTcFbList(TcFb tcFb)
{
return tcFbMapper.selectTcFbList(tcFb);
}
/**
*
*
* @param tcFb
* @return
*/
@Override
public int insertTcFb(TcFb tcFb)
{
tcFb.setCreateTime(DateUtils.getNowDate());
return tcFbMapper.insertTcFb(tcFb);
}
/**
*
*
* @param tcFb
* @return
*/
@Override
public int updateTcFb(TcFb tcFb)
{
tcFb.setUpdateTime(DateUtils.getNowDate());
return tcFbMapper.updateTcFb(tcFb);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcFbByIds(Long[] ids)
{
return tcFbMapper.deleteTcFbByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcFbById(Long id)
{
return tcFbMapper.deleteTcFbById(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.TcWlaqzcqyMapper;
import com.ruoyi.tcZz.domain.TcWlaqzcqy;
import com.ruoyi.tcZz.service.ITcWlaqzcqyService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWlaqzcqyServiceImpl implements ITcWlaqzcqyService
{
@Autowired
private TcWlaqzcqyMapper tcWlaqzcqyMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWlaqzcqy selectTcWlaqzcqyById(Long id)
{
return tcWlaqzcqyMapper.selectTcWlaqzcqyById(id);
}
/**
*
*
* @param tcWlaqzcqy
* @return
*/
@Override
public List<TcWlaqzcqy> selectTcWlaqzcqyList(TcWlaqzcqy tcWlaqzcqy)
{
return tcWlaqzcqyMapper.selectTcWlaqzcqyList(tcWlaqzcqy);
}
/**
*
*
* @param tcWlaqzcqy
* @return
*/
@Override
public int insertTcWlaqzcqy(TcWlaqzcqy tcWlaqzcqy)
{
tcWlaqzcqy.setCreateTime(DateUtils.getNowDate());
return tcWlaqzcqyMapper.insertTcWlaqzcqy(tcWlaqzcqy);
}
/**
*
*
* @param tcWlaqzcqy
* @return
*/
@Override
public int updateTcWlaqzcqy(TcWlaqzcqy tcWlaqzcqy)
{
tcWlaqzcqy.setUpdateTime(DateUtils.getNowDate());
return tcWlaqzcqyMapper.updateTcWlaqzcqy(tcWlaqzcqy);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWlaqzcqyByIds(Long[] ids)
{
return tcWlaqzcqyMapper.deleteTcWlaqzcqyByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWlaqzcqyById(Long id)
{
return tcWlaqzcqyMapper.deleteTcWlaqzcqyById(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.TcWldvMapper;
import com.ruoyi.tcZz.domain.TcWldv;
import com.ruoyi.tcZz.service.ITcWldvService;
/**
* VService
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWldvServiceImpl implements ITcWldvService
{
@Autowired
private TcWldvMapper tcWldvMapper;
/**
* V
*
* @param id V
* @return V
*/
@Override
public TcWldv selectTcWldvById(Long id)
{
return tcWldvMapper.selectTcWldvById(id);
}
/**
* V
*
* @param tcWldv V
* @return V
*/
@Override
public List<TcWldv> selectTcWldvList(TcWldv tcWldv)
{
return tcWldvMapper.selectTcWldvList(tcWldv);
}
/**
* V
*
* @param tcWldv V
* @return
*/
@Override
public int insertTcWldv(TcWldv tcWldv)
{
tcWldv.setCreateTime(DateUtils.getNowDate());
return tcWldvMapper.insertTcWldv(tcWldv);
}
/**
* V
*
* @param tcWldv V
* @return
*/
@Override
public int updateTcWldv(TcWldv tcWldv)
{
tcWldv.setUpdateTime(DateUtils.getNowDate());
return tcWldvMapper.updateTcWldv(tcWldv);
}
/**
* V
*
* @param ids V
* @return
*/
@Override
public int deleteTcWldvByIds(Long[] ids)
{
return tcWldvMapper.deleteTcWldvByIds(ids);
}
/**
* V
*
* @param id V
* @return
*/
@Override
public int deleteTcWldvById(Long id)
{
return tcWldvMapper.deleteTcWldvById(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.TcWlmqfzrMapper;
import com.ruoyi.tcZz.domain.TcWlmqfzr;
import com.ruoyi.tcZz.service.ITcWlmqfzrService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWlmqfzrServiceImpl implements ITcWlmqfzrService
{
@Autowired
private TcWlmqfzrMapper tcWlmqfzrMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWlmqfzr selectTcWlmqfzrById(Long id)
{
return tcWlmqfzrMapper.selectTcWlmqfzrById(id);
}
/**
*
*
* @param tcWlmqfzr
* @return
*/
@Override
public List<TcWlmqfzr> selectTcWlmqfzrList(TcWlmqfzr tcWlmqfzr)
{
return tcWlmqfzrMapper.selectTcWlmqfzrList(tcWlmqfzr);
}
/**
*
*
* @param tcWlmqfzr
* @return
*/
@Override
public int insertTcWlmqfzr(TcWlmqfzr tcWlmqfzr)
{
tcWlmqfzr.setCreateTime(DateUtils.getNowDate());
return tcWlmqfzrMapper.insertTcWlmqfzr(tcWlmqfzr);
}
/**
*
*
* @param tcWlmqfzr
* @return
*/
@Override
public int updateTcWlmqfzr(TcWlmqfzr tcWlmqfzr)
{
tcWlmqfzr.setUpdateTime(DateUtils.getNowDate());
return tcWlmqfzrMapper.updateTcWlmqfzr(tcWlmqfzr);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWlmqfzrByIds(Long[] ids)
{
return tcWlmqfzrMapper.deleteTcWlmqfzrByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWlmqfzrById(Long id)
{
return tcWlmqfzrMapper.deleteTcWlmqfzrById(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.TcWlwmzyzMapper;
import com.ruoyi.tcZz.domain.TcWlwmzyz;
import com.ruoyi.tcZz.service.ITcWlwmzyzService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWlwmzyzServiceImpl implements ITcWlwmzyzService
{
@Autowired
private TcWlwmzyzMapper tcWlwmzyzMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWlwmzyz selectTcWlwmzyzById(Long id)
{
return tcWlwmzyzMapper.selectTcWlwmzyzById(id);
}
/**
*
*
* @param tcWlwmzyz
* @return
*/
@Override
public List<TcWlwmzyz> selectTcWlwmzyzList(TcWlwmzyz tcWlwmzyz)
{
return tcWlwmzyzMapper.selectTcWlwmzyzList(tcWlwmzyz);
}
/**
*
*
* @param tcWlwmzyz
* @return
*/
@Override
public int insertTcWlwmzyz(TcWlwmzyz tcWlwmzyz)
{
tcWlwmzyz.setCreateTime(DateUtils.getNowDate());
return tcWlwmzyzMapper.insertTcWlwmzyz(tcWlwmzyz);
}
/**
*
*
* @param tcWlwmzyz
* @return
*/
@Override
public int updateTcWlwmzyz(TcWlwmzyz tcWlwmzyz)
{
tcWlwmzyz.setUpdateTime(DateUtils.getNowDate());
return tcWlwmzyzMapper.updateTcWlwmzyz(tcWlwmzyz);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWlwmzyzByIds(Long[] ids)
{
return tcWlwmzyzMapper.deleteTcWlwmzyzByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWlwmzyzById(Long id)
{
return tcWlwmzyzMapper.deleteTcWlwmzyzById(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.TcWpwzlyqkMapper;
import com.ruoyi.tcZz.domain.TcWpwzlyqk;
import com.ruoyi.tcZz.service.ITcWpwzlyqkService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWpwzlyqkServiceImpl implements ITcWpwzlyqkService
{
@Autowired
private TcWpwzlyqkMapper tcWpwzlyqkMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWpwzlyqk selectTcWpwzlyqkById(Long id)
{
return tcWpwzlyqkMapper.selectTcWpwzlyqkById(id);
}
/**
*
*
* @param tcWpwzlyqk
* @return
*/
@Override
public List<TcWpwzlyqk> selectTcWpwzlyqkList(TcWpwzlyqk tcWpwzlyqk)
{
return tcWpwzlyqkMapper.selectTcWpwzlyqkList(tcWpwzlyqk);
}
/**
*
*
* @param tcWpwzlyqk
* @return
*/
@Override
public int insertTcWpwzlyqk(TcWpwzlyqk tcWpwzlyqk)
{
tcWpwzlyqk.setCreateTime(DateUtils.getNowDate());
return tcWpwzlyqkMapper.insertTcWpwzlyqk(tcWpwzlyqk);
}
/**
*
*
* @param tcWpwzlyqk
* @return
*/
@Override
public int updateTcWpwzlyqk(TcWpwzlyqk tcWpwzlyqk)
{
tcWpwzlyqk.setUpdateTime(DateUtils.getNowDate());
return tcWpwzlyqkMapper.updateTcWpwzlyqk(tcWpwzlyqk);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWpwzlyqkByIds(Long[] ids)
{
return tcWpwzlyqkMapper.deleteTcWpwzlyqkByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWpwzlyqkById(Long id)
{
return tcWpwzlyqkMapper.deleteTcWpwzlyqkById(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.TcWpyMapper;
import com.ruoyi.tcZz.domain.TcWpy;
import com.ruoyi.tcZz.service.ITcWpyService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWpyServiceImpl implements ITcWpyService
{
@Autowired
private TcWpyMapper tcWpyMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWpy selectTcWpyById(Long id)
{
return tcWpyMapper.selectTcWpyById(id);
}
/**
*
*
* @param tcWpy
* @return
*/
@Override
public List<TcWpy> selectTcWpyList(TcWpy tcWpy)
{
return tcWpyMapper.selectTcWpyList(tcWpy);
}
/**
*
*
* @param tcWpy
* @return
*/
@Override
public int insertTcWpy(TcWpy tcWpy)
{
tcWpy.setCreateTime(DateUtils.getNowDate());
return tcWpyMapper.insertTcWpy(tcWpy);
}
/**
*
*
* @param tcWpy
* @return
*/
@Override
public int updateTcWpy(TcWpy tcWpy)
{
tcWpy.setUpdateTime(DateUtils.getNowDate());
return tcWpyMapper.updateTcWpy(tcWpy);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWpyByIds(Long[] ids)
{
return tcWpyMapper.deleteTcWpyByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWpyById(Long id)
{
return tcWpyMapper.deleteTcWpyById(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.TcWpyrwwclMapper;
import com.ruoyi.tcZz.domain.TcWpyrwwcl;
import com.ruoyi.tcZz.service.ITcWpyrwwclService;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
@Service
public class TcWpyrwwclServiceImpl implements ITcWpyrwwclService
{
@Autowired
private TcWpyrwwclMapper tcWpyrwwclMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TcWpyrwwcl selectTcWpyrwwclById(Long id)
{
return tcWpyrwwclMapper.selectTcWpyrwwclById(id);
}
/**
*
*
* @param tcWpyrwwcl
* @return
*/
@Override
public List<TcWpyrwwcl> selectTcWpyrwwclList(TcWpyrwwcl tcWpyrwwcl)
{
return tcWpyrwwclMapper.selectTcWpyrwwclList(tcWpyrwwcl);
}
/**
*
*
* @param tcWpyrwwcl
* @return
*/
@Override
public int insertTcWpyrwwcl(TcWpyrwwcl tcWpyrwwcl)
{
tcWpyrwwcl.setCreateTime(DateUtils.getNowDate());
return tcWpyrwwclMapper.insertTcWpyrwwcl(tcWpyrwwcl);
}
/**
*
*
* @param tcWpyrwwcl
* @return
*/
@Override
public int updateTcWpyrwwcl(TcWpyrwwcl tcWpyrwwcl)
{
tcWpyrwwcl.setUpdateTime(DateUtils.getNowDate());
return tcWpyrwwclMapper.updateTcWpyrwwcl(tcWpyrwwcl);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTcWpyrwwclByIds(Long[] ids)
{
return tcWpyrwwclMapper.deleteTcWpyrwwclByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTcWpyrwwclById(Long id)
{
return tcWpyrwwclMapper.deleteTcWpyrwwclById(id);
}
}

@ -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.TcAqgMapper">
<resultMap type="TcAqg" id="TcAqgResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="unit" column="unit" />
<result property="fzr" column="fzr" />
<result property="duty" column="duty" />
<result property="fzr1" column="fzr1" />
<result property="duty1" column="duty1" />
<result property="fzks" column="fzks" />
<result property="fzr3" column="fzr3" />
<result property="duty3" column="duty3" />
<result property="tel" column="tel" />
<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="selectTcAqgVo">
select id, area_id, isStatus, unit, fzr, duty, fzr1, duty1, fzks, fzr3, duty3, tel, create_by, create_time, update_by, update_time, remark from tc_aqg
</sql>
<select id="selectTcAqgList" parameterType="TcAqg" resultMap="TcAqgResult">
<include refid="selectTcAqgVo"/>
<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="unit != null and unit != ''"> and unit = #{unit}</if>
<if test="fzr != null and fzr != ''"> and fzr = #{fzr}</if>
<if test="duty != null and duty != ''"> and duty = #{duty}</if>
<if test="fzr1 != null and fzr1 != ''"> and fzr1 = #{fzr1}</if>
<if test="duty1 != null and duty1 != ''"> and duty1 = #{duty1}</if>
<if test="fzks != null and fzks != ''"> and fzks = #{fzks}</if>
<if test="fzr3 != null and fzr3 != ''"> and fzr3 = #{fzr3}</if>
<if test="duty3 != null and duty3 != ''"> and duty3 = #{duty3}</if>
<if test="tel != null and tel != ''"> and tel = #{tel}</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="selectTcAqgById" parameterType="Long" resultMap="TcAqgResult">
<include refid="selectTcAqgVo"/>
where id = #{id}
</select>
<insert id="insertTcAqg" parameterType="TcAqg" useGeneratedKeys="true" keyProperty="id">
insert into tc_aqg
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="unit != null">unit,</if>
<if test="fzr != null">fzr,</if>
<if test="duty != null">duty,</if>
<if test="fzr1 != null">fzr1,</if>
<if test="duty1 != null">duty1,</if>
<if test="fzks != null">fzks,</if>
<if test="fzr3 != null">fzr3,</if>
<if test="duty3 != null">duty3,</if>
<if test="tel != null">tel,</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="unit != null">#{unit},</if>
<if test="fzr != null">#{fzr},</if>
<if test="duty != null">#{duty},</if>
<if test="fzr1 != null">#{fzr1},</if>
<if test="duty1 != null">#{duty1},</if>
<if test="fzks != null">#{fzks},</if>
<if test="fzr3 != null">#{fzr3},</if>
<if test="duty3 != null">#{duty3},</if>
<if test="tel != null">#{tel},</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="updateTcAqg" parameterType="TcAqg">
update tc_aqg
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="unit != null">unit = #{unit},</if>
<if test="fzr != null">fzr = #{fzr},</if>
<if test="duty != null">duty = #{duty},</if>
<if test="fzr1 != null">fzr1 = #{fzr1},</if>
<if test="duty1 != null">duty1 = #{duty1},</if>
<if test="fzks != null">fzks = #{fzks},</if>
<if test="fzr3 != null">fzr3 = #{fzr3},</if>
<if test="duty3 != null">duty3 = #{duty3},</if>
<if test="tel != null">tel = #{tel},</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="deleteTcAqgById" parameterType="Long">
delete from tc_aqg where id = #{id}
</delete>
<delete id="deleteTcAqgByIds" parameterType="String">
delete from tc_aqg 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.TcBjsjwpMapper">
<resultMap type="TcBjsjwp" id="TcBjsjwpResult">
<result property="id" column="id" />
<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="selectTcBjsjwpVo">
select id, count1, count2, create_by, create_time, update_by, update_time, remark from tc_bjsjwp
</sql>
<select id="selectTcBjsjwpList" parameterType="TcBjsjwp" resultMap="TcBjsjwpResult">
<include refid="selectTcBjsjwpVo"/>
<where>
<if test="id != null "> and id = #{id}</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="selectTcBjsjwpById" parameterType="Long" resultMap="TcBjsjwpResult">
<include refid="selectTcBjsjwpVo"/>
where id = #{id}
</select>
<insert id="insertTcBjsjwp" parameterType="TcBjsjwp" useGeneratedKeys="true" keyProperty="id">
insert into tc_bjsjwp
<trim prefix="(" suffix=")" suffixOverrides=",">
<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="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="updateTcBjsjwp" parameterType="TcBjsjwp">
update tc_bjsjwp
<trim prefix="SET" suffixOverrides=",">
<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="deleteTcBjsjwpById" parameterType="Long">
delete from tc_bjsjwp where id = #{id}
</delete>
<delete id="deleteTcBjsjwpByIds" parameterType="String">
delete from tc_bjsjwp 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.TcFbMapper">
<resultMap type="TcFb" id="TcFbResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="type" column="type" />
<result property="title" column="title" />
<result property="source" column="source" />
<result property="dateTime" column="date_time" />
<result property="url" column="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="selectTcFbVo">
select id, area_id, isStatus, type, title, source, date_time, url, create_by, create_time, update_by, update_time, remark from tc_fb
</sql>
<select id="selectTcFbList" parameterType="TcFb" resultMap="TcFbResult">
<include refid="selectTcFbVo"/>
<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="type != null "> and type = #{type}</if>
<if test="title != null and title != ''"> and title = #{title}</if>
<if test="source != null and source != ''"> and source = #{source}</if>
<if test="dateTime != null "> and date_time = #{dateTime}</if>
<if test="url != null and url != ''"> and url = #{url}</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="selectTcFbById" parameterType="Long" resultMap="TcFbResult">
<include refid="selectTcFbVo"/>
where id = #{id}
</select>
<insert id="insertTcFb" parameterType="TcFb" useGeneratedKeys="true" keyProperty="id">
insert into tc_fb
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="type != null">type,</if>
<if test="title != null">title,</if>
<if test="source != null">source,</if>
<if test="dateTime != null">date_time,</if>
<if test="url != null">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="type != null">#{type},</if>
<if test="title != null">#{title},</if>
<if test="source != null">#{source},</if>
<if test="dateTime != null">#{dateTime},</if>
<if test="url != null">#{url},</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="updateTcFb" parameterType="TcFb">
update tc_fb
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="type != null">type = #{type},</if>
<if test="title != null">title = #{title},</if>
<if test="source != null">source = #{source},</if>
<if test="dateTime != null">date_time = #{dateTime},</if>
<if test="url != null">url = #{url},</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="deleteTcFbById" parameterType="Long">
delete from tc_fb where id = #{id}
</delete>
<delete id="deleteTcFbByIds" parameterType="String">
delete from tc_fb 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.TcWlaqzcqyMapper">
<resultMap type="TcWlaqzcqy" id="TcWlaqzcqyResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="zzUnit" column="zz_unit" />
<result property="linkMan" column="link_man" />
<result property="linkTel" column="link_tel" />
<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="selectTcWlaqzcqyVo">
select id, area_id, isStatus, zz_unit, link_man, link_tel, create_by, create_time, update_by, update_time, remark from tc_wlaqzcqy
</sql>
<select id="selectTcWlaqzcqyList" parameterType="TcWlaqzcqy" resultMap="TcWlaqzcqyResult">
<include refid="selectTcWlaqzcqyVo"/>
<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="zzUnit != null and zzUnit != ''"> and zz_unit = #{zzUnit}</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="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="selectTcWlaqzcqyById" parameterType="Long" resultMap="TcWlaqzcqyResult">
<include refid="selectTcWlaqzcqyVo"/>
where id = #{id}
</select>
<insert id="insertTcWlaqzcqy" parameterType="TcWlaqzcqy" useGeneratedKeys="true" keyProperty="id">
insert into tc_wlaqzcqy
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="zzUnit != null">zz_unit,</if>
<if test="linkMan != null">link_man,</if>
<if test="linkTel != null">link_tel,</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="zzUnit != null">#{zzUnit},</if>
<if test="linkMan != null">#{linkMan},</if>
<if test="linkTel != null">#{linkTel},</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="updateTcWlaqzcqy" parameterType="TcWlaqzcqy">
update tc_wlaqzcqy
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="zzUnit != null">zz_unit = #{zzUnit},</if>
<if test="linkMan != null">link_man = #{linkMan},</if>
<if test="linkTel != null">link_tel = #{linkTel},</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="deleteTcWlaqzcqyById" parameterType="Long">
delete from tc_wlaqzcqy where id = #{id}
</delete>
<delete id="deleteTcWlaqzcqyByIds" parameterType="String">
delete from tc_wlaqzcqy 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.TcWldvMapper">
<resultMap type="TcWldv" id="TcWldvResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="type" column="type" />
<result property="zhName" column="zh_name" />
<result property="property" column="property" />
<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="selectTcWldvVo">
select id, area_id, isStatus, type, zh_name, property, intro, fs_count, create_by, create_time, update_by, update_time, remark from tc_wldv
</sql>
<select id="selectTcWldvList" parameterType="TcWldv" resultMap="TcWldvResult">
<include refid="selectTcWldvVo"/>
<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="type != null and type != ''"> and type = #{type}</if>
<if test="zhName != null and zhName != ''"> and zh_name like concat('%', #{zhName}, '%')</if>
<if test="property != null and property != ''"> and property = #{property}</if>
<if test="intro != null and intro != ''"> and intro = #{intro}</if>
<if test="fsCount != null "> 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="selectTcWldvById" parameterType="Long" resultMap="TcWldvResult">
<include refid="selectTcWldvVo"/>
where id = #{id}
</select>
<insert id="insertTcWldv" parameterType="TcWldv" useGeneratedKeys="true" keyProperty="id">
insert into tc_wldv
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="type != null">type,</if>
<if test="zhName != null">zh_name,</if>
<if test="property != null">property,</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="type != null">#{type},</if>
<if test="zhName != null">#{zhName},</if>
<if test="property != null">#{property},</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="updateTcWldv" parameterType="TcWldv">
update tc_wldv
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="type != null">type = #{type},</if>
<if test="zhName != null">zh_name = #{zhName},</if>
<if test="property != null">property = #{property},</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="deleteTcWldvById" parameterType="Long">
delete from tc_wldv where id = #{id}
</delete>
<delete id="deleteTcWldvByIds" parameterType="String">
delete from tc_wldv where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,117 @@
<?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.TcWlmqfzrMapper">
<resultMap type="TcWlmqfzr" id="TcWlmqfzrResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="unit" column="unit" />
<result property="mqFzr" column="mq_fzr" />
<result property="duty" column="duty" />
<result property="linkTel" column="link_tel" />
<result property="faxNumber" column="fax_number" />
<result property="phoneNumber" column="phone_number" />
<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="selectTcWlmqfzrVo">
select id, area_id, isStatus, unit, mq_fzr, duty, link_tel, fax_number, phone_number, create_by, create_time, update_by, update_time, remark from tc_wlmqfzr
</sql>
<select id="selectTcWlmqfzrList" parameterType="TcWlmqfzr" resultMap="TcWlmqfzrResult">
<include refid="selectTcWlmqfzrVo"/>
<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="unit != null and unit != ''"> and unit = #{unit}</if>
<if test="mqFzr != null and mqFzr != ''"> and mq_fzr = #{mqFzr}</if>
<if test="duty != null and duty != ''"> and duty = #{duty}</if>
<if test="linkTel != null and linkTel != ''"> and link_tel = #{linkTel}</if>
<if test="faxNumber != null and faxNumber != ''"> and fax_number = #{faxNumber}</if>
<if test="phoneNumber != null and phoneNumber != ''"> and phone_number = #{phoneNumber}</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="selectTcWlmqfzrById" parameterType="Long" resultMap="TcWlmqfzrResult">
<include refid="selectTcWlmqfzrVo"/>
where id = #{id}
</select>
<insert id="insertTcWlmqfzr" parameterType="TcWlmqfzr" useGeneratedKeys="true" keyProperty="id">
insert into tc_wlmqfzr
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="unit != null">unit,</if>
<if test="mqFzr != null">mq_fzr,</if>
<if test="duty != null">duty,</if>
<if test="linkTel != null">link_tel,</if>
<if test="faxNumber != null">fax_number,</if>
<if test="phoneNumber != null">phone_number,</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="unit != null">#{unit},</if>
<if test="mqFzr != null">#{mqFzr},</if>
<if test="duty != null">#{duty},</if>
<if test="linkTel != null">#{linkTel},</if>
<if test="faxNumber != null">#{faxNumber},</if>
<if test="phoneNumber != null">#{phoneNumber},</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="updateTcWlmqfzr" parameterType="TcWlmqfzr">
update tc_wlmqfzr
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="unit != null">unit = #{unit},</if>
<if test="mqFzr != null">mq_fzr = #{mqFzr},</if>
<if test="duty != null">duty = #{duty},</if>
<if test="linkTel != null">link_tel = #{linkTel},</if>
<if test="faxNumber != null">fax_number = #{faxNumber},</if>
<if test="phoneNumber != null">phone_number = #{phoneNumber},</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="deleteTcWlmqfzrById" parameterType="Long">
delete from tc_wlmqfzr where id = #{id}
</delete>
<delete id="deleteTcWlmqfzrByIds" parameterType="String">
delete from tc_wlmqfzr where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,122 @@
<?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.TcWlwmzyzMapper">
<resultMap type="TcWlwmzyz" id="TcWlwmzyzResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="name" column="name" />
<result property="age" column="age" />
<result property="activityContent" column="activity_content" />
<result property="unit" column="unit" />
<result property="duty" column="duty" />
<result property="linkTel" column="link_tel" />
<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="selectTcWlwmzyzVo">
select id, area_id, isStatus, name, age, activity_content, unit, duty, link_tel, type, create_by, create_time, update_by, update_time, remark from tc_wlwmzyz
</sql>
<select id="selectTcWlwmzyzList" parameterType="TcWlwmzyz" resultMap="TcWlwmzyzResult">
<include refid="selectTcWlwmzyzVo"/>
<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="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="age != null "> and age = #{age}</if>
<if test="activityContent != null and activityContent != ''"> and activity_content = #{activityContent}</if>
<if test="unit != null and unit != ''"> and unit = #{unit}</if>
<if test="duty != null and duty != ''"> and duty = #{duty}</if>
<if test="linkTel != null and linkTel != ''"> and link_tel = #{linkTel}</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="selectTcWlwmzyzById" parameterType="Long" resultMap="TcWlwmzyzResult">
<include refid="selectTcWlwmzyzVo"/>
where id = #{id}
</select>
<insert id="insertTcWlwmzyz" parameterType="TcWlwmzyz" useGeneratedKeys="true" keyProperty="id">
insert into tc_wlwmzyz
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="name != null">name,</if>
<if test="age != null">age,</if>
<if test="activityContent != null">activity_content,</if>
<if test="unit != null">unit,</if>
<if test="duty != null">duty,</if>
<if test="linkTel != null">link_tel,</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="name != null">#{name},</if>
<if test="age != null">#{age},</if>
<if test="activityContent != null">#{activityContent},</if>
<if test="unit != null">#{unit},</if>
<if test="duty != null">#{duty},</if>
<if test="linkTel != null">#{linkTel},</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="updateTcWlwmzyz" parameterType="TcWlwmzyz">
update tc_wlwmzyz
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="name != null">name = #{name},</if>
<if test="age != null">age = #{age},</if>
<if test="activityContent != null">activity_content = #{activityContent},</if>
<if test="unit != null">unit = #{unit},</if>
<if test="duty != null">duty = #{duty},</if>
<if test="linkTel != null">link_tel = #{linkTel},</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="deleteTcWlwmzyzById" parameterType="Long">
delete from tc_wlwmzyz where id = #{id}
</delete>
<delete id="deleteTcWlwmzyzByIds" parameterType="String">
delete from tc_wlwmzyz 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.TcWpwzlyqkMapper">
<resultMap type="TcWpwzlyqk" id="TcWpwzlyqkResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="type" column="type" />
<result property="title" column="title" />
<result property="url" column="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="selectTcWpwzlyqkVo">
select id, area_id, isStatus, type, title, url, create_by, create_time, update_by, update_time, remark from tc_wpwzlyqk
</sql>
<select id="selectTcWpwzlyqkList" parameterType="TcWpwzlyqk" resultMap="TcWpwzlyqkResult">
<include refid="selectTcWpwzlyqkVo"/>
<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="type != null "> and type = #{type}</if>
<if test="title != null and title != ''"> and title = #{title}</if>
<if test="url != null and url != ''"> and url = #{url}</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="selectTcWpwzlyqkById" parameterType="Long" resultMap="TcWpwzlyqkResult">
<include refid="selectTcWpwzlyqkVo"/>
where id = #{id}
</select>
<insert id="insertTcWpwzlyqk" parameterType="TcWpwzlyqk" useGeneratedKeys="true" keyProperty="id">
insert into tc_wpwzlyqk
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="type != null">type,</if>
<if test="title != null">title,</if>
<if test="url != null">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="type != null">#{type},</if>
<if test="title != null">#{title},</if>
<if test="url != null">#{url},</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="updateTcWpwzlyqk" parameterType="TcWpwzlyqk">
update tc_wpwzlyqk
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="type != null">type = #{type},</if>
<if test="title != null">title = #{title},</if>
<if test="url != null">url = #{url},</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="deleteTcWpwzlyqkById" parameterType="Long">
delete from tc_wpwzlyqk where id = #{id}
</delete>
<delete id="deleteTcWpwzlyqkByIds" parameterType="String">
delete from tc_wpwzlyqk 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.TcWpyMapper">
<resultMap type="TcWpy" id="TcWpyResult">
<result property="id" column="id" />
<result property="areaId" column="area_id" />
<result property="isStatus" column="isStatus" />
<result property="name" column="name" />
<result property="sex" column="sex" />
<result property="age" column="age" />
<result property="nationality" column="nationality" />
<result property="zzmm" column="zzmm" />
<result property="unit" column="unit" />
<result property="phoneNumber" column="phone_number" />
<result property="vxNumber" column="vx_number" />
<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="selectTcWpyVo">
select id, area_id, isStatus, name, sex, age, nationality, zzmm, unit, phone_number, vx_number, type, create_by, create_time, update_by, update_time, remark from tc_wpy
</sql>
<select id="selectTcWpyList" parameterType="TcWpy" resultMap="TcWpyResult">
<include refid="selectTcWpyVo"/>
<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="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="sex != null and sex != ''"> and sex = #{sex}</if>
<if test="age != null "> and age = #{age}</if>
<if test="nationality != null and nationality != ''"> and nationality = #{nationality}</if>
<if test="zzmm != null and zzmm != ''"> and zzmm = #{zzmm}</if>
<if test="unit != null and unit != ''"> and unit = #{unit}</if>
<if test="phoneNumber != null "> and phone_number = #{phoneNumber}</if>
<if test="vxNumber != null "> and vx_number = #{vxNumber}</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="selectTcWpyById" parameterType="Long" resultMap="TcWpyResult">
<include refid="selectTcWpyVo"/>
where id = #{id}
</select>
<insert id="insertTcWpy" parameterType="TcWpy" useGeneratedKeys="true" keyProperty="id">
insert into tc_wpy
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="areaId != null">area_id,</if>
<if test="isStatus != null">isStatus,</if>
<if test="name != null">name,</if>
<if test="sex != null">sex,</if>
<if test="age != null">age,</if>
<if test="nationality != null">nationality,</if>
<if test="zzmm != null">zzmm,</if>
<if test="unit != null">unit,</if>
<if test="phoneNumber != null">phone_number,</if>
<if test="vxNumber != null">vx_number,</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="name != null">#{name},</if>
<if test="sex != null">#{sex},</if>
<if test="age != null">#{age},</if>
<if test="nationality != null">#{nationality},</if>
<if test="zzmm != null">#{zzmm},</if>
<if test="unit != null">#{unit},</if>
<if test="phoneNumber != null">#{phoneNumber},</if>
<if test="vxNumber != null">#{vxNumber},</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="updateTcWpy" parameterType="TcWpy">
update tc_wpy
<trim prefix="SET" suffixOverrides=",">
<if test="areaId != null">area_id = #{areaId},</if>
<if test="isStatus != null">isStatus = #{isStatus},</if>
<if test="name != null">name = #{name},</if>
<if test="sex != null">sex = #{sex},</if>
<if test="age != null">age = #{age},</if>
<if test="nationality != null">nationality = #{nationality},</if>
<if test="zzmm != null">zzmm = #{zzmm},</if>
<if test="unit != null">unit = #{unit},</if>
<if test="phoneNumber != null">phone_number = #{phoneNumber},</if>
<if test="vxNumber != null">vx_number = #{vxNumber},</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="deleteTcWpyById" parameterType="Long">
delete from tc_wpy where id = #{id}
</delete>
<delete id="deleteTcWpyByIds" parameterType="String">
delete from tc_wpy 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.TcWpyrwwclMapper">
<resultMap type="TcWpyrwwcl" id="TcWpyrwwclResult">
<result property="id" column="id" />
<result property="unit" column="unit" />
<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="selectTcWpyrwwclVo">
select id, unit, count, create_by, create_time, update_by, update_time, remark from tc_wpyrwwcl
</sql>
<select id="selectTcWpyrwwclList" parameterType="TcWpyrwwcl" resultMap="TcWpyrwwclResult">
<include refid="selectTcWpyrwwclVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="unit != null and unit != ''"> and unit = #{unit}</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="selectTcWpyrwwclById" parameterType="Long" resultMap="TcWpyrwwclResult">
<include refid="selectTcWpyrwwclVo"/>
where id = #{id}
</select>
<insert id="insertTcWpyrwwcl" parameterType="TcWpyrwwcl" useGeneratedKeys="true" keyProperty="id">
insert into tc_wpyrwwcl
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="unit != null">unit,</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="unit != null">#{unit},</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="updateTcWpyrwwcl" parameterType="TcWpyrwwcl">
update tc_wpyrwwcl
<trim prefix="SET" suffixOverrides=",">
<if test="unit != null">unit = #{unit},</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="deleteTcWpyrwwclById" parameterType="Long">
delete from tc_wpyrwwcl where id = #{id}
</delete>
<delete id="deleteTcWpyrwwclByIds" parameterType="String">
delete from tc_wpyrwwcl where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>
Loading…
Cancel
Save