From 2949e197858c6d76d3331329ccd36a412971023d Mon Sep 17 00:00:00 2001 From: PhilPan Date: Fri, 5 May 2023 15:36:51 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E6=B7=BB=E5=8A=A0=E5=BC=95?= =?UTF-8?q?=E7=94=A8common.props?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Tnb.EquipMgr.Entities/Consts/ModuleConsts.cs | 13 ++++++------- .../Tnb.EquipMgr.Entities.csproj | 1 + .../Tnb.EquipMgr.Interfaces.csproj | 1 + EquipMgr/Tnb.EquipMgr/EquipmentService.cs | 1 - EquipMgr/Tnb.EquipMgr/Tnb.EquipMgr.csproj | 1 + QcMgr/Tnb.QcMgr.Entities/Consts/ModuleConsts.cs | 8 ++++++++ QcMgr/Tnb.QcMgr.Entities/Tnb.QcMgr.Entities.csproj | 1 + .../Tnb.QcMgr.Interfaces.csproj | 1 + QcMgr/Tnb.QcMgr/Tnb.QcMgr.csproj | 1 + .../Consts/ModuleConsts.cs | 8 ++++++++ .../Tnb.WarehouseMgr.Entities.csproj | 1 + .../Tnb.WarehouseMgr.Interfaces.csproj | 1 + .../Tnb.WarehouseMgr/Tnb.WarehouseMgr.csproj | 1 + 13 files changed, 31 insertions(+), 8 deletions(-) create mode 100644 QcMgr/Tnb.QcMgr.Entities/Consts/ModuleConsts.cs create mode 100644 WarehouseMgr/Tnb.WarehouseMgr.Entities/Consts/ModuleConsts.cs diff --git a/EquipMgr/Tnb.EquipMgr.Entities/Consts/ModuleConsts.cs b/EquipMgr/Tnb.EquipMgr.Entities/Consts/ModuleConsts.cs index 7b6efd37..9b9f5f7a 100644 --- a/EquipMgr/Tnb.EquipMgr.Entities/Consts/ModuleConsts.cs +++ b/EquipMgr/Tnb.EquipMgr.Entities/Consts/ModuleConsts.cs @@ -1,9 +1,8 @@ -namespace Tnb.EquipMgr.Entities.Consts -{ - public class ModuleConsts - { - public const string Tag = "EquimentManager"; - public const string Area = "equiment"; +namespace Tnb.EquipMgr; + +public class ModuleConsts +{ + public const string Tag = "EquipMgr"; + public const string Area = "equip"; - } } \ No newline at end of file diff --git a/EquipMgr/Tnb.EquipMgr.Entities/Tnb.EquipMgr.Entities.csproj b/EquipMgr/Tnb.EquipMgr.Entities/Tnb.EquipMgr.Entities.csproj index 4e4e987f..e910aaa2 100644 --- a/EquipMgr/Tnb.EquipMgr.Entities/Tnb.EquipMgr.Entities.csproj +++ b/EquipMgr/Tnb.EquipMgr.Entities/Tnb.EquipMgr.Entities.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/EquipMgr/Tnb.EquipMgr.Interfaces/Tnb.EquipMgr.Interfaces.csproj b/EquipMgr/Tnb.EquipMgr.Interfaces/Tnb.EquipMgr.Interfaces.csproj index 3bce5366..8bbf5496 100644 --- a/EquipMgr/Tnb.EquipMgr.Interfaces/Tnb.EquipMgr.Interfaces.csproj +++ b/EquipMgr/Tnb.EquipMgr.Interfaces/Tnb.EquipMgr.Interfaces.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/EquipMgr/Tnb.EquipMgr/EquipmentService.cs b/EquipMgr/Tnb.EquipMgr/EquipmentService.cs index db5b3b74..2f8880d1 100644 --- a/EquipMgr/Tnb.EquipMgr/EquipmentService.cs +++ b/EquipMgr/Tnb.EquipMgr/EquipmentService.cs @@ -9,7 +9,6 @@ using Mapster; using Microsoft.AspNetCore.Mvc; using SqlSugar; using Tnb.EquipMgr.Entities; -using Tnb.EquipMgr.Entities.Consts; using Tnb.EquipMgr.Entities.Dto; using Tnb.EquipMgr.Interfaces; diff --git a/EquipMgr/Tnb.EquipMgr/Tnb.EquipMgr.csproj b/EquipMgr/Tnb.EquipMgr/Tnb.EquipMgr.csproj index 9135ec11..03958fba 100644 --- a/EquipMgr/Tnb.EquipMgr/Tnb.EquipMgr.csproj +++ b/EquipMgr/Tnb.EquipMgr/Tnb.EquipMgr.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/QcMgr/Tnb.QcMgr.Entities/Consts/ModuleConsts.cs b/QcMgr/Tnb.QcMgr.Entities/Consts/ModuleConsts.cs new file mode 100644 index 00000000..ac78688a --- /dev/null +++ b/QcMgr/Tnb.QcMgr.Entities/Consts/ModuleConsts.cs @@ -0,0 +1,8 @@ +namespace Tnb.QcMgr; + +public class ModuleConsts +{ + public const string Tag = "QcMgr"; + public const string Area = "qc"; + +} \ No newline at end of file diff --git a/QcMgr/Tnb.QcMgr.Entities/Tnb.QcMgr.Entities.csproj b/QcMgr/Tnb.QcMgr.Entities/Tnb.QcMgr.Entities.csproj index 4e4e987f..e910aaa2 100644 --- a/QcMgr/Tnb.QcMgr.Entities/Tnb.QcMgr.Entities.csproj +++ b/QcMgr/Tnb.QcMgr.Entities/Tnb.QcMgr.Entities.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/QcMgr/Tnb.QcMgr.Interfaces/Tnb.QcMgr.Interfaces.csproj b/QcMgr/Tnb.QcMgr.Interfaces/Tnb.QcMgr.Interfaces.csproj index c85520db..4bb868dc 100644 --- a/QcMgr/Tnb.QcMgr.Interfaces/Tnb.QcMgr.Interfaces.csproj +++ b/QcMgr/Tnb.QcMgr.Interfaces/Tnb.QcMgr.Interfaces.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/QcMgr/Tnb.QcMgr/Tnb.QcMgr.csproj b/QcMgr/Tnb.QcMgr/Tnb.QcMgr.csproj index 045dea48..4c21cfe1 100644 --- a/QcMgr/Tnb.QcMgr/Tnb.QcMgr.csproj +++ b/QcMgr/Tnb.QcMgr/Tnb.QcMgr.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Consts/ModuleConsts.cs b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Consts/ModuleConsts.cs new file mode 100644 index 00000000..4847bae1 --- /dev/null +++ b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Consts/ModuleConsts.cs @@ -0,0 +1,8 @@ +namespace Tnb.WarehouseMgr; + +public class ModuleConsts +{ + public const string Tag = "WarehouseMgr"; + public const string Area = "wms"; + +} \ No newline at end of file diff --git a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Tnb.WarehouseMgr.Entities.csproj b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Tnb.WarehouseMgr.Entities.csproj index 4e4e987f..e910aaa2 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Tnb.WarehouseMgr.Entities.csproj +++ b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Tnb.WarehouseMgr.Entities.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/Tnb.WarehouseMgr.Interfaces.csproj b/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/Tnb.WarehouseMgr.Interfaces.csproj index 0bc8ac89..6a1e6e38 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/Tnb.WarehouseMgr.Interfaces.csproj +++ b/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/Tnb.WarehouseMgr.Interfaces.csproj @@ -1,4 +1,5 @@ + net6.0 diff --git a/WarehouseMgr/Tnb.WarehouseMgr/Tnb.WarehouseMgr.csproj b/WarehouseMgr/Tnb.WarehouseMgr/Tnb.WarehouseMgr.csproj index 73911578..49198cc8 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr/Tnb.WarehouseMgr.csproj +++ b/WarehouseMgr/Tnb.WarehouseMgr/Tnb.WarehouseMgr.csproj @@ -1,4 +1,5 @@ + net6.0