package com.ruoyi.tms.service;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsApBillItem;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 应收账单明细Service接口
|
*
|
* @author ruoyi
|
* @date 2026-01-12
|
*/
|
public interface ITmsApBillItemService extends IService<TmsApBillItem>
|
{
|
/**
|
* 查询应收账单明细
|
*
|
* @param id 应收账单明细ID
|
* @return 应收账单明细
|
*/
|
public TmsApBillItem selectTmsApBillItemById(Integer id);
|
|
/**
|
* 查询应收账单明细 记录数
|
*
|
* @param tmsApBillItem 应收账单明细
|
* @return 应收账单明细集合
|
*/
|
public int selectTmsApBillItemCount(TmsApBillItem tmsApBillItem);
|
|
/**
|
* 查询应收账单明细列表
|
*
|
* @param tmsApBillItem 应收账单明细
|
* @return 应收账单明细集合
|
*/
|
public List<TmsApBillItem> selectTmsApBillItemList(TmsApBillItem tmsApBillItem);
|
|
/**
|
* 查询应收账单明细列表 异步 导出
|
*
|
* @param tmsApBillItem 应收账单明细
|
* @param exportKey 导出功能的唯一标识
|
* @return 应收账单明细集合
|
*/
|
public void export(TmsApBillItem tmsApBillItem, String exportKey) ;
|
|
|
/**
|
* 新增应收账单明细
|
*
|
* @param tmsApBillItem 应收账单明细
|
* @return 结果
|
*/
|
public int insertTmsApBillItem(TmsApBillItem tmsApBillItem);
|
|
/**
|
* 新增应收账单明细[批量]
|
*
|
* @param tmsApBillItems 应收账单明细
|
* @return 结果
|
*/
|
public int insertTmsApBillItemBatch(List<TmsApBillItem> tmsApBillItems);
|
|
/**
|
* 修改应收账单明细
|
*
|
* @param tmsApBillItem 应收账单明细
|
* @return 结果
|
*/
|
public int updateTmsApBillItem(TmsApBillItem tmsApBillItem);
|
|
/**
|
* 修改应收账单明细[批量]
|
*
|
* @param tmsApBillItems 应收账单明细
|
* @return 结果
|
*/
|
public int updateTmsApBillItemBatch(List<TmsApBillItem> tmsApBillItems);
|
/**
|
* 批量删除应收账单明细
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillItemByIds(String ids);
|
|
/**
|
* 批量删除应收账单明细
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillItemByIds(Integer[] ids);
|
|
/**
|
* 删除应收账单明细信息
|
*
|
* @param id 应收账单明细ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillItemById(Integer id);
|
}
|