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.
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace ZJ_BYD.Enums
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工位状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum StationStatusEnum
|
|
|
|
|
{
|
|
|
|
|
[Description("未知")]
|
|
|
|
|
Undefined = 0,
|
|
|
|
|
|
|
|
|
|
[Description("手动")]
|
|
|
|
|
Hand = 1,
|
|
|
|
|
|
|
|
|
|
[Description("自动")]
|
|
|
|
|
Auto = 2,
|
|
|
|
|
|
|
|
|
|
[Description("设备异常")]
|
|
|
|
|
Error = 3
|
|
|
|
|
}
|
|
|
|
|
}
|