Interface IDtoMaterialProduction
- All Known Implementing Classes:
DtoMaterialProduction
public interface IDtoMaterialProduction
Details about the material and the quantity produced by the job.
-
Method Summary
Modifier and TypeMethodDescriptiongetEnd()The generated material will be added to the stock linearly until this time.Name of the material that is produced by the jobAmount of material that is produced by the job.getStart()The generated material will be added to the stock linearly starting from this time.voidThe generated material will be added to the stock linearly until this time.voidsetMaterial(String material) Name of the material that is produced by the jobvoidsetQuantity(Long quantity) Amount of material that is produced by the job.voidThe generated material will be added to the stock linearly starting from this time.
-
Method Details
-
getMaterial
String getMaterial()Name of the material that is produced by the job -
setMaterial
Name of the material that is produced by the job -
getQuantity
Long getQuantity()Amount of material that is produced by the job. -
setQuantity
Amount of material that is produced by the job. -
getStart
IDtoAbstractAllocationAnchor getStart()The generated material will be added to the stock linearly starting from this time. Material in stock is available for consumption by other jobs. -
setStart
The generated material will be added to the stock linearly starting from this time. Material in stock is available for consumption by other jobs. -
getEnd
IDtoAbstractAllocationAnchor getEnd()The generated material will be added to the stock linearly until this time. Material in stock is available for consumption by other jobs. -
setEnd
The generated material will be added to the stock linearly until this time. Material in stock is available for consumption by other jobs.
-