diff --git a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml index 58162965..e5c8bd99 100644 --- a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml +++ b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml @@ -970,7 +970,7 @@ - 类型:1-整箱移货上级,2-整箱移货下级 + 类型:1-整箱移货上架,2-整箱移货下架 @@ -4870,12 +4870,12 @@ - 整箱移货上级 + 整箱移货上架 - 整箱移货下级 + 整箱移货下架 diff --git a/src/WMS.Web.Domain/Entitys/MoveBoxRecord.cs b/src/WMS.Web.Domain/Entitys/MoveBoxRecord.cs index 7783c1af..ab3a7107 100644 --- a/src/WMS.Web.Domain/Entitys/MoveBoxRecord.cs +++ b/src/WMS.Web.Domain/Entitys/MoveBoxRecord.cs @@ -56,7 +56,7 @@ namespace WMS.Web.Domain.Entitys [Column("Qty")] public decimal Qty { get; set; } /// - /// 类型:1-整箱移货上级,2-整箱移货下级 + /// 类型:1-整箱移货上架,2-整箱移货下架 /// [Column("Type")] public MoveBoxType Type { get; set; } = MoveBoxType.Up; diff --git a/src/WMS.Web.Domain/Values/MoveBoxType.cs b/src/WMS.Web.Domain/Values/MoveBoxType.cs index e99b134f..6ffae05f 100644 --- a/src/WMS.Web.Domain/Values/MoveBoxType.cs +++ b/src/WMS.Web.Domain/Values/MoveBoxType.cs @@ -11,14 +11,14 @@ namespace WMS.Web.Domain.Values public enum MoveBoxType { /// - /// 整箱移货上级 + /// 整箱移货上架 /// - [EnumRemark("整箱移货上级")] + [EnumRemark("整箱移货上架")] Up = 1, /// - /// 整箱移货下级 + /// 整箱移货下架 /// - [EnumRemark("整箱移货下级")] + [EnumRemark("整箱移货下架")] Down = 2 } }