非采购上架-接口

This commit is contained in:
tongfei
2023-11-09 14:05:55 +08:00
parent b51f09542c
commit 3ccebc07f5
11 changed files with 366 additions and 33 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Values
{
/// <summary>
/// 非采购上架方式
/// </summary>
public enum ShelfMethod
{
/// <summary>
/// 按箱上架
/// </summary>
[EnumRemark("按箱上架")]
Box = 1,
/// <summary>
/// 按产品上架
/// </summary>
[EnumRemark("按产品上架")]
Product = 2,
}
}