Interface IDtoMaterialConsumption
- All Known Implementing Classes:
DtoMaterialConsumption
public interface IDtoMaterialConsumption
Details about the material and the quantity required for the job.
-
Method Summary
Modifier and TypeMethodDescriptiongetEnd()The consumed material will be removed linearly from the stock, ending at this time.Name of the material that is required to run the jobAmount of material that is required to run the job.getStart()The consumed material will be removed linearly from the stock, starting at this time.voidThe consumed material will be removed linearly from the stock, ending at this time.voidsetMaterial(String material) Name of the material that is required to run the jobvoidsetQuantity(Long quantity) Amount of material that is required to run the job.voidThe consumed material will be removed linearly from the stock, starting at this time.
-
Method Details
-
getMaterial
String getMaterial()Name of the material that is required to run the job -
setMaterial
Name of the material that is required to run the job -
getQuantity
Long getQuantity()Amount of material that is required to run the job. -
setQuantity
Amount of material that is required to run the job. -
getStart
IDtoAbstractAllocationAnchor getStart()The consumed material will be removed linearly from the stock, starting at this time. -
setStart
The consumed material will be removed linearly from the stock, starting at this time. -
getEnd
IDtoAbstractAllocationAnchor getEnd()The consumed material will be removed linearly from the stock, ending at this time. -
setEnd
The consumed material will be removed linearly from the stock, ending at this time.
-