package com.ruoyi.tms.service;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsApBill;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 应付账单Service接口
|
*
|
* @author ruoyi
|
* @date 2026-01-12
|
*/
|
public interface ITmsApBillService extends IService<TmsApBill>
|
{
|
/**
|
* 查询应付账单
|
*
|
* @param id 应付账单ID
|
* @return 应付账单
|
*/
|
public TmsApBill selectTmsApBillById(Integer id);
|
|
/**
|
* 查询应付账单 记录数
|
*
|
* @param tmsApBill 应付账单
|
* @return 应付账单集合
|
*/
|
public int selectTmsApBillCount(TmsApBill tmsApBill);
|
|
/**
|
* 查询应付账单列表
|
*
|
* @param tmsApBill 应付账单
|
* @return 应付账单集合
|
*/
|
public List<TmsApBill> selectTmsApBillList(TmsApBill tmsApBill);
|
|
/**
|
* 查询应付账单列表 异步 导出
|
*
|
* @param tmsApBill 应付账单
|
* @param exportKey 导出功能的唯一标识
|
* @return 应付账单集合
|
*/
|
public void export(TmsApBill tmsApBill, String exportKey) ;
|
|
|
/**
|
* 新增应付账单
|
*
|
* @param tmsApBill 应付账单
|
* @return 结果
|
*/
|
public int insertTmsApBill(TmsApBill tmsApBill);
|
|
/**
|
* 新增应付账单[批量]
|
*
|
* @param tmsApBills 应付账单
|
* @return 结果
|
*/
|
public int insertTmsApBillBatch(List<TmsApBill> tmsApBills);
|
|
/**
|
* 修改应付账单
|
*
|
* @param tmsApBill 应付账单
|
* @return 结果
|
*/
|
public int updateTmsApBill(TmsApBill tmsApBill);
|
|
/**
|
* 修改应付账单[批量]
|
*
|
* @param tmsApBills 应付账单
|
* @return 结果
|
*/
|
public int updateTmsApBillBatch(List<TmsApBill> tmsApBills);
|
/**
|
* 批量删除应付账单
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillByIds(String ids);
|
|
/**
|
* 批量删除应付账单
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillByIds(Integer[] ids);
|
|
/**
|
* 删除应付账单信息
|
*
|
* @param id 应付账单ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillById(Integer id);
|
|
/**
|
* 手动推送应付账单到外部系统
|
*
|
* @param id 应付账单ID
|
* @return 结果
|
*/
|
public void manualPushToExternalSystem(Integer id);
|
|
/**
|
* 手动推送应付账单作废到外部系统
|
*
|
* @param id 应付账单ID
|
* @return 结果
|
*/
|
public void cancelPushToExternalSystem(Integer id);
|
|
/**
|
* 更新推送状态
|
*
|
* @param id 应付账单ID
|
* @param pushStatus 推送状态
|
* @return 结果
|
*/
|
public int updatePushStatus(Integer id, Integer pushStatus);
|
}
|