实体对象创建

This commit is contained in:
tongfei
2023-10-26 09:58:15 +08:00
parent c8fca23519
commit cdb0cdefb0
6 changed files with 321 additions and 0 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 BackRecordType
{
/// <summary>
/// 入库回退下架
/// </summary>
[EnumRemark("入库回退下架")]
InstockOff =1,
/// <summary>
/// 出库回退上架
/// </summary>
[EnumRemark("出库回退上架")]
OutstockOn =2
}
}