All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ext_ext.mybatisext.plugin.paging.SqlSourceProxyBoundSql Maven / Gradle / Ivy

package com.ext_ext.mybatisext.plugin.paging;

import org.apache.ibatis.mapping.BoundSql;
import org.apache.ibatis.mapping.SqlSource;


/**
 * 扩展兼容分页
 * 

* @author 宋汝波 * @date 2014年11月24日 * @version 1.0.0 */ public class SqlSourceProxyBoundSql implements SqlSource { private final BoundSql boundSql; public SqlSourceProxyBoundSql( BoundSql boundSql ) { this.boundSql = boundSql; } @Override public BoundSql getBoundSql( Object parameterObject ) { return boundSql; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy