TaxRefundDetailsMapper.java 709 B

1234567891011121314151617181920212223242526
  1. package com.fjhx.account.mapper.tax;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.fjhx.account.entity.tax.po.TaxRefundDetails;
  5. import com.fjhx.account.entity.tax.vo.TaxRefundDetailsVo;
  6. import com.ruoyi.common.utils.wrapper.IWrapper;
  7. import org.apache.ibatis.annotations.Param;
  8. /**
  9. * <p>
  10. * 退税明细表 Mapper 接口
  11. * </p>
  12. *
  13. * @author
  14. * @since 2023-06-30
  15. */
  16. public interface TaxRefundDetailsMapper extends BaseMapper<TaxRefundDetails> {
  17. /**
  18. * 退税明细表分页
  19. */
  20. Page<TaxRefundDetailsVo> getPage(@Param("page") Page<Object> page, @Param("ew") IWrapper<TaxRefundDetails> wrapper);
  21. }