first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,39 @@
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,
}
}
@@ -0,0 +1,12 @@
namespace JSMachine.WMS.Domain.Entity.Enums
{
/// <summary>
/// 备纸错误状态(0:正常 1:错误)
/// </summary>
public enum PreparationErrorStateEnum
{
Sucess = 0,
Error = 1
}
}