| 12345678910111213141516171819202122232425262728 |
- package com.zsElectric.boot.business.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.zsElectric.boot.business.model.entity.ThirdPartyInfo;
- import com.zsElectric.boot.business.model.query.ThirdPartyInfoQuery;
- import com.zsElectric.boot.business.model.vo.ThirdPartyInfoVO;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * 第三方对接信息Mapper接口
- *
- * @author system
- * @since 2025-12-15
- */
- @Mapper
- public interface ThirdPartyInfoMapper extends BaseMapper<ThirdPartyInfo> {
- /**
- * 分页查询第三方对接信息
- *
- * @param page 分页对象
- * @param query 查询条件
- * @return 第三方对接信息分页列表
- */
- Page<ThirdPartyInfoVO> selectThirdPartyInfoPage(Page<ThirdPartyInfoVO> page, @Param("query") ThirdPartyInfoQuery query);
- }
|