package com.ruoyi.account.mapper; 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.StatementAccountDto; import com.ruoyi.account.bean.vo.StatementAccountVo; import com.ruoyi.account.pojo.AccountStatement; import com.ruoyi.purchase.dto.VatDto; import com.ruoyi.purchase.dto.VatSummaryDto; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface AccountStatementMapper extends BaseMapper { IPage listPageAccountStatement(Page page, @Param("req") StatementAccountDto statementAccountDto); IPage selectVatDtoPage(Page page, @Param("month") String month, @Param("type") String type); List selectVatSummary(@Param("year") String year); IPage listVatDetail(Page page, @Param("month") String month); }