Package com.iqbon.jcms.domain.mapRow

Examples of com.iqbon.jcms.domain.mapRow.DocMapper


   */
  public Doc queryDocById(String docid) {
    String sql = "select * from bu_doc where docid = :docid";
    Map<String, Object> map = new HashMap<String, Object>();
    map.put("docid", docid);
    return namedParameterJdbcTemplate.queryForObject(sql, map, new DocMapper());
  }
View Full Code Here

TOP

Related Classes of com.iqbon.jcms.domain.mapRow.DocMapper

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.