Examples of InformationDesc


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

  public static class Desc implements RowMapper<InformationDesc>{

    @Override
    public InformationDesc mapRow(ResultSet rs, int rowNum)
        throws SQLException {
      InformationDesc desc = new InformationDesc();
      desc.setInformationId(rs.getInt("information_id"));
      desc.setLanguageId(rs.getInt("language_id"));
      desc.setLanguageName(rs.getString("language_name"));
      desc.setLanguageImage(rs.getString("language_image"));
      desc.setTitle(rs.getString("title"));
      desc.setDescription(rs.getString("description"));
      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.