package com.rzdata.web.mapper; import com.rzdata.web.domain.DownloadCount; import java.util.List; /** * 工具下载统计Mapper接口 * * @author 潘驰春 * @date 2024-08-31 */ public interface DownloadCountMapper { /** * 查询工具下载统计 * * @param id 工具下载统计主键 * @return 工具下载统计 */ public DownloadCount selectDownloadCountById(String id); /** * 查询工具下载统计列表 * * @param downloadCount 工具下载统计 * @return 工具下载统计集合 */ public List selectDownloadCountList(DownloadCount downloadCount); /** * 新增工具下载统计 * * @param downloadCount 工具下载统计 * @return 结果 */ public int insertDownloadCount(DownloadCount downloadCount); /** * 修改工具下载统计 * * @param downloadCount 工具下载统计 * @return 结果 */ public int updateDownloadCount(DownloadCount downloadCount); /** * 删除工具下载统计 * * @param id 工具下载统计主键 * @return 结果 */ public int deleteDownloadCountById(String id); /** * 批量删除工具下载统计 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteDownloadCountByIds(String[] ids); List userDownList(DownloadCount downloadCount); }