30 lines
563 B
C#
30 lines
563 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.App.Dto.Enum
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 残卷入库来源
|
||
|
|
/// </summary>
|
||
|
|
public enum ReStockInOriginEnum
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 自动入库
|
||
|
|
/// </summary>
|
||
|
|
AutoStockIn = 1,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 编辑补录
|
||
|
|
/// </summary>
|
||
|
|
HandStockIn = 2,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 新增补录
|
||
|
|
/// </summary>
|
||
|
|
AddHandStockIn = 3,
|
||
|
|
}
|
||
|
|
}
|