AfterSalesMapper.java 729 B

12345678910111213141516171819202122232425262728
  1. package com.fjhx.sale.mapper.after;
  2. import com.fjhx.sale.entity.after.po.AfterSales;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  5. import com.fjhx.sale.entity.after.vo.AfterSalesVo;
  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 2024-04-07
  15. */
  16. public interface AfterSalesMapper extends BaseMapper<AfterSales> {
  17. /**
  18. * 售后管理分页
  19. */
  20. Page<AfterSalesVo> getPage(@Param("page") Page<Object> page, @Param("ew") IWrapper<AfterSales> wrapper);
  21. AfterSalesVo detail(@Param("ew") IWrapper<Object> wrapper);
  22. }