generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
447 B
C#
19 lines
447 B
C#
|
2 months ago
|
namespace Sln.Iot.Model.api.TestAndInspection.Enum
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 测试结果枚举
|
||
|
|
/// </summary>
|
||
|
|
public enum TestResult
|
||
|
|
{
|
||
|
|
/// <summary>通过</summary>
|
||
|
|
Passed = 0,
|
||
|
|
/// <summary>失败</summary>
|
||
|
|
Failed = 1,
|
||
|
|
/// <summary>错误</summary>
|
||
|
|
Error = 2,
|
||
|
|
/// <summary>中止</summary>
|
||
|
|
Aborted = 3,
|
||
|
|
/// <summary>跳过</summary>
|
||
|
|
Skipped = 4
|
||
|
|
}
|
||
|
|
}
|