| | |
| | | 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; |
| | | |
| | | /** |
| | | * <p> |
| | | * Mapper 接口 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @since 2026-05-19 09:42:47 |
| | | */ |
| | | 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); |
| | | 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); |
| | | } |