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 { /** * 分页查询第三方对接信息 * * @param page 分页对象 * @param query 查询条件 * @return 第三方对接信息分页列表 */ Page selectThirdPartyInfoPage(Page page, @Param("query") ThirdPartyInfoQuery query); }