Result1.java [src/java/m/wqm/pestlosspot] Revision: 269d539aa7b88ab8db5c8f1f6ac26a0688dd3b22  Date: Thu Aug 06 12:57:18 MDT 2015
package m.wqm.pestlosspot;

/**
 *
 * @author Kontham Srinivas Reddy
 * @ Update Rumpal Sidhu
 */
public class Result1 {

    int operation_id;
    int AoAId;
    String op_pest_id;
    String app_rate;
    String app_area;
    String app_method;
    String ai_name = "";
    Double ai_ph = 0.0;
    Double ai_sol = 0.0;
    Double ai_koc = 0.0;
    Double ai_hl = 0.0;
    Double ai_fishtox = 0.0;
    String ai_fishtoxtype = "";
    Double ai_humtox = 0.0;
    String ai_humtoxtype = "";
    String ai_plp;
    String ai_psrp;
    String ai_parp;

    public Result1(int AoAId, int operation_id, String op_pest_id, 
            String app_rate, String ai_name, Double ai_ph, 
            Double ai_hl, Double ai_koc, Double ai_sol, Double humtox, 
            String humtoxtype, Double fishtox, String fishtoxtype, 
            String ai_plp, String ai_psrp, String ai_parp, 
            String op_app_area, String op_app_method) {
        this.AoAId = AoAId;
        this.operation_id = operation_id;
        this.op_pest_id = op_pest_id;
        this.app_rate = app_rate;
        this.ai_name = ai_name;
        this.ai_ph = ai_ph;
        this.ai_hl = ai_hl;
        this.ai_koc = ai_koc;
        this.ai_sol = ai_sol;
        this.ai_humtox = humtox;
        this.ai_humtoxtype = humtoxtype;
        this.ai_fishtox = fishtox;
        this.ai_fishtoxtype = fishtoxtype;
        this.ai_plp = ai_plp;
        this.ai_psrp = ai_psrp;
        this.ai_parp = ai_parp;
        this.app_area = op_app_area;
        this.app_method = op_app_method;
    }
}