| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.purchase.dto.InvoicePurchaseReportDto; |
| | | import com.ruoyi.purchase.pojo.InvoicePurchase; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * 发票信息Mapper接口 |
| | |
| | | * @date 2025-05-14 |
| | | */ |
| | | public interface InvoicePurchaseMapper extends BaseMapper<InvoicePurchase> { |
| | | |
| | | |
| | | IPage<InvoicePurchaseReportDto> selectPurchaseReport(IPage page, @Param("c") InvoicePurchaseReportDto invoicePurchaseReportDto); |
| | | |
| | | } |