29 lines
643 B
C#
29 lines
643 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MegaRobo.C00225155.Entities.Enums
|
|
{
|
|
public enum PlateformPos
|
|
{
|
|
/// <summary>
|
|
/// 过渡舱外
|
|
/// </summary>
|
|
TransferOut = 1,
|
|
/// <summary>
|
|
/// 过渡舱内
|
|
/// </summary>
|
|
TransferIn = 2,
|
|
/// <summary>
|
|
/// 取粉末治具的位置,最终停在这
|
|
/// </summary>
|
|
GloveBox1 = 3,
|
|
/// <summary>
|
|
/// 除去粉末治具之外的取放位置
|
|
/// </summary>
|
|
GloveBox2 = 4,
|
|
}
|
|
}
|