From dc690e01b91b469ad4c2427f36f99ba0b374edba Mon Sep 17 00:00:00 2001 From: Chunkit Yeung Date: Tue, 20 Feb 2024 21:49:34 +0800 Subject: [PATCH] Refator entity --- EOM.TSHotelManager.Application/Business/Cash/CashService.cs | 2 +- EOM.TSHotelManager.Application/Business/Cash/ICashService.cs | 2 +- .../Business/Customer/CustoService.cs | 2 +- .../Business/Customer/ICustoService.cs | 2 +- EOM.TSHotelManager.Application/Business/Fonts/FontsService.cs | 2 +- .../Business/Fonts/IFontsService.cs | 2 +- .../Business/Reser/IReserService.cs | 2 +- EOM.TSHotelManager.Application/Business/Reser/ReserService.cs | 2 +- EOM.TSHotelManager.Application/Business/Room/IRoomService.cs | 2 +- .../Business/Room/IRoomTypeService.cs | 2 +- EOM.TSHotelManager.Application/Business/Room/RoomService.cs | 2 +- .../Business/Room/RoomTypeService.cs | 2 +- .../Business/Sellthing/ISellService.cs | 2 +- .../Business/Sellthing/SellService.cs | 2 +- .../Business/Spend/ISpendService.cs | 2 +- EOM.TSHotelManager.Application/Business/Spend/SpendService.cs | 2 +- EOM.TSHotelManager.Application/Business/Wti/IWtiService.cs | 2 +- EOM.TSHotelManager.Application/Business/Wti/WtiService.cs | 2 +- EOM.TSHotelManager.Application/Sys/NavBar/INavBarService.cs | 2 +- EOM.TSHotelManager.Application/Sys/NavBar/NavBarService.cs | 2 +- EOM.TSHotelManager.Application/Util/IUtilService.cs | 2 +- EOM.TSHotelManager.Application/Util/UtilService.cs | 2 +- .../Worker/Check/IWorkerCheckService.cs | 2 +- .../Worker/Check/WorkerCheckService.cs | 2 +- .../Worker/GoodBad/IWorkerGoodBadService.cs | 2 +- .../Worker/GoodBad/WorkerGoodBadService.cs | 2 +- .../Worker/History/IWorkerHistoryService.cs | 2 +- .../Worker/History/WorkerHistoryService.cs | 2 +- EOM.TSHotelManager.Application/Worker/IWorkerService.cs | 2 +- .../Worker/Picture/IWorkerPicService.cs | 2 +- .../Worker/Picture/WorkerPicService.cs | 2 +- EOM.TSHotelManager.Application/Worker/WorkerService.cs | 2 +- EOM.TSHotelManager.Application/Zero/Admin/AdminService.cs | 2 +- EOM.TSHotelManager.Application/Zero/Admin/IAdminService.cs | 2 +- EOM.TSHotelManager.Application/Zero/Base/BaseService.cs | 2 +- EOM.TSHotelManager.Application/Zero/Base/IBaseService.cs | 2 +- .../Zero/CheckInfo/CheckInfoService.cs | 2 +- .../Zero/CheckInfo/ICheckInfoService.cs | 2 +- .../Zero/Module/AdminModuleZeroService.cs | 4 ++-- .../Zero/Module/IAdminModuleZeroService.cs | 2 +- EOM.TSHotelManager.Application/Zero/Notice/INoticeService.cs | 2 +- EOM.TSHotelManager.Application/Zero/Notice/NoticeService.cs | 2 +- .../Zero/VipRule/IVipRuleAppService.cs | 2 +- .../Zero/VipRule/VipRuleAppService.cs | 2 +- .../OSelectCustoAllDto.cs | 4 ++-- EOM.TSHotelManager.Common.Core/Worker/GBType.cs | 2 +- .../Controllers/Business/Cash/CashController.cs | 2 +- .../Controllers/Business/Customer/CustoController.cs | 2 +- .../Controllers/Business/Fonts/FontsController.cs | 2 +- .../Controllers/Business/Reser/ReserController.cs | 2 +- .../Controllers/Business/Room/RoomController.cs | 2 +- .../Controllers/Business/Room/RoomTypeController.cs | 2 +- .../Controllers/Business/Sellthing/SellthingController.cs | 2 +- .../Controllers/Business/Spend/SpendController.cs | 2 +- .../Controllers/Business/Wti/WtiController.cs | 2 +- .../Controllers/Sys/NavBar/NavBarController.cs | 2 +- EOM.TSHotelManager.WebApi/Controllers/Util/AppController.cs | 2 +- .../Controllers/Worker/Check/WorkerCheckController.cs | 2 +- .../Controllers/Worker/GoodBad/WorkerGoodBadController.cs | 2 +- .../Controllers/Worker/History/WorkerHistoryController.cs | 2 +- .../Controllers/Worker/Picture/WorkerPictureController.cs | 2 +- .../Controllers/Worker/WorkerController.cs | 2 +- .../Controllers/Zero/Admin/AdminController.cs | 2 +- .../Controllers/Zero/Base/BaseController.cs | 2 +- .../Controllers/Zero/CheckInfo/CheckInfoController.cs | 2 +- .../Controllers/Zero/Module/ModuleController.cs | 2 +- .../Controllers/Zero/Notice/NoticeController.cs | 2 +- .../Controllers/Zero/VipRule/VipRuleController.cs | 2 +- 68 files changed, 70 insertions(+), 70 deletions(-) rename {EOM.TSHotelManager.Application/Business/Customer => EOM.TSHotelManager.Common.Core}/OSelectCustoAllDto.cs (95%) diff --git a/EOM.TSHotelManager.Application/Business/Cash/CashService.cs b/EOM.TSHotelManager.Application/Business/Cash/CashService.cs index 53bd6f9..84ff681 100644 --- a/EOM.TSHotelManager.Application/Business/Cash/CashService.cs +++ b/EOM.TSHotelManager.Application/Business/Cash/CashService.cs @@ -24,7 +24,7 @@ using System; using System.Collections.Generic; using System.Linq; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Cash/ICashService.cs b/EOM.TSHotelManager.Application/Business/Cash/ICashService.cs index 47705ba..3106ddc 100644 --- a/EOM.TSHotelManager.Application/Business/Cash/ICashService.cs +++ b/EOM.TSHotelManager.Application/Business/Cash/ICashService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Customer/CustoService.cs b/EOM.TSHotelManager.Application/Business/Customer/CustoService.cs index 22c6549..f905c9e 100644 --- a/EOM.TSHotelManager.Application/Business/Customer/CustoService.cs +++ b/EOM.TSHotelManager.Application/Business/Customer/CustoService.cs @@ -27,7 +27,7 @@ using System.Linq; using System.Linq.Expressions; using CK.Common; using EOM.Encrypt; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using Npgsql; using SqlSugar; diff --git a/EOM.TSHotelManager.Application/Business/Customer/ICustoService.cs b/EOM.TSHotelManager.Application/Business/Customer/ICustoService.cs index e288f3e..f6617b5 100644 --- a/EOM.TSHotelManager.Application/Business/Customer/ICustoService.cs +++ b/EOM.TSHotelManager.Application/Business/Customer/ICustoService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Fonts/FontsService.cs b/EOM.TSHotelManager.Application/Business/Fonts/FontsService.cs index 0a2c9ed..baf5d61 100644 --- a/EOM.TSHotelManager.Application/Business/Fonts/FontsService.cs +++ b/EOM.TSHotelManager.Application/Business/Fonts/FontsService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Business/Fonts/IFontsService.cs b/EOM.TSHotelManager.Application/Business/Fonts/IFontsService.cs index 9cf39bd..0dd43ac 100644 --- a/EOM.TSHotelManager.Application/Business/Fonts/IFontsService.cs +++ b/EOM.TSHotelManager.Application/Business/Fonts/IFontsService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Reser/IReserService.cs b/EOM.TSHotelManager.Application/Business/Reser/IReserService.cs index e86bee9..e089667 100644 --- a/EOM.TSHotelManager.Application/Business/Reser/IReserService.cs +++ b/EOM.TSHotelManager.Application/Business/Reser/IReserService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Reser/ReserService.cs b/EOM.TSHotelManager.Application/Business/Reser/ReserService.cs index a700117..951ccc8 100644 --- a/EOM.TSHotelManager.Application/Business/Reser/ReserService.cs +++ b/EOM.TSHotelManager.Application/Business/Reser/ReserService.cs @@ -22,7 +22,7 @@ * */ using EOM.Encrypt; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Business/Room/IRoomService.cs b/EOM.TSHotelManager.Application/Business/Room/IRoomService.cs index 027cd16..30df5c9 100644 --- a/EOM.TSHotelManager.Application/Business/Room/IRoomService.cs +++ b/EOM.TSHotelManager.Application/Business/Room/IRoomService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Room/IRoomTypeService.cs b/EOM.TSHotelManager.Application/Business/Room/IRoomTypeService.cs index e213798..dfef4b7 100644 --- a/EOM.TSHotelManager.Application/Business/Room/IRoomTypeService.cs +++ b/EOM.TSHotelManager.Application/Business/Room/IRoomTypeService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Room/RoomService.cs b/EOM.TSHotelManager.Application/Business/Room/RoomService.cs index b0e77c4..aaf42d7 100644 --- a/EOM.TSHotelManager.Application/Business/Room/RoomService.cs +++ b/EOM.TSHotelManager.Application/Business/Room/RoomService.cs @@ -22,7 +22,7 @@ * */ using CK.Common; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Business/Room/RoomTypeService.cs b/EOM.TSHotelManager.Application/Business/Room/RoomTypeService.cs index 04f4daa..92ed01a 100644 --- a/EOM.TSHotelManager.Application/Business/Room/RoomTypeService.cs +++ b/EOM.TSHotelManager.Application/Business/Room/RoomTypeService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Business/Sellthing/ISellService.cs b/EOM.TSHotelManager.Application/Business/Sellthing/ISellService.cs index 3315fce..83fd849 100644 --- a/EOM.TSHotelManager.Application/Business/Sellthing/ISellService.cs +++ b/EOM.TSHotelManager.Application/Business/Sellthing/ISellService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Business/Sellthing/SellService.cs b/EOM.TSHotelManager.Application/Business/Sellthing/SellService.cs index d1c870b..5673aa4 100644 --- a/EOM.TSHotelManager.Application/Business/Sellthing/SellService.cs +++ b/EOM.TSHotelManager.Application/Business/Sellthing/SellService.cs @@ -24,7 +24,7 @@ using System; using System.Collections.Generic; using CK.Common; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using SqlSugar; diff --git a/EOM.TSHotelManager.Application/Business/Spend/ISpendService.cs b/EOM.TSHotelManager.Application/Business/Spend/ISpendService.cs index c5dc29b..962a3a9 100644 --- a/EOM.TSHotelManager.Application/Business/Spend/ISpendService.cs +++ b/EOM.TSHotelManager.Application/Business/Spend/ISpendService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Business/Spend/SpendService.cs b/EOM.TSHotelManager.Application/Business/Spend/SpendService.cs index 14e5035..34e1f0d 100644 --- a/EOM.TSHotelManager.Application/Business/Spend/SpendService.cs +++ b/EOM.TSHotelManager.Application/Business/Spend/SpendService.cs @@ -24,7 +24,7 @@ using System; using System.Collections.Generic; using System.Linq; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Wti/IWtiService.cs b/EOM.TSHotelManager.Application/Business/Wti/IWtiService.cs index 3f49500..4b2d1e0 100644 --- a/EOM.TSHotelManager.Application/Business/Wti/IWtiService.cs +++ b/EOM.TSHotelManager.Application/Business/Wti/IWtiService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Business/Wti/WtiService.cs b/EOM.TSHotelManager.Application/Business/Wti/WtiService.cs index 68eb411..5926026 100644 --- a/EOM.TSHotelManager.Application/Business/Wti/WtiService.cs +++ b/EOM.TSHotelManager.Application/Business/Wti/WtiService.cs @@ -23,7 +23,7 @@ */ using System; using System.Collections.Generic; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Sys/NavBar/INavBarService.cs b/EOM.TSHotelManager.Application/Sys/NavBar/INavBarService.cs index 44b33f9..7a8ce7d 100644 --- a/EOM.TSHotelManager.Application/Sys/NavBar/INavBarService.cs +++ b/EOM.TSHotelManager.Application/Sys/NavBar/INavBarService.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; namespace EOM.TSHotelManager.Application { diff --git a/EOM.TSHotelManager.Application/Sys/NavBar/NavBarService.cs b/EOM.TSHotelManager.Application/Sys/NavBar/NavBarService.cs index d8d2cfb..803911b 100644 --- a/EOM.TSHotelManager.Application/Sys/NavBar/NavBarService.cs +++ b/EOM.TSHotelManager.Application/Sys/NavBar/NavBarService.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Util/IUtilService.cs b/EOM.TSHotelManager.Application/Util/IUtilService.cs index 1495c51..1bd6f50 100644 --- a/EOM.TSHotelManager.Application/Util/IUtilService.cs +++ b/EOM.TSHotelManager.Application/Util/IUtilService.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System; using System.Collections.Generic; using System.Linq; diff --git a/EOM.TSHotelManager.Application/Util/UtilService.cs b/EOM.TSHotelManager.Application/Util/UtilService.cs index 6c711d5..4db67c6 100644 --- a/EOM.TSHotelManager.Application/Util/UtilService.cs +++ b/EOM.TSHotelManager.Application/Util/UtilService.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Worker/Check/IWorkerCheckService.cs b/EOM.TSHotelManager.Application/Worker/Check/IWorkerCheckService.cs index d069bfc..166dc57 100644 --- a/EOM.TSHotelManager.Application/Worker/Check/IWorkerCheckService.cs +++ b/EOM.TSHotelManager.Application/Worker/Check/IWorkerCheckService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Worker/Check/WorkerCheckService.cs b/EOM.TSHotelManager.Application/Worker/Check/WorkerCheckService.cs index 25b1261..8c79842 100644 --- a/EOM.TSHotelManager.Application/Worker/Check/WorkerCheckService.cs +++ b/EOM.TSHotelManager.Application/Worker/Check/WorkerCheckService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Worker/GoodBad/IWorkerGoodBadService.cs b/EOM.TSHotelManager.Application/Worker/GoodBad/IWorkerGoodBadService.cs index 59c4cfa..3a84b23 100644 --- a/EOM.TSHotelManager.Application/Worker/GoodBad/IWorkerGoodBadService.cs +++ b/EOM.TSHotelManager.Application/Worker/GoodBad/IWorkerGoodBadService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Worker/GoodBad/WorkerGoodBadService.cs b/EOM.TSHotelManager.Application/Worker/GoodBad/WorkerGoodBadService.cs index 8eb38b0..c9982e7 100644 --- a/EOM.TSHotelManager.Application/Worker/GoodBad/WorkerGoodBadService.cs +++ b/EOM.TSHotelManager.Application/Worker/GoodBad/WorkerGoodBadService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Worker/History/IWorkerHistoryService.cs b/EOM.TSHotelManager.Application/Worker/History/IWorkerHistoryService.cs index a8c53fb..5be139c 100644 --- a/EOM.TSHotelManager.Application/Worker/History/IWorkerHistoryService.cs +++ b/EOM.TSHotelManager.Application/Worker/History/IWorkerHistoryService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Worker/History/WorkerHistoryService.cs b/EOM.TSHotelManager.Application/Worker/History/WorkerHistoryService.cs index 9cc0b98..e3006d0 100644 --- a/EOM.TSHotelManager.Application/Worker/History/WorkerHistoryService.cs +++ b/EOM.TSHotelManager.Application/Worker/History/WorkerHistoryService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Worker/IWorkerService.cs b/EOM.TSHotelManager.Application/Worker/IWorkerService.cs index 767b5f8..a3d4465 100644 --- a/EOM.TSHotelManager.Application/Worker/IWorkerService.cs +++ b/EOM.TSHotelManager.Application/Worker/IWorkerService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Worker/Picture/IWorkerPicService.cs b/EOM.TSHotelManager.Application/Worker/Picture/IWorkerPicService.cs index 5c342d5..02d46ce 100644 --- a/EOM.TSHotelManager.Application/Worker/Picture/IWorkerPicService.cs +++ b/EOM.TSHotelManager.Application/Worker/Picture/IWorkerPicService.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System; using System.Collections.Generic; using System.Linq; diff --git a/EOM.TSHotelManager.Application/Worker/Picture/WorkerPicService.cs b/EOM.TSHotelManager.Application/Worker/Picture/WorkerPicService.cs index 2303649..b6bb168 100644 --- a/EOM.TSHotelManager.Application/Worker/Picture/WorkerPicService.cs +++ b/EOM.TSHotelManager.Application/Worker/Picture/WorkerPicService.cs @@ -1,6 +1,6 @@ using CK.Common; using EOM.Encrypt; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Worker/WorkerService.cs b/EOM.TSHotelManager.Application/Worker/WorkerService.cs index 035556e..c5b9de5 100644 --- a/EOM.TSHotelManager.Application/Worker/WorkerService.cs +++ b/EOM.TSHotelManager.Application/Worker/WorkerService.cs @@ -23,7 +23,7 @@ */ using CK.Common; using EOM.Encrypt; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using SqlSugar; using SqlSugar.DistributedSystem.Snowflake; diff --git a/EOM.TSHotelManager.Application/Zero/Admin/AdminService.cs b/EOM.TSHotelManager.Application/Zero/Admin/AdminService.cs index a94ae91..4b3d259 100644 --- a/EOM.TSHotelManager.Application/Zero/Admin/AdminService.cs +++ b/EOM.TSHotelManager.Application/Zero/Admin/AdminService.cs @@ -23,7 +23,7 @@ */ using CK.Common; using EOM.Encrypt; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using SqlSugar.DistributedSystem.Snowflake; using System; diff --git a/EOM.TSHotelManager.Application/Zero/Admin/IAdminService.cs b/EOM.TSHotelManager.Application/Zero/Admin/IAdminService.cs index c407cdc..4452685 100644 --- a/EOM.TSHotelManager.Application/Zero/Admin/IAdminService.cs +++ b/EOM.TSHotelManager.Application/Zero/Admin/IAdminService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Zero/Base/BaseService.cs b/EOM.TSHotelManager.Application/Zero/Base/BaseService.cs index 004c1aa..f41b8c2 100644 --- a/EOM.TSHotelManager.Application/Zero/Base/BaseService.cs +++ b/EOM.TSHotelManager.Application/Zero/Base/BaseService.cs @@ -22,7 +22,7 @@ * */ using CK.Common; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using SqlSugar; using System; diff --git a/EOM.TSHotelManager.Application/Zero/Base/IBaseService.cs b/EOM.TSHotelManager.Application/Zero/Base/IBaseService.cs index 001efee..f5d5221 100644 --- a/EOM.TSHotelManager.Application/Zero/Base/IBaseService.cs +++ b/EOM.TSHotelManager.Application/Zero/Base/IBaseService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System; using System.Collections.Generic; using System.Linq; diff --git a/EOM.TSHotelManager.Application/Zero/CheckInfo/CheckInfoService.cs b/EOM.TSHotelManager.Application/Zero/CheckInfo/CheckInfoService.cs index 475b604..fa6ab12 100644 --- a/EOM.TSHotelManager.Application/Zero/CheckInfo/CheckInfoService.cs +++ b/EOM.TSHotelManager.Application/Zero/CheckInfo/CheckInfoService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Zero/CheckInfo/ICheckInfoService.cs b/EOM.TSHotelManager.Application/Zero/CheckInfo/ICheckInfoService.cs index 1582ab3..38af52d 100644 --- a/EOM.TSHotelManager.Application/Zero/CheckInfo/ICheckInfoService.cs +++ b/EOM.TSHotelManager.Application/Zero/CheckInfo/ICheckInfoService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Zero/Module/AdminModuleZeroService.cs b/EOM.TSHotelManager.Application/Zero/Module/AdminModuleZeroService.cs index d052519..08d6d22 100644 --- a/EOM.TSHotelManager.Application/Zero/Module/AdminModuleZeroService.cs +++ b/EOM.TSHotelManager.Application/Zero/Module/AdminModuleZeroService.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; @@ -31,7 +31,7 @@ namespace EOM.TSHotelManager.Application /// 获取所有模块 /// /// - public List GetAllModule() + public List GetAllModule() { List modules = moduleZeroRepository.Change().GetList(); modules.ForEach(source => diff --git a/EOM.TSHotelManager.Application/Zero/Module/IAdminModuleZeroService.cs b/EOM.TSHotelManager.Application/Zero/Module/IAdminModuleZeroService.cs index 1baa1f2..afcbfae 100644 --- a/EOM.TSHotelManager.Application/Zero/Module/IAdminModuleZeroService.cs +++ b/EOM.TSHotelManager.Application/Zero/Module/IAdminModuleZeroService.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System; using System.Collections.Generic; using System.Linq; diff --git a/EOM.TSHotelManager.Application/Zero/Notice/INoticeService.cs b/EOM.TSHotelManager.Application/Zero/Notice/INoticeService.cs index 24a4cfd..15954c2 100644 --- a/EOM.TSHotelManager.Application/Zero/Notice/INoticeService.cs +++ b/EOM.TSHotelManager.Application/Zero/Notice/INoticeService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System.Collections.Generic; namespace EOM.TSHotelManager.Application diff --git a/EOM.TSHotelManager.Application/Zero/Notice/NoticeService.cs b/EOM.TSHotelManager.Application/Zero/Notice/NoticeService.cs index 6384c60..f0167bc 100644 --- a/EOM.TSHotelManager.Application/Zero/Notice/NoticeService.cs +++ b/EOM.TSHotelManager.Application/Zero/Notice/NoticeService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Zero/VipRule/IVipRuleAppService.cs b/EOM.TSHotelManager.Application/Zero/VipRule/IVipRuleAppService.cs index 23cd4ad..a168e0f 100644 --- a/EOM.TSHotelManager.Application/Zero/VipRule/IVipRuleAppService.cs +++ b/EOM.TSHotelManager.Application/Zero/VipRule/IVipRuleAppService.cs @@ -22,7 +22,7 @@ * *模块说明:会员等级规则功能模块接口 */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using System; using System.Collections.Generic; using System.Linq; diff --git a/EOM.TSHotelManager.Application/Zero/VipRule/VipRuleAppService.cs b/EOM.TSHotelManager.Application/Zero/VipRule/VipRuleAppService.cs index fce4245..49b4fd4 100644 --- a/EOM.TSHotelManager.Application/Zero/VipRule/VipRuleAppService.cs +++ b/EOM.TSHotelManager.Application/Zero/VipRule/VipRuleAppService.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.EntityFramework; using System; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.Application/Business/Customer/OSelectCustoAllDto.cs b/EOM.TSHotelManager.Common.Core/OSelectCustoAllDto.cs similarity index 95% rename from EOM.TSHotelManager.Application/Business/Customer/OSelectCustoAllDto.cs rename to EOM.TSHotelManager.Common.Core/OSelectCustoAllDto.cs index d0242e2..456e374 100644 --- a/EOM.TSHotelManager.Application/Business/Customer/OSelectCustoAllDto.cs +++ b/EOM.TSHotelManager.Common.Core/OSelectCustoAllDto.cs @@ -21,9 +21,9 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Core; +using System.Collections.Generic; -namespace EOM.TSHotelManager.Application +namespace EOM.TSHotelManager.Common.Core { /// /// 查询所有客户信息 diff --git a/EOM.TSHotelManager.Common.Core/Worker/GBType.cs b/EOM.TSHotelManager.Common.Core/Worker/GBType.cs index 564271e..f9985d0 100644 --- a/EOM.TSHotelManager.Common.Core/Worker/GBType.cs +++ b/EOM.TSHotelManager.Common.Core/Worker/GBType.cs @@ -22,7 +22,7 @@ * *模块说明:奖惩类型类 */ -//using EOM.TSHotelManager.Core; +//using EOM.TSHotelManager.Common.Core; using System; namespace EOM.TSHotelManager.Common.Core diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Cash/CashController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Cash/CashController.cs index 852a3de..1852b24 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Cash/CashController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Cash/CashController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Customer/CustoController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Customer/CustoController.cs index 4eaef9d..676e1e7 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Customer/CustoController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Customer/CustoController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Fonts/FontsController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Fonts/FontsController.cs index 9c599ef..053fd7d 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Fonts/FontsController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Fonts/FontsController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Reser/ReserController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Reser/ReserController.cs index d51edbf..37ce05e 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Reser/ReserController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Reser/ReserController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomController.cs index 9f094b6..b6656ad 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomTypeController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomTypeController.cs index 92968a9..173edab 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomTypeController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Room/RoomTypeController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Sellthing/SellthingController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Sellthing/SellthingController.cs index d9d2f5b..0cf486f 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Sellthing/SellthingController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Sellthing/SellthingController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Spend/SpendController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Spend/SpendController.cs index 1ceff42..cd619cd 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Spend/SpendController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Spend/SpendController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Business/Wti/WtiController.cs b/EOM.TSHotelManager.WebApi/Controllers/Business/Wti/WtiController.cs index 1f63514..097996f 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Business/Wti/WtiController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Business/Wti/WtiController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Sys/NavBar/NavBarController.cs b/EOM.TSHotelManager.WebApi/Controllers/Sys/NavBar/NavBarController.cs index e816bf6..cd228e0 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Sys/NavBar/NavBarController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Sys/NavBar/NavBarController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Util/AppController.cs b/EOM.TSHotelManager.WebApi/Controllers/Util/AppController.cs index 0ef88b5..a57b70f 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Util/AppController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Util/AppController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Worker/Check/WorkerCheckController.cs b/EOM.TSHotelManager.WebApi/Controllers/Worker/Check/WorkerCheckController.cs index 38965a6..7029c79 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Worker/Check/WorkerCheckController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Worker/Check/WorkerCheckController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Worker/GoodBad/WorkerGoodBadController.cs b/EOM.TSHotelManager.WebApi/Controllers/Worker/GoodBad/WorkerGoodBadController.cs index 1283f47..4444af3 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Worker/GoodBad/WorkerGoodBadController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Worker/GoodBad/WorkerGoodBadController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Worker/History/WorkerHistoryController.cs b/EOM.TSHotelManager.WebApi/Controllers/Worker/History/WorkerHistoryController.cs index 2d3a605..1a800e4 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Worker/History/WorkerHistoryController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Worker/History/WorkerHistoryController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Worker/Picture/WorkerPictureController.cs b/EOM.TSHotelManager.WebApi/Controllers/Worker/Picture/WorkerPictureController.cs index a0a7215..51e9445 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Worker/Picture/WorkerPictureController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Worker/Picture/WorkerPictureController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Worker/WorkerController.cs b/EOM.TSHotelManager.WebApi/Controllers/Worker/WorkerController.cs index e93097c..4623d21 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Worker/WorkerController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Worker/WorkerController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Zero/Admin/AdminController.cs b/EOM.TSHotelManager.WebApi/Controllers/Zero/Admin/AdminController.cs index c9c2f50..d8908b7 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Zero/Admin/AdminController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Zero/Admin/AdminController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.WebApi.Filter; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Zero/Base/BaseController.cs b/EOM.TSHotelManager.WebApi/Controllers/Zero/Base/BaseController.cs index 08914b0..91030b9 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Zero/Base/BaseController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Zero/Base/BaseController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Zero/CheckInfo/CheckInfoController.cs b/EOM.TSHotelManager.WebApi/Controllers/Zero/CheckInfo/CheckInfoController.cs index de5f621..3d3b328 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Zero/CheckInfo/CheckInfoController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Zero/CheckInfo/CheckInfoController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Zero/Module/ModuleController.cs b/EOM.TSHotelManager.WebApi/Controllers/Zero/Module/ModuleController.cs index 7152a0c..ca46647 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Zero/Module/ModuleController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Zero/Module/ModuleController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Zero/Notice/NoticeController.cs b/EOM.TSHotelManager.WebApi/Controllers/Zero/Notice/NoticeController.cs index 0928f1c..83f5a92 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Zero/Notice/NoticeController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Zero/Notice/NoticeController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; diff --git a/EOM.TSHotelManager.WebApi/Controllers/Zero/VipRule/VipRuleController.cs b/EOM.TSHotelManager.WebApi/Controllers/Zero/VipRule/VipRuleController.cs index 343d195..add0c91 100644 --- a/EOM.TSHotelManager.WebApi/Controllers/Zero/VipRule/VipRuleController.cs +++ b/EOM.TSHotelManager.WebApi/Controllers/Zero/VipRule/VipRuleController.cs @@ -1,5 +1,5 @@ using EOM.TSHotelManager.Application; -using EOM.TSHotelManager.Core; +using EOM.TSHotelManager.Common.Core; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; -- Gitee