Examples of CategoryDesc


Examples of com.jpoweredcart.common.entity.catalog.CategoryDesc

  public static class Desc implements RowMapper<CategoryDesc>{

    @Override
    public CategoryDesc mapRow(ResultSet rs, int rowNum)
        throws SQLException {
      CategoryDesc desc = new CategoryDesc();
      desc.setCategoryId(rs.getInt("category_id"));
      desc.setLanguageId(rs.getInt("language_id"));
      desc.setLanguageName(rs.getString("language_name"));
      desc.setLanguageImage(rs.getString("language_image"));
      desc.setName(rs.getString("name"));
      desc.setDescription(rs.getString("description"));
      desc.setMetaDescription(rs.getString("meta_description"));
      desc.setMetaKeyword(rs.getString("meta_keyword"));
      return desc;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.