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.

13 lines
283 B
C#

namespace Sln.Iot.Model.api.TestAndInspection.Enum
{
/// <summary>
/// 抽样方法枚举
/// </summary>
public enum SamplingMethod
{
/// <summary>不抽样</summary>
NoSampling = 0,
/// <summary>AQL抽样</summary>
AQL = 1
}
}