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