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