using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JSMachine.WMS.Domain.Entity.Enums { /// /// 操作来源 /// public enum OperationSource { None = 0, ERP = 1, PDA = 2, WEB = 3, RCS = 4 } /// /// 操作类型 /// public enum OperationType { None = 0, StockIn = 1, SaleOut = 2, StockOutCancel = 3, ProductionOut = 4, TailIn = 5, Carry = 6, RcsCallBack = 7, UpdateErpTask = 8, UpdateStorageRack = 9, } }