diff --git a/QYZH.InteractiveMagazine.IService/IAdminAuthService.cs b/QYZH.InteractiveMagazine.IService/IAdminAuthService.cs index e136590..8c459be 100644 --- a/QYZH.InteractiveMagazine.IService/IAdminAuthService.cs +++ b/QYZH.InteractiveMagazine.IService/IAdminAuthService.cs @@ -1,4 +1,4 @@ -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; diff --git a/QYZH.InteractiveMagazine.IService/IAdminUserService.cs b/QYZH.InteractiveMagazine.IService/IAdminUserService.cs index 902339a..89ee70d 100644 --- a/QYZH.InteractiveMagazine.IService/IAdminUserService.cs +++ b/QYZH.InteractiveMagazine.IService/IAdminUserService.cs @@ -1,4 +1,4 @@ -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; diff --git a/QYZH.InteractiveMagazine.IService/IUsersService.cs b/QYZH.InteractiveMagazine.IService/IUsersService.cs index 70edd91..a38c67e 100644 --- a/QYZH.InteractiveMagazine.IService/IUsersService.cs +++ b/QYZH.InteractiveMagazine.IService/IUsersService.cs @@ -1,4 +1,4 @@ -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; diff --git a/QYZH.InteractiveMagazine.IService/IWeChatAuthService.cs b/QYZH.InteractiveMagazine.IService/IWeChatAuthService.cs index c868a30..c18b975 100644 --- a/QYZH.InteractiveMagazine.IService/IWeChatAuthService.cs +++ b/QYZH.InteractiveMagazine.IService/IWeChatAuthService.cs @@ -1,5 +1,6 @@ -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Entity; +using QYZH.InteractiveMagazine.Models.WeChat; namespace QYZH.InteractiveMagazine.IService; diff --git a/QYZH.InteractiveMagazine.Models/Dto/UsersDto.cs b/QYZH.InteractiveMagazine.Models/Dto/UsersDto.cs index 50557ca..dd86b74 100644 --- a/QYZH.InteractiveMagazine.Models/Dto/UsersDto.cs +++ b/QYZH.InteractiveMagazine.Models/Dto/UsersDto.cs @@ -1,6 +1,6 @@ using QYZH.InteractiveMagazine.Models.Dto; -namespace QYZH.InteractiveMagazine.IService.Dto; +namespace QYZH.InteractiveMagazine.Models.Dto; /// /// Users查询输入DTO diff --git a/QYZH.InteractiveMagazine.Models/Dto/WeChat/WeChatDto.cs b/QYZH.InteractiveMagazine.Models/Dto/WeChat/WeChatDto.cs index ed5e595..550251c 100644 --- a/QYZH.InteractiveMagazine.Models/Dto/WeChat/WeChatDto.cs +++ b/QYZH.InteractiveMagazine.Models/Dto/WeChat/WeChatDto.cs @@ -1,7 +1,7 @@ using QYZH.InteractiveMagazine.Models.Dto; using Newtonsoft.Json; -namespace QYZH.InteractiveMagazine.IService.Dto; +namespace QYZH.InteractiveMagazine.Models.WeChat; /// /// 微信小程序初次登录输入 diff --git a/QYZH.InteractiveMagazine.Service/AdminAuthService.cs b/QYZH.InteractiveMagazine.Service/AdminAuthService.cs index 3d40684..dcefeab 100644 --- a/QYZH.InteractiveMagazine.Service/AdminAuthService.cs +++ b/QYZH.InteractiveMagazine.Service/AdminAuthService.cs @@ -4,7 +4,7 @@ using Microsoft.Extensions.Logging; using QYZH.InteractiveMagazine.Infrastructure.Auth; using QYZH.InteractiveMagazine.Infrastructure.Cache; using QYZH.InteractiveMagazine.IService; -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Common; using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; diff --git a/QYZH.InteractiveMagazine.Service/AdminUserService.cs b/QYZH.InteractiveMagazine.Service/AdminUserService.cs index 0f27182..ea5b11b 100644 --- a/QYZH.InteractiveMagazine.Service/AdminUserService.cs +++ b/QYZH.InteractiveMagazine.Service/AdminUserService.cs @@ -2,7 +2,7 @@ using System.Linq.Expressions; using BCrypt.Net; using Microsoft.Extensions.Logging; using QYZH.InteractiveMagazine.IService; -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Common; using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; diff --git a/QYZH.InteractiveMagazine.Service/UsersService.cs b/QYZH.InteractiveMagazine.Service/UsersService.cs index 8d785d4..9133ccc 100644 --- a/QYZH.InteractiveMagazine.Service/UsersService.cs +++ b/QYZH.InteractiveMagazine.Service/UsersService.cs @@ -1,6 +1,6 @@ using Microsoft.Extensions.Logging; using QYZH.InteractiveMagazine.IService; -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Common; using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; diff --git a/QYZH.InteractiveMagazine.Service/WeChatAuthService.cs b/QYZH.InteractiveMagazine.Service/WeChatAuthService.cs index 5818e59..7731a32 100644 --- a/QYZH.InteractiveMagazine.Service/WeChatAuthService.cs +++ b/QYZH.InteractiveMagazine.Service/WeChatAuthService.cs @@ -4,10 +4,10 @@ using QYZH.InteractiveMagazine.Common.Helpers; using QYZH.InteractiveMagazine.Infrastructure.Auth; using QYZH.InteractiveMagazine.Infrastructure.Cache; using QYZH.InteractiveMagazine.IService; -using QYZH.InteractiveMagazine.IService.Dto; using QYZH.InteractiveMagazine.Models.Common; using QYZH.InteractiveMagazine.Models.Entity; using QYZH.InteractiveMagazine.Models.Settings; +using QYZH.InteractiveMagazine.Models.WeChat; using QYZH.InteractiveMagazine.Repository; namespace QYZH.InteractiveMagazine.Service; diff --git a/QYZH.InteractiveMagazine.WebApi/Controllers/AdminController.cs b/QYZH.InteractiveMagazine.WebApi/Controllers/AdminController.cs index 608c6e6..c17e3ec 100644 --- a/QYZH.InteractiveMagazine.WebApi/Controllers/AdminController.cs +++ b/QYZH.InteractiveMagazine.WebApi/Controllers/AdminController.cs @@ -1,7 +1,7 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using QYZH.InteractiveMagazine.IService; -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Common; using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Enum; diff --git a/QYZH.InteractiveMagazine.WebApi/Controllers/UsersController.cs b/QYZH.InteractiveMagazine.WebApi/Controllers/UsersController.cs index c3bb78b..5239322 100644 --- a/QYZH.InteractiveMagazine.WebApi/Controllers/UsersController.cs +++ b/QYZH.InteractiveMagazine.WebApi/Controllers/UsersController.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Mvc; using QYZH.InteractiveMagazine.IService; -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Common; using QYZH.InteractiveMagazine.Models.Dto; diff --git a/QYZH.InteractiveMagazine.WebApi/Controllers/WeChat/WeChatAuthController.cs b/QYZH.InteractiveMagazine.WebApi/Controllers/WeChat/WeChatAuthController.cs index d4d51a8..a204ff0 100644 --- a/QYZH.InteractiveMagazine.WebApi/Controllers/WeChat/WeChatAuthController.cs +++ b/QYZH.InteractiveMagazine.WebApi/Controllers/WeChat/WeChatAuthController.cs @@ -1,9 +1,10 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using QYZH.InteractiveMagazine.IService; -using QYZH.InteractiveMagazine.IService.Dto; + using QYZH.InteractiveMagazine.Models.Common; using QYZH.InteractiveMagazine.Models.Dto; +using QYZH.InteractiveMagazine.Models.WeChat; namespace QYZH.InteractiveMagazine.WebApi.Controllers.WeChat;