using System.ComponentModel; namespace WCS.Entity.Protocol.RGV { public enum RGVCmdType : short { /// /// 取货 /// [Description("自动")] PickGoods = 1, /// /// 放货 /// [Description("自动")] PutGoods = 2, /// /// 移动 /// [Description("移动")] Move = 3, /// /// 变更放货点 /// [Description("自动")] ChangePutGoods = 4, /// /// 变更取货点 /// [Description("自动")] ChangePickGoods = 5 } }