Crop.java [src/java/crlmod/nodes] Revision:   Date:
/*
 * $Id: 1.0+62 Crop.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;

public class Crop {

  public BigInteger id;
  public String name;
  public Double defaultYield;
  public String yieldUnit;
  public String cropGroup1;
  public String cropGroup2;
  public String cropGroup3;
  public String cropGroup4;
  public String cropGroup5;
  public String cropNotes;
  public String wepsCropParamSet;
  public String weppCropParamSet;
  public BigInteger wepsCropID;
  public BigInteger weppCropID;
  public BigInteger cometCropID;
  public BigInteger wqmCropID;
  public BigInteger r2CropID;


  public Crop() {
  }


  public Crop(BigInteger cropID) {
    this.id = cropID;
  }


  public Crop(BigInteger cropID, String name) {
    this.id = cropID;
    this.name = name;
  }


  public BigInteger getCropID() {
    return id;
  }


  public String getOpName() {
    return name;
  }
}