package com.ruoyi.tms.service;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.PayableAuditLog;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 应付账单审核日志Service接口
|
*
|
* @author ruoyi
|
* @date 2026-04-07
|
*/
|
public interface IPayableAuditLogService extends IService<PayableAuditLog>
|
{
|
/**
|
* 查询应付账单审核日志
|
*
|
* @param id 应付账单审核日志ID
|
* @return 应付账单审核日志
|
*/
|
public PayableAuditLog selectPayableAuditLogById(Integer id);
|
|
/**
|
* 查询应付账单审核日志 记录数
|
*
|
* @param payableAuditLog 应付账单审核日志
|
* @return 应付账单审核日志集合
|
*/
|
public int selectPayableAuditLogCount(PayableAuditLog payableAuditLog);
|
|
/**
|
* 查询应付账单审核日志列表
|
*
|
* @param payableAuditLog 应付账单审核日志
|
* @return 应付账单审核日志集合
|
*/
|
public List<PayableAuditLog> selectPayableAuditLogList(PayableAuditLog payableAuditLog);
|
|
/**
|
* 查询应付账单审核日志列表 异步 导出
|
*
|
* @param payableAuditLog 应付账单审核日志
|
* @param exportKey 导出功能的唯一标识
|
* @return 应付账单审核日志集合
|
*/
|
public void export(PayableAuditLog payableAuditLog, String exportKey) ;
|
|
|
/**
|
* 新增应付账单审核日志
|
*
|
* @param payableAuditLog 应付账单审核日志
|
* @return 结果
|
*/
|
public int insertPayableAuditLog(PayableAuditLog payableAuditLog);
|
|
/**
|
* 新增应付账单审核日志[批量]
|
*
|
* @param payableAuditLogs 应付账单审核日志
|
* @return 结果
|
*/
|
public int insertPayableAuditLogBatch(List<PayableAuditLog> payableAuditLogs);
|
|
/**
|
* 修改应付账单审核日志
|
*
|
* @param payableAuditLog 应付账单审核日志
|
* @return 结果
|
*/
|
public int updatePayableAuditLog(PayableAuditLog payableAuditLog);
|
|
/**
|
* 修改应付账单审核日志[批量]
|
*
|
* @param payableAuditLogs 应付账单审核日志
|
* @return 结果
|
*/
|
public int updatePayableAuditLogBatch(List<PayableAuditLog> payableAuditLogs);
|
/**
|
* 批量删除应付账单审核日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deletePayableAuditLogByIds(String ids);
|
|
/**
|
* 批量删除应付账单审核日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deletePayableAuditLogByIds(Integer[] ids);
|
|
/**
|
* 删除应付账单审核日志信息
|
*
|
* @param id 应付账单审核日志ID
|
* @return 结果
|
*/
|
public int deletePayableAuditLogById(Integer id);
|
}
|