Package com.fins.gt.model

Examples of com.fins.gt.model.SortInfo


    pageInfoJS.put("totalRowNum", pageInfo.getTotalRowNum());
    return pageInfoJS;
  }
 
  public static SortInfo createSortInfo(JSONObject modelJS){
    SortInfo info=new SortInfo();

    info.setColumnId(modelJS.getString("columnId"));
    info.setFieldName(modelJS.getString("fieldName"));
    info.setSortOrder(modelJS.getString("sortOrder"));
   
    return info;
  }
View Full Code Here

TOP

Related Classes of com.fins.gt.model.SortInfo

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.