package com.ruoyi.account.mapper.purchase; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.ruoyi.account.bean.dto.purchase.AccountPaymentApplicationDto; import com.ruoyi.account.bean.vo.purchase.AccountPaymentApplicationVo; import com.ruoyi.account.bean.vo.purchase.PurchaseInboundVo; import com.ruoyi.account.pojo.purchase.AccountPaymentApplication; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* 财务管理--付款申请 Mapper 接口 *

* * @author 芯导软件(江苏)有限公司 * @since 2026-05-19 03:44:22 */ @Mapper public interface AccountPaymentApplicationMapper extends BaseMapper { IPage listPageAccountPaymentApplication(Page page, @Param("req") AccountPaymentApplicationDto accountPaymentApplicationDto); List getInboundBatchesBySupplier(@Param("supplierId") Integer supplierId); //判断该出库记录是否有开票申请 boolean existsByStockInRecordId(@Param("stockInRecordIds") List stockInRecordIds); }