diff --git a/EOM.TSHotelManager.Application/Business/Cash/CashService.cs b/EOM.TSHotelManager.Application/Business/Cash/CashService.cs index 53bd6f90d68181590bdb1c32f3269f6c53a64765..84ff68168f5a1cfef1201a82427d5b245d31a826 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 47705baa682164a9aec423677ce4e1215e30fc30..3106ddcb3214862fb58e90e0df39f90e8bdab81a 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 22c65492715a0ad5dc0ccd32ac925427845a15da..f905c9eb1dca54ca4c54fda3072354f6444092c0 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 e288f3e314985101da716480fbcd67e33a644b27..f6617b5196b8658f038f4722a0b152ea48ac80f7 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 0a2c9edd22652c6556850eaad1f320d795b87ab9..baf5d614d16391c4c788c88fe2e577c55ceab51f 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 9cf39bdb67fd5369db42c3c2750cb92e5bb883fd..0dd43ac657a5f144497d3b2b27b909168cba71c9 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 e86bee9fc78bf561c1cc2c5bd2cd5d038adb6a79..e089667bc8b31b27dab509895e6a0beb58b5cd52 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 a70011742bf71b25f633e349f5262e629f47a8da..951ccc8b77f7c8a3431cd57d983ff1278a418e69 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 027cd1661f3f69a685a7fc8f720a78474ea72629..30df5c9c4175ed8e1dbe8cc4966d51c1154120ba 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 e213798bfe0dc26ae274c4aae30d9b36ce942857..dfef4b7342b024c4fe854a959740b9a0b7069aad 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 b0e77c4acbe345c06148e50e049aaeeb5631a7ae..aaf42d7d1d3bd622409da8b7542632cfd6aacfe0 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 04f4daaa01e29012f17ffb91565385f2d048c8b2..92ed01aa22ce6b280b36ad4435ce1d6029ea38e0 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 3315fcee8e8909830b80f5121bc8129206caac43..83fd849e96dcb0a91024385d29879604d4f1f271 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 d1c870b96b6b93c6d475e624e4b5e4c0081225ab..5673aa462e450dd51bb9d0f3c456674dcc37dc18 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 c5dc29bc5767c1103fa1e787e4c22c35d21d0536..962a3a957f850f701f6bbb153c0a9e2e09d8040e 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 14e50359873bbda0a28ba235683fb5dd63699e03..34e1f0dbeaa409602f99ac1dc02d7ec5304f215b 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 3f4950081c2aaa5eb04c3aff7934c66025ef2558..4b2d1e04630a9661159bd086fde1731b31175474 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 68eb411d6a4171e56717e3ac4a124ac6b0b97afc..5926026b77c561a85a6bf88ae50d3ee1c8f3e5fc 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 44b33f95d791e5a9fe04ba9d8483be16d6641f7f..7a8ce7d38d72cbf20b5e437fb6a266eed84e554f 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 d8d2cfbd5e566cb6cb4bd5d394c1a0fba11de6d9..803911bbe945ab728f46b40fc62e098ee08256f1 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 1495c51880158ef3bca389eb9b8763f1685995e9..1bd6f50b5e96b9782c368ebc5e32330bbd26c2cb 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 6c711d5a0843a4793e2b2966374c3e5035fd9984..4db67c6be639d66768c976d14245e577191566aa 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 d069bfca300b4a03511a67badfa303400284c515..166dc5773560c1eeed32f045d5691f2a4ed620c0 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 25b1261da1333bee814a76f1b9614542e078a1cc..8c7984264fccd3fdf75ca89cec545103a8aae6da 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 59c4cfa4006dee0335eb037de5a8a77815fa0b20..3a84b23b5c1740e93c6a11eb37b52e336dfcb12a 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 8eb38b04524bebeff4cdffa0cbe39271ace5aa1b..c9982e733cca14934a5fcc0f1a432143fb25346e 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 a8c53fb6936ea5e76d98659a4848a7f964059854..5be139c41bf4aa9ad35d3ec463d7d0c81c2d52b0 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 9cc0b982f6ebe6264c1e2bafd9b4bfd2b2dd1e12..e3006d061672881645e897542763a2df3eb70bb6 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 767b5f8762750035ee40f85e176ffbb3876c6ef1..a3d4465f84f1d73e4e1613091279239a3d072fd3 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 5c342d5cfca5cf19782160864ff701f93f0b4668..02d46ce46afdb0031178706e201a78642ee42792 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 2303649edec2f1fde04bf0a84031ec889f125803..b6bb16802d27b53f182f4242d0423c4b0c143457 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 035556ee3691165ed2935a19105517ff11c4618b..c5b9de5204f26ebefb975db0eea9993e25860298 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 a94ae91a28bd6f23b96263ae9b460105b7c6e356..4b3d259e3027e380fbb8bb16655a340c8bbee47d 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 c407cdca77ee4ef2f97122bc70a1eb1cb06074cc..4452685cdae160f69b5802e38e80f01f2f1afbdd 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 004c1aa906263ac4c2f948c4e3f52a490c8524d1..f41b8c2667dfb1895656752c12176f10dda019de 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 001efeef496b770a71abea9e6d5f21ad6475bb55..f5d522148cff7cd532d46b235594aff6ea53454a 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 475b6047667b9156eaa65081f2c147a34079f486..fa6ab1241b35cbe9bb631c8583e530636ad54fc9 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 1582ab3dd87650a9f32f17d32a30e0e939807982..38af52d089fbf00462af35035b2e68e1e5a90e4c 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 d052519b60f46fa8de8c57787c356d8a2e4ed181..08d6d22d89d5e9064f37bea7d0f3b617cc625a09 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 1baa1f29c30cd6ff52fdc3c85c379d5bb54f457d..afcbfaee1b0e8356b049928eb8bf5b15e01364d1 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 24a4cfdb49f2261150edadeb4ba211f3e6d1e380..15954c2c957711fb1a6dd2065bb77d0e6f5bc868 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 6384c60ad86523e6223d6c120fdc57f446f6a003..f0167bc56d01c7465081cf9de6e53c1f5be63677 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 23cd4ade2197e13034ea02eaa61212bf247ff8d5..a168e0f7e31261d1fece72c169748aa6b546ccf4 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 fce424510a18290cf95bafde79cbc12cd903738e..49b4fd43e6bd53cf79d7bb7825bcd8f70616e22f 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 d0242e25bbf3598e3d4218da306fbfef6bf0b9a0..456e374a68c12ede465ed4d5899656d791ad57bc 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 564271e706244909c3a703c441ab99cd16a9095e..f9985d08bdc3d06203f1815294e70e895850a3c1 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 852a3de8d34c48defe3093f4c7286bedcdc74f00..1852b2419789ad7637db9bd50affce51c10d48e4 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 4eaef9d7b6218cbb9b8b5ac3c88d191b693e6fcc..676e1e7cb49a5c9e8f4efad4a22f5a10e4e9cc42 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 9c599ef68da55ca26c24f60e36bbd532079ed6e0..053fd7db778fb949fde7e9c0df466d999ff45fbb 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 d51edbfe806b0a41fdf78ba529227372edd63fed..37ce05ef645e64d4a6f09d6a79c8dd8203e2002e 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 9f094b6e7306e55d767cd043a9722467e36d3668..b6656ad7182c0649c384d2b59ce6a3f22465e33e 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 92968a9140fc67f6d2f57dc4235f06835ca97338..173edabfa40d2952e0bbb75e31b84fb1a9eae5ed 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 d9d2f5b347bffa4f19a673db9997a5addb3b8fce..0cf486fa63042d9a285f8d577bda2aa6dbada395 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 1ceff4247b332db984ee49edc6fd6a071fbecbe2..cd619cd9b9614a3967668747c77bc63cdef5385c 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 1f63514f89ff455242193e9e8366e0c69515af2f..097996f5785dc4afa4a6cbe9ba14d5fbfaa1c97b 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 e816bf69573f664ef8188e9d7fd2b746af6ecdd9..cd228e014b242f30513e5dda2e12445c39b1d1d8 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 0ef88b55b904a38b6443297afd0d2a153c0b7b8b..a57b70f9b19f669587763949f987a1e8b2f52fe4 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 38965a6f044a4cdebe1941b9d0fc93b3988b339d..7029c7987ae98f89b8fd0aee38fb27d4d23a259a 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 1283f47d22f55a7decd6467a939d2adc71d6db8e..4444af33e31533f9b45e9171b1dea201a8ea6474 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 2d3a605cf83c6b36f400e65b505eb64e1193d346..1a800e4f2731e6480703962fd9cc88196cf82d45 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 a0a72159397fbd90bb06b88ec8a12c8cdc3eefc7..51e9445375b2315c0dbab2f756cc196cc999bb2b 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 e93097c45647fc5ed6186735e0a295c0e85a2ec1..4623d212e6d536fb65e9565db66e2594929f6911 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 c9c2f506887ae2e1f093795354f44cac91c7d3d8..d8908b73ffca8f2469964500709fd050813b22d9 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 08914b02bfa73bd47533b57a023fc75643b17afb..91030b9394e035a5fd7b5d992cef045523cd19b3 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 de5f621c9e9e37794c1f5e518f046a08aa5db5a1..3d3b32818aa5aa9edea36037e48597aced0350f8 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 7152a0c94f870b6376e8b700feeb401a0022dfb5..ca46647a43724025041830d47efa5ec4d546420a 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 0928f1ceeebd14644b1fe5a978f817968c559da4..83f5a92f357119c9adea7d3bbdad9b6a38ca4346 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 343d195d202f472f35ba2d217956be37998e8cac..add0c91be999bdc8fae64ebccd5142fcac2a5094 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;