namespace Sln.Iot.Model.api.TestAndInspection.Enum { /// /// 测试结果枚举 /// public enum TestResult { /// 通过 Passed = 0, /// 失败 Failed = 1, /// 错误 Error = 2, /// 中止 Aborted = 3, /// 跳过 Skipped = 4 } }