package com.ruoyi.cwgl.service;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.InvoiceManageLog;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 发票管理日志Service接口
|
*
|
* @author ruoyi
|
* @date 2026-01-05
|
*/
|
public interface IInvoiceManageLogService extends IService<InvoiceManageLog>
|
{
|
/**
|
* 查询发票管理日志
|
*
|
* @param id 发票管理日志ID
|
* @return 发票管理日志
|
*/
|
public InvoiceManageLog selectInvoiceManageLogById(Integer id);
|
|
/**
|
* 查询发票管理日志 记录数
|
*
|
* @param invoiceManageLog 发票管理日志
|
* @return 发票管理日志集合
|
*/
|
public int selectInvoiceManageLogCount(InvoiceManageLog invoiceManageLog);
|
|
/**
|
* 查询发票管理日志列表
|
*
|
* @param invoiceManageLog 发票管理日志
|
* @return 发票管理日志集合
|
*/
|
public List<InvoiceManageLog> selectInvoiceManageLogList(InvoiceManageLog invoiceManageLog);
|
|
/**
|
* 查询发票管理日志列表 异步 导出
|
*
|
* @param invoiceManageLog 发票管理日志
|
* @param exportKey 导出功能的唯一标识
|
* @return 发票管理日志集合
|
*/
|
public void export(InvoiceManageLog invoiceManageLog, String exportKey) ;
|
|
|
/**
|
* 新增发票管理日志
|
*
|
* @param invoiceManageLog 发票管理日志
|
* @return 结果
|
*/
|
public int insertInvoiceManageLog(InvoiceManageLog invoiceManageLog);
|
|
/**
|
* 新增发票管理日志[批量]
|
*
|
* @param invoiceManageLogs 发票管理日志
|
* @return 结果
|
*/
|
public int insertInvoiceManageLogBatch(List<InvoiceManageLog> invoiceManageLogs);
|
|
/**
|
* 修改发票管理日志
|
*
|
* @param invoiceManageLog 发票管理日志
|
* @return 结果
|
*/
|
public int updateInvoiceManageLog(InvoiceManageLog invoiceManageLog);
|
|
/**
|
* 修改发票管理日志[批量]
|
*
|
* @param invoiceManageLogs 发票管理日志
|
* @return 结果
|
*/
|
public int updateInvoiceManageLogBatch(List<InvoiceManageLog> invoiceManageLogs);
|
/**
|
* 批量删除发票管理日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteInvoiceManageLogByIds(String ids);
|
|
/**
|
* 批量删除发票管理日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteInvoiceManageLogByIds(Integer[] ids);
|
|
/**
|
* 删除发票管理日志信息
|
*
|
* @param id 发票管理日志ID
|
* @return 结果
|
*/
|
public int deleteInvoiceManageLogById(Integer id);
|
}
|