Operation.java [src/java/crlmod/nodes] Revision:   Date:
/*
 * $Id: 1.0+62 Operation.java a170e1637ffa 2021-12-20 od $
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API, and application suite.
 *
 * 2012-2024, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package crlmod.nodes;

import java.math.BigInteger;

/**
 *
 * @author User
 */
public class Operation {

  public BigInteger id;
  public String name;
  public String opGroup1;
  public String opGroup2;
  public String opGroup3;
  public String opGroup4;
  public String opGroup5;
  public String opNotes;
  public String wepsOpParamSet;
  public String weppOpParamSet;
  public BigInteger wepsOpID;
  public BigInteger weppOpID;
  public BigInteger cometOpID;
  public BigInteger wqmOpID;
  public BigInteger r2OpID;
  public Double stir;
  public Double resAdded;
  public Boolean begin_growth;
  public Boolean kill_crop;
  public Boolean add_residue;


  public Operation() {
  }


  public Operation(BigInteger opID) {
    this.id = opID;
  }


  public Operation(BigInteger opID, String name) {
    this.id = opID;
    this.name = name;
  }


  public BigInteger getOpID() {
    return id;
  }


  public String getOpName() {
    return name;
  }
}