ThirdPartyInfoMapper.java 932 B

12345678910111213141516171819202122232425262728
  1. package com.zsElectric.boot.business.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.zsElectric.boot.business.model.entity.ThirdPartyInfo;
  5. import com.zsElectric.boot.business.model.query.ThirdPartyInfoQuery;
  6. import com.zsElectric.boot.business.model.vo.ThirdPartyInfoVO;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Param;
  9. /**
  10. * 第三方对接信息Mapper接口
  11. *
  12. * @author system
  13. * @since 2025-12-15
  14. */
  15. @Mapper
  16. public interface ThirdPartyInfoMapper extends BaseMapper<ThirdPartyInfo> {
  17. /**
  18. * 分页查询第三方对接信息
  19. *
  20. * @param page 分页对象
  21. * @param query 查询条件
  22. * @return 第三方对接信息分页列表
  23. */
  24. Page<ThirdPartyInfoVO> selectThirdPartyInfoPage(Page<ThirdPartyInfoVO> page, @Param("query") ThirdPartyInfoQuery query);
  25. }