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