非采购上架-接口
This commit is contained in:
24
src/WMS.Web.Domain/Values/ShelfMethod.cs
Normal file
24
src/WMS.Web.Domain/Values/ShelfMethod.cs
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user