package com.ruoyi.cwgl.service;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.EstimatedReceivableLog;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 预估应收管理日志Service接口
|
*
|
* @author ruoyi
|
* @date 2025-08-13
|
*/
|
public interface IEstimatedReceivableLogService extends IService<EstimatedReceivableLog>
|
{
|
/**
|
* 查询预估应收管理日志
|
*
|
* @param id 预估应收管理日志ID
|
* @return 预估应收管理日志
|
*/
|
public EstimatedReceivableLog selectEstimatedReceivableLogById(Integer id);
|
|
/**
|
* 查询预估应收管理日志 记录数
|
*
|
* @param estimatedReceivableLog 预估应收管理日志
|
* @return 预估应收管理日志集合
|
*/
|
public int selectEstimatedReceivableLogCount(EstimatedReceivableLog estimatedReceivableLog);
|
|
/**
|
* 查询预估应收管理日志列表
|
*
|
* @param estimatedReceivableLog 预估应收管理日志
|
* @return 预估应收管理日志集合
|
*/
|
public List<EstimatedReceivableLog> selectEstimatedReceivableLogList(EstimatedReceivableLog estimatedReceivableLog);
|
|
/**
|
* 查询预估应收管理日志列表 异步 导出
|
*
|
* @param estimatedReceivableLog 预估应收管理日志
|
* @param exportKey 导出功能的唯一标识
|
* @return 预估应收管理日志集合
|
*/
|
public void export(EstimatedReceivableLog estimatedReceivableLog, String exportKey) ;
|
|
|
/**
|
* 新增预估应收管理日志
|
*
|
* @param estimatedReceivableLog 预估应收管理日志
|
* @return 结果
|
*/
|
public int insertEstimatedReceivableLog(EstimatedReceivableLog estimatedReceivableLog);
|
|
/**
|
* 新增预估应收管理日志[批量]
|
*
|
* @param estimatedReceivableLogs 预估应收管理日志
|
* @return 结果
|
*/
|
public int insertEstimatedReceivableLogBatch(List<EstimatedReceivableLog> estimatedReceivableLogs);
|
|
/**
|
* 修改预估应收管理日志
|
*
|
* @param estimatedReceivableLog 预估应收管理日志
|
* @return 结果
|
*/
|
public int updateEstimatedReceivableLog(EstimatedReceivableLog estimatedReceivableLog);
|
|
/**
|
* 修改预估应收管理日志[批量]
|
*
|
* @param estimatedReceivableLogs 预估应收管理日志
|
* @return 结果
|
*/
|
public int updateEstimatedReceivableLogBatch(List<EstimatedReceivableLog> estimatedReceivableLogs);
|
/**
|
* 批量删除预估应收管理日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableLogByIds(String ids);
|
|
/**
|
* 批量删除预估应收管理日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableLogByIds(Integer[] ids);
|
|
/**
|
* 删除预估应收管理日志信息
|
*
|
* @param id 预估应收管理日志ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableLogById(Integer id);
|
|
void insertEstimatedReceivableLog(String operation, Integer id,String userName);
|
}
|