123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.String.Enums
- {
- /// <summary>
- /// 盘点方式
- /// </summary>
- public enum InventoryMode
- {
- [Description("WMS端创建")]
- AppointPallet,
- [Description("随机盘点")]
- Random,
- [Description("盲盘")]
- Blind,
- [Description("人工选择库存盘点")]
- Select
- }
- }
|