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.
|
namespace Sln.Iot.Model.api.TestAndInspection.Enum
|
|
{
|
|
/// <summary>
|
|
/// 检测方法枚举
|
|
/// </summary>
|
|
public enum InspectionMethod
|
|
{
|
|
/// <summary>人工检测</summary>
|
|
Human = 0,
|
|
/// <summary>自动光学检测</summary>
|
|
AOI = 1,
|
|
/// <summary>焊膏检测</summary>
|
|
SPI = 2,
|
|
/// <summary>X射线检测</summary>
|
|
AXI = 3
|
|
}
|
|
} |