Subversion Repository Public Repository

TransPort_Tracking

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.transtracking.dao.mapper;

import com.bestray.trastrack.domain.ClientCollection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.ResultSetExtractor;

/**
 *
 * @author user3
 */
public class ClientCollectionResultSetExtractor implements  ResultSetExtractor<Object>{

    public Object extractData(ResultSet rs) throws SQLException, DataAccessException {
              List <ClientCollection> collections = new ArrayList<ClientCollection>();
        while (rs.next()) {
            ClientCollection collect = new ClientCollection();
          
            collect.setId(rs.getLong("id"));
            //collect.setPayment_id(rs.getLong("payment_number"));
            collect.setClient_id(rs.getLong("client_id"));
            collect.setPayment_date(rs.getDate("payment_date"));
            collect.setCollection_type_id(rs.getLong("collection_type_id"));
            collect.setDiposited_at(rs.getString("diposited_at"));
            collect.setAmount(rs.getDouble("amount"));
            collect.setRecived_person_id(rs.getLong("recieve_person_id"));
            collect.setComment1(rs.getString("comment_1"));
            collect.setComment2(rs.getString("comment_2"));
            collections.add(collect);
        }
        return collections;
    }
    
}

Commits for TransPort_Tracking/TransPortTracking/src/main/java/com/bestray/transtracking/dao/mapper/ClientCollectionResultSetExtractor.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Sat 28 Jul, 2018 05:29:14 +0000