Interface IDtoTimedMaterialProduction

All Known Implementing Classes:
DtoTimedMaterialProduction

public interface IDtoTimedMaterialProduction
When is how much of which material produced
  • Method Summary

    Modifier and Type
    Method
    Description
    The material is produced linearly ending at this time.
    Name of the material that is produced
    Amount of material that is produced
    The material is produced linearly starting at this time.
    void
    setEnd(Long end)
    The material is produced linearly ending at this time.
    void
    setMaterial(String material)
    Name of the material that is produced
    void
    setQuantity(Long quantity)
    Amount of material that is produced
    void
    setStart(Long start)
    The material is produced linearly starting at this time.
  • Method Details

    • getMaterial

      String getMaterial()
      Name of the material that is produced
    • setMaterial

      void setMaterial(String material)
      Name of the material that is produced
    • getQuantity

      Long getQuantity()
      Amount of material that is produced
    • setQuantity

      void setQuantity(Long quantity)
      Amount of material that is produced
    • getStart

      Long getStart()
      The material is produced linearly starting at this time.
    • setStart

      void setStart(Long start)
      The material is produced linearly starting at this time.
    • getEnd

      Long getEnd()
      The material is produced linearly ending at this time.
    • setEnd

      void setEnd(Long end)
      The material is produced linearly ending at this time.