70 lines
1.6 KiB
70 lines
1.6 KiB
package com.ruoyi.tcZz.mapper;
|
|
|
|
import java.util.List;
|
|
import com.ruoyi.tcZz.domain.TcYqxxltj;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* 舆情信息量统计明細Mapper接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2023-10-12
|
|
*/
|
|
public interface TcYqxxltjMapper
|
|
{
|
|
/**
|
|
* 查询舆情信息量统计明細
|
|
*
|
|
* @param id 舆情信息量统计明細主键
|
|
* @return 舆情信息量统计明細
|
|
*/
|
|
public TcYqxxltj selectTcYqxxltjById(Long id);
|
|
|
|
/**
|
|
* 查询舆情信息量统计明細列表
|
|
*
|
|
* @param tcYqxxltj 舆情信息量统计明細
|
|
* @return 舆情信息量统计明細集合
|
|
*/
|
|
public List<TcYqxxltj> selectTcYqxxltjList(TcYqxxltj tcYqxxltj);
|
|
|
|
/**
|
|
* 新增舆情信息量统计明細
|
|
*
|
|
* @param tcYqxxltj 舆情信息量统计明細
|
|
* @return 结果
|
|
*/
|
|
public int insertTcYqxxltj(TcYqxxltj tcYqxxltj);
|
|
|
|
/**
|
|
* 修改舆情信息量统计明細
|
|
*
|
|
* @param tcYqxxltj 舆情信息量统计明細
|
|
* @return 结果
|
|
*/
|
|
public int updateTcYqxxltj(TcYqxxltj tcYqxxltj);
|
|
|
|
/**
|
|
* 删除舆情信息量统计明細
|
|
*
|
|
* @param id 舆情信息量统计明細主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteTcYqxxltjById(Long id);
|
|
|
|
/**
|
|
* 批量删除舆情信息量统计明細
|
|
*
|
|
* @param ids 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteTcYqxxltjByIds(Long[] ids);
|
|
|
|
/**
|
|
* 批量启用禁用
|
|
*
|
|
*
|
|
*/
|
|
public void updateByisStatus(@Param("isStatus") Integer isStatus, @Param("ids") List<String> ids);
|
|
}
|