package com.ruoyi.cwgl.mapper;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.AccountLog;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 账款分析日志Mapper接口
|
*
|
* @author ruoyi
|
* @date 2026-03-20
|
*/
|
public interface AccountLogMapper extends BaseMapper<AccountLog>
|
{
|
/**
|
* 查询账款分析日志
|
*
|
* @param id 账款分析日志ID
|
* @return 账款分析日志
|
*/
|
public AccountLog selectAccountLogById(Integer id);
|
|
/**
|
* 查询账款分析日志 记录数
|
*
|
* @param accountLog 账款分析日志
|
* @return 账款分析日志集合
|
*/
|
public int selectAccountLogCount(AccountLog accountLog);
|
|
/**
|
* 查询账款分析日志列表
|
*
|
* @param accountLog 账款分析日志
|
* @return 账款分析日志集合
|
*/
|
public List<AccountLog> selectAccountLogList(AccountLog accountLog);
|
|
/**
|
* 新增账款分析日志
|
*
|
* @param accountLog 账款分析日志
|
* @return 结果
|
*/
|
public int insertAccountLog(AccountLog accountLog);
|
|
/**
|
* 新增账款分析日志[批量]
|
*
|
* @param accountLogs 账款分析日志
|
* @return 结果
|
*/
|
public int insertAccountLogBatch(List<AccountLog> accountLogs);
|
|
/**
|
* 修改账款分析日志
|
*
|
* @param accountLog 账款分析日志
|
* @return 结果
|
*/
|
public int updateAccountLog(AccountLog accountLog);
|
|
/**
|
* 修改账款分析日志[批量]
|
*
|
* @param accountLogs 账款分析日志
|
* @return 结果
|
*/
|
public int updateAccountLogBatch(List<AccountLog> accountLogs);
|
|
/**
|
* 删除账款分析日志
|
*
|
* @param id 账款分析日志ID
|
* @return 结果
|
*/
|
public int deleteAccountLogById(Integer id);
|
|
/**
|
* 批量删除账款分析日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteAccountLogByIds(Integer[] ids);
|
}
|