You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tcZz-java/ruoyi-admin/src/main/java/com/ruoyi/tcZz/mapper/TcWlmqfzrMapper.java

62 lines
1.3 KiB

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);
}