Package com.dianping.cosmos.hive.client.bo

Examples of com.dianping.cosmos.hive.client.bo.QueryHistoryBo


  public List<QueryHistoryBo> getQueryHistory(String username) {
    List<QueryHistoryBo> qhbs  = new ArrayList<QueryHistoryBo>();
   
    List<QueryHistory> qhs = queryHistoryService.selectQueryHistoryByUsername(username);
    for (QueryHistory qh : qhs) {
      QueryHistoryBo o = new QueryHistoryBo();
      o.setUsername(qh.getUsername());
      o.setAddtime(qh.getAddtime());
      o.setHql(qh.getHql());
      o.setFilename(qh.getFilename());
     
      qhbs.add(o);
    }
    return qhbs;
  }
View Full Code Here

TOP

Related Classes of com.dianping.cosmos.hive.client.bo.QueryHistoryBo

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.