Package com.jpoweredcart.common.entity.catalog

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


  public static class Desc implements RowMapper<AttributeGroupDesc>{
   
    @Override
    public AttributeGroupDesc mapRow(ResultSet rs, int rowNum)
        throws SQLException {
      AttributeGroupDesc desc = new AttributeGroupDesc();
      desc.setAttributeGroupId(rs.getInt("attribute_group_id"));
      desc.setLanguageId(rs.getInt("language_id"));
      desc.setLanguageName(rs.getString("language_name"));
      desc.setLanguageImage(rs.getString("language_image"));
      desc.setName(rs.getString("name"));
      return desc;
    }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.common.entity.catalog.AttributeGroupDesc

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.