Package com.jpoweredcart.admin.form.report

Examples of com.jpoweredcart.admin.form.report.CustomerCreditRpt


public class CustomerCreditRptRowMapper implements RowMapper<CustomerCreditRpt> {

  @Override
  public CustomerCreditRpt mapRow(ResultSet rs, int rowNum) throws SQLException {
   
    CustomerCreditRpt credit = new CustomerCreditRpt();
   
    credit.setCustomerId(rs.getInt("customer_id"));
    String customerName = rs.getString("firstname")+" "+
        rs.getString("lastname");
    credit.setCustomerName(customerName);
    credit.setEmail(rs.getString("email"));
    credit.setCustomerGroup(rs.getString("customer_group"));
    credit.setStatus(rs.getShort("status"));
   
    credit.setTotal(rs.getBigDecimal("total"));
   
    return credit;
  }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.admin.form.report.CustomerCreditRpt

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.