Class ProductionStatistics
Production statistics for some period of time.
[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class ProductionStatistics
- Inheritance
-
ProductionStatistics
- Inherited Members
Constructors
ProductionStatistics()
public ProductionStatistics()
Properties
UnitsDefectiveCount
Gets or sets the number of unique units for which defects were added during the given period.
[DataMember]
public int UnitsDefectiveCount { get; set; }
Property Value
UnitsInspectedCount
Gets or sets the number of unique units that were scanned anywhere on the line during the given period.
[DataMember]
public int UnitsInspectedCount { get; set; }
Property Value
UnitsProducedCount
Gets or sets the number of unique units transitioned into the "produced" state during the given period.
[DataMember]
public int UnitsProducedCount { get; set; }