package com.ruoyi.cwgl.service;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.EstimatedReceivable;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 预估应收管理Service接口
|
*
|
* @author ruoyi
|
* @date 2025-08-07
|
*/
|
public interface IEstimatedReceivableService extends IService<EstimatedReceivable>
|
{
|
/**
|
* 查询预估应收管理
|
*
|
* @param id 预估应收管理ID
|
* @return 预估应收管理
|
*/
|
public EstimatedReceivable selectEstimatedReceivableById(Integer id);
|
|
/**
|
* 查询预估应收管理 记录数
|
*
|
* @param estimatedReceivable 预估应收管理
|
* @return 预估应收管理集合
|
*/
|
public int selectEstimatedReceivableCount(EstimatedReceivable estimatedReceivable);
|
|
/**
|
* 查询预估应收管理列表
|
*
|
* @param estimatedReceivable 预估应收管理
|
* @return 预估应收管理集合
|
*/
|
public List<EstimatedReceivable> selectEstimatedReceivableList(EstimatedReceivable estimatedReceivable);
|
|
/**
|
* 查询预估应收管理列表 异步 导出
|
*
|
* @param estimatedReceivable 预估应收管理
|
* @param exportKey 导出功能的唯一标识
|
* @return 预估应收管理集合
|
*/
|
public void export(EstimatedReceivable estimatedReceivable, String exportKey) ;
|
|
|
/**
|
* 新增预估应收管理
|
*
|
* @param estimatedReceivable 预估应收管理
|
* @return 结果
|
*/
|
public int insertEstimatedReceivable(EstimatedReceivable estimatedReceivable);
|
|
/**
|
* 新增预估应收管理[批量]
|
*
|
* @param estimatedReceivables 预估应收管理
|
* @return 结果
|
*/
|
public int insertEstimatedReceivableBatch(List<EstimatedReceivable> estimatedReceivables);
|
|
/**
|
* 修改预估应收管理
|
*
|
* @param estimatedReceivable 预估应收管理
|
* @return 结果
|
*/
|
public int updateEstimatedReceivable(EstimatedReceivable estimatedReceivable);
|
|
/**
|
* 修改预估应收管理[批量]
|
*
|
* @param estimatedReceivables 预估应收管理
|
* @return 结果
|
*/
|
public int updateEstimatedReceivableBatch(List<EstimatedReceivable> estimatedReceivables);
|
/**
|
* 批量删除预估应收管理
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableByIds(String ids);
|
|
/**
|
* 批量删除预估应收管理
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableByIds(Integer[] ids);
|
|
/**
|
* 删除预估应收管理信息
|
*
|
* @param id 预估应收管理ID
|
* @return 结果
|
*/
|
public int deleteEstimatedReceivableById(Integer id);
|
|
/**
|
* 确认
|
* @param id
|
* @return
|
*/
|
int confirm(Integer id);
|
|
/**
|
* 取消
|
* @param id
|
* @return
|
*/
|
int cancel(Integer id);
|
|
/**
|
* 作废
|
* @param id
|
* @return
|
*/
|
int invalid(Integer id);
|
}
|