| | |
| | | package com.ruoyi.purchase.service; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.purchase.dto.VatDto; |
| | | import com.ruoyi.purchase.dto.VatSummaryDto; |
| | | import com.ruoyi.purchase.vo.PurchaseReportVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface PurchaseReportService { |
| | | |
| | | IPage<PurchaseReportVo> list(Page page, String customerName); |
| | | |
| | | IPage<VatDto> listVat(Page page, String month); |
| | | IPage<VatDto> listVat(Page page, String month, String type); |
| | | |
| | | List<VatSummaryDto> vatSummary(String year); |
| | | |
| | | IPage<VatDto> listVatDetail(Page page, String month); |
| | | } |