zss
2 天以前 b59406c5aff7272e74049e0addffdfa82c867882
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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<AccountStatement> {
 
    IPage<StatementAccountVo> listPageAccountStatement(Page page, @Param("req") StatementAccountDto statementAccountDto);
 
    IPage<VatDto> selectVatDtoPage(Page page, @Param("month") String month, @Param("type") String type);
 
    List<VatSummaryDto> selectVatSummary(@Param("year") String year);
 
    IPage<VatDto> listVatDetail(Page page, @Param("month") String month);
}