Package cn.org.rapid_framework.util

Examples of cn.org.rapid_framework.util.MapAndObject$FastPropertyUtils


    otherFilters.put("pageSize", page.getPageSize());
    otherFilters.put("lastRows", page.getFirstResult() + page.getPageSize());
    otherFilters.put("sortColumns", pageRequest.getSortColumns());
   
    //混合两个filters为一个filters,MapAndObject.get()方法将在两个对象取值,Map如果取值为null,则再在Bean中取值
    Map parameterObject = new MapAndObject(otherFilters,pageRequest);
    List list = sqlMapClientTemplate.queryForList(statementName, parameterObject,page.getFirstResult(),page.getPageSize());
    page.setResult(list);
    return page;
  }
View Full Code Here

TOP

Related Classes of cn.org.rapid_framework.util.MapAndObject$FastPropertyUtils

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.