using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { /// /// RF任务类型 /// [Description("任务类型")] public enum EF_TYPE { /// /// 入库 /// [Description("入库")] InStock_RF = 1, /// /// 出库 /// [Description("出库")] OutStock_RF = 2, /// /// 质检 /// [Description("质检")] QualityCheck_RF = 3, /// /// 盘点 /// [Description("盘点")] Inventory_RF = 4, } }