package com.ruoyi.cwgl.service; import java.util.List; import com.ruoyi.cwgl.domain.AccountLog; import com.baomidou.mybatisplus.extension.service.IService; /** * 账款分析日志Service接口 * * @author ruoyi * @date 2026-03-20 */ public interface IAccountLogService extends IService { /** * 查询账款分析日志 * * @param id 账款分析日志ID * @return 账款分析日志 */ public AccountLog selectAccountLogById(Integer id); /** * 查询账款分析日志 记录数 * * @param accountLog 账款分析日志 * @return 账款分析日志集合 */ public int selectAccountLogCount(AccountLog accountLog); /** * 查询账款分析日志列表 * * @param accountLog 账款分析日志 * @return 账款分析日志集合 */ public List selectAccountLogList(AccountLog accountLog); /** * 查询账款分析日志列表 异步 导出 * * @param accountLog 账款分析日志 * @param exportKey 导出功能的唯一标识 * @return 账款分析日志集合 */ public void export(AccountLog accountLog, String exportKey) ; /** * 新增账款分析日志 * * @param accountLog 账款分析日志 * @return 结果 */ public int insertAccountLog(AccountLog accountLog); /** * 新增账款分析日志[批量] * * @param accountLogs 账款分析日志 * @return 结果 */ public int insertAccountLogBatch(List accountLogs); /** * 修改账款分析日志 * * @param accountLog 账款分析日志 * @return 结果 */ public int updateAccountLog(AccountLog accountLog); /** * 修改账款分析日志[批量] * * @param accountLogs 账款分析日志 * @return 结果 */ public int updateAccountLogBatch(List accountLogs); /** * 批量删除账款分析日志 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteAccountLogByIds(String ids); /** * 批量删除账款分析日志 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteAccountLogByIds(Integer[] ids); /** * 删除账款分析日志信息 * * @param id 账款分析日志ID * @return 结果 */ public int deleteAccountLogById(Integer id); }