Class TestProcessResult
Unit results per process in verification rule.
Inheritance
System.Object
TestProcessResult
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Virinco.WATS.Interface.MES.Production
Assembly: Virinco.WATS.Interface.MES.dll
Syntax
public class TestProcessResult
Properties
NonPassedCount
How many times the unit didn't pass the test.
Declaration
[JsonProperty("nonPassedCount")]
public int NonPassedCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ProcessCode
Test operation code.
Declaration
[JsonProperty("processCode")]
public short ProcessCode { get; set; }
Property Value
Type | Description |
---|---|
System.Int16 |
ProcessIndex
Test operation order index.
Declaration
[JsonProperty("processIndex")]
public string ProcessIndex { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ProcessName
Test operation name.
Declaration
[JsonProperty("processName")]
public string ProcessName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RepairCount
How many times the unit was repaired.
Declaration
[JsonIgnore]
public int RepairCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
StartUtc
Test start date and time.
Declaration
[JsonIgnore]
public DateTime StartUtc { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
StationName
Name of test station.
Declaration
[JsonProperty("stationName")]
public string StationName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
StatusText
Unit test status in this process.
Declaration
[JsonProperty("status")]
public string StatusText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TotalCount
How many times the unit was tested.
Declaration
[JsonProperty("totalCount")]
public int TotalCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |