From 12d4164e979c995c98442cba112c95a8b968202c Mon Sep 17 00:00:00 2001
From: 18942506660 <18942506660@A18942506660>
Date: Sat, 25 Nov 2023 10:13:45 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml | 6 +++---
src/WMS.Web.Domain/Entitys/MoveBoxRecord.cs | 2 +-
src/WMS.Web.Domain/Values/MoveBoxType.cs | 8 ++++----
3 files changed, 8 insertions(+), 8 deletions(-)
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
}
}