package com.ruoyi.tms.mapper;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsApBill;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 应付账单Mapper接口
|
*
|
* @author ruoyi
|
* @date 2026-01-12
|
*/
|
public interface TmsApBillMapper extends BaseMapper<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 应付账单
|
* @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 id 应付账单ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillById(Integer id);
|
|
/**
|
* 批量删除应付账单
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsApBillByIds(Integer[] ids);
|
}
|