package com.ruoyi.cwgl.mapper;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.EstimatedReceivableBillLog;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 预估应收账单日志Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-08-13
|
*/
|
public interface EstimatedReceivableBillLogMapper extends BaseMapper<EstimatedReceivableBillLog>
|
{
|
/**
|
* 查询预估应收账单日志
|
*
|
* @param id 预估应收账单日志ID
|
* @return 预估应收账单日志
|
*/
|
public EstimatedReceivableBillLog selectEstimatedReceivableBillLogById(Integer id);
|
|
/**
|
* 查询预估应收账单日志 记录数
|
*
|
* @param estimatedReceivableBillLog 预估应收账单日志
|
* @return 预估应收账单日志集合
|
*/
|
public int selectEstimatedReceivableBillLogCount(EstimatedReceivableBillLog estimatedReceivableBillLog);
|
|
/**
|
* 查询预估应收账单日志列表
|
*
|
* @param estimatedReceivableBillLog 预估应收账单日志
|
* @return 预估应收账单日志集合
|
*/
|
public List<EstimatedReceivableBillLog> selectEstimatedReceivableBillLogList(EstimatedReceivableBillLog estimatedReceivableBillLog);
|
|
/**
|
* 新增预估应收账单日志
|
*
|
* @param estimatedReceivableBillLog 预估应收账单日志
|
* @return 结果
|
*/
|
public int insertEstimatedReceivableBillLog(EstimatedReceivableBillLog estimatedReceivableBillLog);
|
|
/**
|
* 新增预估应收账单日志[批量]
|
*
|
* @param estimatedReceivableBillLogs 预估应收账单日志
|
* @return 结果
|
*/
|
public int insertEstimatedReceivableBillLogBatch(List<EstimatedReceivableBillLog> estimatedReceivableBillLogs);
|
|
/**
|
* 修改预估应收账单日志
|
*
|
* @param estimatedReceivableBillLog 预估应收账单日志
|
* @return 结果
|
*/
|
public int updateEstimatedReceivableBillLog(EstimatedReceivableBillLog estimatedReceivableBillLog);
|
|
/**
|
* 修改预估应收账单日志[批量]
|
*
|
* @param estimatedReceivableBillLogs 预估应收账单日志
|
* @return 结果
|
*/
|
public int updateEstimatedReceivableBillLogBatch(List<EstimatedReceivableBillLog> estimatedReceivableBillLogs);
|
|
/**
|
* 删除预估应收账单日志
|
*
|
* @param id 预估应收账单日志ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableBillLogById(Integer id);
|
|
/**
|
* 批量删除预估应收账单日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableBillLogByIds(Integer[] ids);
|
}
|