package com.ruoyi.cwgl.service;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.PayableFeeManagementLog;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 应付费用管理操作日志Service接口
|
*
|
* @author ruoyi
|
* @date 2025-12-22
|
*/
|
public interface IPayableFeeManagementLogService extends IService<PayableFeeManagementLog>
|
{
|
/**
|
* 查询应付费用管理操作日志
|
*
|
* @param id 应付费用管理操作日志ID
|
* @return 应付费用管理操作日志
|
*/
|
public PayableFeeManagementLog selectPayableFeeManagementLogById(Integer id);
|
|
/**
|
* 查询应付费用管理操作日志 记录数
|
*
|
* @param payableFeeManagementLog 应付费用管理操作日志
|
* @return 应付费用管理操作日志集合
|
*/
|
public int selectPayableFeeManagementLogCount(PayableFeeManagementLog payableFeeManagementLog);
|
|
/**
|
* 查询应付费用管理操作日志列表
|
*
|
* @param payableFeeManagementLog 应付费用管理操作日志
|
* @return 应付费用管理操作日志集合
|
*/
|
public List<PayableFeeManagementLog> selectPayableFeeManagementLogList(PayableFeeManagementLog payableFeeManagementLog);
|
|
/**
|
* 查询应付费用管理操作日志列表 异步 导出
|
*
|
* @param payableFeeManagementLog 应付费用管理操作日志
|
* @param exportKey 导出功能的唯一标识
|
* @return 应付费用管理操作日志集合
|
*/
|
public void export(PayableFeeManagementLog payableFeeManagementLog, String exportKey) ;
|
|
|
/**
|
* 新增应付费用管理操作日志
|
*
|
* @param payableFeeManagementLog 应付费用管理操作日志
|
* @return 结果
|
*/
|
public int insertPayableFeeManagementLog(PayableFeeManagementLog payableFeeManagementLog);
|
|
/**
|
* 新增应付费用管理操作日志[批量]
|
*
|
* @param payableFeeManagementLogs 应付费用管理操作日志
|
* @return 结果
|
*/
|
public int insertPayableFeeManagementLogBatch(List<PayableFeeManagementLog> payableFeeManagementLogs);
|
|
/**
|
* 修改应付费用管理操作日志
|
*
|
* @param payableFeeManagementLog 应付费用管理操作日志
|
* @return 结果
|
*/
|
public int updatePayableFeeManagementLog(PayableFeeManagementLog payableFeeManagementLog);
|
|
/**
|
* 修改应付费用管理操作日志[批量]
|
*
|
* @param payableFeeManagementLogs 应付费用管理操作日志
|
* @return 结果
|
*/
|
public int updatePayableFeeManagementLogBatch(List<PayableFeeManagementLog> payableFeeManagementLogs);
|
/**
|
* 批量删除应付费用管理操作日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deletePayableFeeManagementLogByIds(String ids);
|
|
/**
|
* 批量删除应付费用管理操作日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deletePayableFeeManagementLogByIds(Integer[] ids);
|
|
/**
|
* 删除应付费用管理操作日志信息
|
*
|
* @param id 应付费用管理操作日志ID
|
* @return 结果
|
*/
|
public int deletePayableFeeManagementLogById(Integer id);
|
}
|