diff --git a/YD_Event.Application/Api/ApiService.cs b/YD_Event.Application/Api/ApiService.cs index b223cf6..ea07c8e 100644 --- a/YD_Event.Application/Api/ApiService.cs +++ b/YD_Event.Application/Api/ApiService.cs @@ -1,6 +1,6 @@ using Furion.HttpRemote; -namespace Easy.Admin.Application; +namespace YD_Event.Application; /// /// 第三方API调用 diff --git a/YD_Event.Application/Api/Dtos/BaseResponseDto.cs b/YD_Event.Application/Api/Dtos/BaseResponseDto.cs index 54e9b74..86fdada 100644 --- a/YD_Event.Application/Api/Dtos/BaseResponseDto.cs +++ b/YD_Event.Application/Api/Dtos/BaseResponseDto.cs @@ -1,6 +1,6 @@ using System.Text.Json.Serialization; -namespace Easy.Admin.Application; +namespace YD_Event.Application; public class BaseResponseDto { diff --git a/YD_Event.Application/Api/Dtos/KeyowrdsResponseDto.cs b/YD_Event.Application/Api/Dtos/KeyowrdsResponseDto.cs index 56f5869..509d283 100644 --- a/YD_Event.Application/Api/Dtos/KeyowrdsResponseDto.cs +++ b/YD_Event.Application/Api/Dtos/KeyowrdsResponseDto.cs @@ -1,6 +1,6 @@ using System.Text.Json.Serialization; -namespace Easy.Admin.Application; +namespace YD_Event.Application; public class KeywordsResponseDto : BaseResponseDto { diff --git a/YD_Event.Application/Auth/AuthManager.cs b/YD_Event.Application/Auth/AuthManager.cs index 2b0ff4d..4b68705 100644 --- a/YD_Event.Application/Auth/AuthManager.cs +++ b/YD_Event.Application/Auth/AuthManager.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Auth; +namespace YD_Event.Application.Auth; /// /// 用户授权信息 diff --git a/YD_Event.Application/Auth/AuthService.cs b/YD_Event.Application/Auth/AuthService.cs index 74a7a81..92cf0c0 100644 --- a/YD_Event.Application/Auth/AuthService.cs +++ b/YD_Event.Application/Auth/AuthService.cs @@ -1,7 +1,7 @@ -using Easy.Admin.Application.Auth.Dtos; -using Easy.Admin.Application.Config; +using YD_Event.Application.Auth.Dtos; +using YD_Event.Application.Config; -namespace Easy.Admin.Application.Auth; +namespace YD_Event.Application.Auth; /// /// 用户授权 /// diff --git a/YD_Event.Application/Auth/Dtos/AdminLoginInput.cs b/YD_Event.Application/Auth/Dtos/AdminLoginInput.cs index b28d449..3c648be 100644 --- a/YD_Event.Application/Auth/Dtos/AdminLoginInput.cs +++ b/YD_Event.Application/Auth/Dtos/AdminLoginInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Auth.Dtos; +namespace YD_Event.Application.Auth.Dtos; public class AdminLoginInput { diff --git a/YD_Event.Application/BaseService.cs b/YD_Event.Application/BaseService.cs index e008a6a..02d836c 100644 --- a/YD_Event.Application/BaseService.cs +++ b/YD_Event.Application/BaseService.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application; +namespace YD_Event.Application; public abstract class BaseService : IDynamicApiController where TEntity : Entity, ISoftDelete, IAvailability, new() { diff --git a/YD_Event.Application/Blog/AlbumsService.cs b/YD_Event.Application/Blog/AlbumsService.cs index 5a06ef2..1e7a9dd 100644 --- a/YD_Event.Application/Blog/AlbumsService.cs +++ b/YD_Event.Application/Blog/AlbumsService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Blog.Dtos; +using YD_Event.Application.Blog.Dtos; -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 相册管理 /// diff --git a/YD_Event.Application/Blog/ArticleCategoryService.cs b/YD_Event.Application/Blog/ArticleCategoryService.cs index 7083c54..f1f27c6 100644 --- a/YD_Event.Application/Blog/ArticleCategoryService.cs +++ b/YD_Event.Application/Blog/ArticleCategoryService.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 文章所属栏目管理 diff --git a/YD_Event.Application/Blog/ArticleService.cs b/YD_Event.Application/Blog/ArticleService.cs index 8809829..f4ba36d 100644 --- a/YD_Event.Application/Blog/ArticleService.cs +++ b/YD_Event.Application/Blog/ArticleService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Blog.Dtos; +using YD_Event.Application.Blog.Dtos; -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 文章管理 diff --git a/YD_Event.Application/Blog/CategoryService.cs b/YD_Event.Application/Blog/CategoryService.cs index b70603e..d370c51 100644 --- a/YD_Event.Application/Blog/CategoryService.cs +++ b/YD_Event.Application/Blog/CategoryService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Blog.Dtos; +using YD_Event.Application.Blog.Dtos; -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 文章栏目管理 /// diff --git a/YD_Event.Application/Blog/Dtos/AddAlbumsInput.cs b/YD_Event.Application/Blog/Dtos/AddAlbumsInput.cs index be648b7..3de7286 100644 --- a/YD_Event.Application/Blog/Dtos/AddAlbumsInput.cs +++ b/YD_Event.Application/Blog/Dtos/AddAlbumsInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AddAlbumsInput { diff --git a/YD_Event.Application/Blog/Dtos/AddArticleInput.cs b/YD_Event.Application/Blog/Dtos/AddArticleInput.cs index 79f2364..fc9d89a 100644 --- a/YD_Event.Application/Blog/Dtos/AddArticleInput.cs +++ b/YD_Event.Application/Blog/Dtos/AddArticleInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AddArticleInput { diff --git a/YD_Event.Application/Blog/Dtos/AddCategoryInput.cs b/YD_Event.Application/Blog/Dtos/AddCategoryInput.cs index 34c6e9b..db54827 100644 --- a/YD_Event.Application/Blog/Dtos/AddCategoryInput.cs +++ b/YD_Event.Application/Blog/Dtos/AddCategoryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AddCategoryInput { diff --git a/YD_Event.Application/Blog/Dtos/AddFriendLinkInput.cs b/YD_Event.Application/Blog/Dtos/AddFriendLinkInput.cs index b62f2df..e5863eb 100644 --- a/YD_Event.Application/Blog/Dtos/AddFriendLinkInput.cs +++ b/YD_Event.Application/Blog/Dtos/AddFriendLinkInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AddFriendLinkInput { diff --git a/YD_Event.Application/Blog/Dtos/AddPictureInput.cs b/YD_Event.Application/Blog/Dtos/AddPictureInput.cs index 1cbbb94..2d3cb5c 100644 --- a/YD_Event.Application/Blog/Dtos/AddPictureInput.cs +++ b/YD_Event.Application/Blog/Dtos/AddPictureInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AddPictureInput { diff --git a/YD_Event.Application/Blog/Dtos/AddTagInput.cs b/YD_Event.Application/Blog/Dtos/AddTagInput.cs index 2c6bb8e..c398b1b 100644 --- a/YD_Event.Application/Blog/Dtos/AddTagInput.cs +++ b/YD_Event.Application/Blog/Dtos/AddTagInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AddTagInput { diff --git a/YD_Event.Application/Blog/Dtos/AddTalksInput.cs b/YD_Event.Application/Blog/Dtos/AddTalksInput.cs index c572da1..87ee314 100644 --- a/YD_Event.Application/Blog/Dtos/AddTalksInput.cs +++ b/YD_Event.Application/Blog/Dtos/AddTalksInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AddTalksInput { diff --git a/YD_Event.Application/Blog/Dtos/AlbumsPageOutput.cs b/YD_Event.Application/Blog/Dtos/AlbumsPageOutput.cs index a811c85..a3a5c17 100644 --- a/YD_Event.Application/Blog/Dtos/AlbumsPageOutput.cs +++ b/YD_Event.Application/Blog/Dtos/AlbumsPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AlbumsPageOutput { diff --git a/YD_Event.Application/Blog/Dtos/AlbumsPageQueryInput.cs b/YD_Event.Application/Blog/Dtos/AlbumsPageQueryInput.cs index 7f910a5..7eb3bba 100644 --- a/YD_Event.Application/Blog/Dtos/AlbumsPageQueryInput.cs +++ b/YD_Event.Application/Blog/Dtos/AlbumsPageQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class AlbumsPageQueryInput : Pagination { diff --git a/YD_Event.Application/Blog/Dtos/ArticleDetailOutput.cs b/YD_Event.Application/Blog/Dtos/ArticleDetailOutput.cs index 0687467..6f2576d 100644 --- a/YD_Event.Application/Blog/Dtos/ArticleDetailOutput.cs +++ b/YD_Event.Application/Blog/Dtos/ArticleDetailOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class ArticleDetailOutput { diff --git a/YD_Event.Application/Blog/Dtos/ArticlePageOutput.cs b/YD_Event.Application/Blog/Dtos/ArticlePageOutput.cs index 070f351..a0cd46f 100644 --- a/YD_Event.Application/Blog/Dtos/ArticlePageOutput.cs +++ b/YD_Event.Application/Blog/Dtos/ArticlePageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class ArticlePageOutput { diff --git a/YD_Event.Application/Blog/Dtos/ArticlePageQueryInput.cs b/YD_Event.Application/Blog/Dtos/ArticlePageQueryInput.cs index 031fdb3..9ff66f2 100644 --- a/YD_Event.Application/Blog/Dtos/ArticlePageQueryInput.cs +++ b/YD_Event.Application/Blog/Dtos/ArticlePageQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class ArticlePageQueryInput : Pagination { diff --git a/YD_Event.Application/Blog/Dtos/BatchAddPictureInput.cs b/YD_Event.Application/Blog/Dtos/BatchAddPictureInput.cs index 976ac00..3e24ffc 100644 --- a/YD_Event.Application/Blog/Dtos/BatchAddPictureInput.cs +++ b/YD_Event.Application/Blog/Dtos/BatchAddPictureInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class BatchAddPictureInput { diff --git a/YD_Event.Application/Blog/Dtos/CategoryPageOutput.cs b/YD_Event.Application/Blog/Dtos/CategoryPageOutput.cs index 67042f0..4af7326 100644 --- a/YD_Event.Application/Blog/Dtos/CategoryPageOutput.cs +++ b/YD_Event.Application/Blog/Dtos/CategoryPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class CategoryPageOutput { diff --git a/YD_Event.Application/Blog/Dtos/FriendLinkPageOutput.cs b/YD_Event.Application/Blog/Dtos/FriendLinkPageOutput.cs index dd9cd9d..e55ecba 100644 --- a/YD_Event.Application/Blog/Dtos/FriendLinkPageOutput.cs +++ b/YD_Event.Application/Blog/Dtos/FriendLinkPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class FriendLinkPageOutput { diff --git a/YD_Event.Application/Blog/Dtos/FriendLinkPageQueryInput.cs b/YD_Event.Application/Blog/Dtos/FriendLinkPageQueryInput.cs index 88f060b..6fabd19 100644 --- a/YD_Event.Application/Blog/Dtos/FriendLinkPageQueryInput.cs +++ b/YD_Event.Application/Blog/Dtos/FriendLinkPageQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class FriendLinkPageQueryInput : Pagination { diff --git a/YD_Event.Application/Blog/Dtos/Mapper.cs b/YD_Event.Application/Blog/Dtos/Mapper.cs index 2721a3e..ef41151 100644 --- a/YD_Event.Application/Blog/Dtos/Mapper.cs +++ b/YD_Event.Application/Blog/Dtos/Mapper.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class Mapper : IRegister { diff --git a/YD_Event.Application/Blog/Dtos/PicturesPageOutput.cs b/YD_Event.Application/Blog/Dtos/PicturesPageOutput.cs index 13ae903..a536f55 100644 --- a/YD_Event.Application/Blog/Dtos/PicturesPageOutput.cs +++ b/YD_Event.Application/Blog/Dtos/PicturesPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class PicturesPageOutput { diff --git a/YD_Event.Application/Blog/Dtos/PicturesPageQueryInput.cs b/YD_Event.Application/Blog/Dtos/PicturesPageQueryInput.cs index b28567f..cf22004 100644 --- a/YD_Event.Application/Blog/Dtos/PicturesPageQueryInput.cs +++ b/YD_Event.Application/Blog/Dtos/PicturesPageQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class PicturesPageQueryInput : Pagination { diff --git a/YD_Event.Application/Blog/Dtos/TagsPageOutput.cs b/YD_Event.Application/Blog/Dtos/TagsPageOutput.cs index 2147a8e..172b4cb 100644 --- a/YD_Event.Application/Blog/Dtos/TagsPageOutput.cs +++ b/YD_Event.Application/Blog/Dtos/TagsPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class TagsPageOutput { diff --git a/YD_Event.Application/Blog/Dtos/TagsQueryInput.cs b/YD_Event.Application/Blog/Dtos/TagsQueryInput.cs index 66a31b3..a0c05b6 100644 --- a/YD_Event.Application/Blog/Dtos/TagsQueryInput.cs +++ b/YD_Event.Application/Blog/Dtos/TagsQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class TagsPageQueryInput : Pagination { diff --git a/YD_Event.Application/Blog/Dtos/TalksPageOutput.cs b/YD_Event.Application/Blog/Dtos/TalksPageOutput.cs index 12b315e..9062f2a 100644 --- a/YD_Event.Application/Blog/Dtos/TalksPageOutput.cs +++ b/YD_Event.Application/Blog/Dtos/TalksPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class TalksPageOutput { diff --git a/YD_Event.Application/Blog/Dtos/TalksPageQueryInput.cs b/YD_Event.Application/Blog/Dtos/TalksPageQueryInput.cs index 3526b03..4966e8b 100644 --- a/YD_Event.Application/Blog/Dtos/TalksPageQueryInput.cs +++ b/YD_Event.Application/Blog/Dtos/TalksPageQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class TalksPageQueryInput : Pagination { diff --git a/YD_Event.Application/Blog/Dtos/UpdateAlbumsInput.cs b/YD_Event.Application/Blog/Dtos/UpdateAlbumsInput.cs index 1385371..2f6ef43 100644 --- a/YD_Event.Application/Blog/Dtos/UpdateAlbumsInput.cs +++ b/YD_Event.Application/Blog/Dtos/UpdateAlbumsInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class UpdateAlbumsInput : AddAlbumsInput { diff --git a/YD_Event.Application/Blog/Dtos/UpdateArticleInput.cs b/YD_Event.Application/Blog/Dtos/UpdateArticleInput.cs index f318059..5da0ddd 100644 --- a/YD_Event.Application/Blog/Dtos/UpdateArticleInput.cs +++ b/YD_Event.Application/Blog/Dtos/UpdateArticleInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class UpdateArticleInput : AddArticleInput { diff --git a/YD_Event.Application/Blog/Dtos/UpdateCategoryInput.cs b/YD_Event.Application/Blog/Dtos/UpdateCategoryInput.cs index e1ba792..efaa784 100644 --- a/YD_Event.Application/Blog/Dtos/UpdateCategoryInput.cs +++ b/YD_Event.Application/Blog/Dtos/UpdateCategoryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class UpdateCategoryInput : AddCategoryInput { diff --git a/YD_Event.Application/Blog/Dtos/UpdateFriendLinkInput.cs b/YD_Event.Application/Blog/Dtos/UpdateFriendLinkInput.cs index 80335c9..b98ccf8 100644 --- a/YD_Event.Application/Blog/Dtos/UpdateFriendLinkInput.cs +++ b/YD_Event.Application/Blog/Dtos/UpdateFriendLinkInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class UpdateFriendLinkInput : AddFriendLinkInput { diff --git a/YD_Event.Application/Blog/Dtos/UpdateTagInput.cs b/YD_Event.Application/Blog/Dtos/UpdateTagInput.cs index 78237c9..684bd8b 100644 --- a/YD_Event.Application/Blog/Dtos/UpdateTagInput.cs +++ b/YD_Event.Application/Blog/Dtos/UpdateTagInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class UpdateTagInput : AddTagInput { diff --git a/YD_Event.Application/Blog/Dtos/UpdateTalksInput.cs b/YD_Event.Application/Blog/Dtos/UpdateTalksInput.cs index 684adbc..5eb98c0 100644 --- a/YD_Event.Application/Blog/Dtos/UpdateTalksInput.cs +++ b/YD_Event.Application/Blog/Dtos/UpdateTalksInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Blog.Dtos; +namespace YD_Event.Application.Blog.Dtos; public class UpdateTalksInput : AddTalksInput { diff --git a/YD_Event.Application/Blog/FriendLinkService.cs b/YD_Event.Application/Blog/FriendLinkService.cs index a7f2adb..8b5ab6d 100644 --- a/YD_Event.Application/Blog/FriendLinkService.cs +++ b/YD_Event.Application/Blog/FriendLinkService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Blog.Dtos; +using YD_Event.Application.Blog.Dtos; -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 友情链接 diff --git a/YD_Event.Application/Blog/PicturesService.cs b/YD_Event.Application/Blog/PicturesService.cs index d69302d..8a017df 100644 --- a/YD_Event.Application/Blog/PicturesService.cs +++ b/YD_Event.Application/Blog/PicturesService.cs @@ -1,7 +1,7 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Blog.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Blog.Dtos; -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 相册图片管理 diff --git a/YD_Event.Application/Blog/TagsService.cs b/YD_Event.Application/Blog/TagsService.cs index e68a75b..d35a96c 100644 --- a/YD_Event.Application/Blog/TagsService.cs +++ b/YD_Event.Application/Blog/TagsService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Blog.Dtos; +using YD_Event.Application.Blog.Dtos; -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 文章标签管理 diff --git a/YD_Event.Application/Blog/TalksService.cs b/YD_Event.Application/Blog/TalksService.cs index 96d571a..887d639 100644 --- a/YD_Event.Application/Blog/TalksService.cs +++ b/YD_Event.Application/Blog/TalksService.cs @@ -1,7 +1,7 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Blog.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Blog.Dtos; -namespace Easy.Admin.Application.Blog; +namespace YD_Event.Application.Blog; /// /// 说说管理 diff --git a/YD_Event.Application/Client/AlbumsController.cs b/YD_Event.Application/Client/AlbumsController.cs index a96f103..f4ee1a0 100644 --- a/YD_Event.Application/Client/AlbumsController.cs +++ b/YD_Event.Application/Client/AlbumsController.cs @@ -1,7 +1,7 @@ -using Easy.Admin.Application.Client.Dtos; +using YD_Event.Application.Client.Dtos; using Furion.UnifyResult; -namespace Easy.Admin.Application.Client; +namespace YD_Event.Application.Client; /// /// 相册 diff --git a/YD_Event.Application/Client/AppController.cs b/YD_Event.Application/Client/AppController.cs index d10a6ea..4a72fe8 100644 --- a/YD_Event.Application/Client/AppController.cs +++ b/YD_Event.Application/Client/AppController.cs @@ -1,8 +1,8 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Client.Dtos; -using Easy.Admin.Application.Config; +using YD_Event.Application.Auth; +using YD_Event.Application.Client.Dtos; +using YD_Event.Application.Config; -namespace Easy.Admin.Application.Client; +namespace YD_Event.Application.Client; /// /// 博客基本信息 /// diff --git a/YD_Event.Application/Client/ArticleController.cs b/YD_Event.Application/Client/ArticleController.cs index c02390b..8d63a8d 100644 --- a/YD_Event.Application/Client/ArticleController.cs +++ b/YD_Event.Application/Client/ArticleController.cs @@ -1,8 +1,8 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Client.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Client.Dtos; using Furion.UnifyResult; -namespace Easy.Admin.Application.Client; +namespace YD_Event.Application.Client; /// /// 博客文章 /// diff --git a/YD_Event.Application/Client/CommentController.cs b/YD_Event.Application/Client/CommentController.cs index a8ebaa3..54ad976 100644 --- a/YD_Event.Application/Client/CommentController.cs +++ b/YD_Event.Application/Client/CommentController.cs @@ -1,7 +1,7 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Client.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Client.Dtos; -namespace Easy.Admin.Application.Client; +namespace YD_Event.Application.Client; /// /// 评论 diff --git a/YD_Event.Application/Client/Dtos/AddCommentInput.cs b/YD_Event.Application/Client/Dtos/AddCommentInput.cs index 740bb13..45b60a2 100644 --- a/YD_Event.Application/Client/Dtos/AddCommentInput.cs +++ b/YD_Event.Application/Client/Dtos/AddCommentInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class AddCommentInput { diff --git a/YD_Event.Application/Client/Dtos/AddLinkOutput.cs b/YD_Event.Application/Client/Dtos/AddLinkOutput.cs index 6f74cf1..6077356 100644 --- a/YD_Event.Application/Client/Dtos/AddLinkOutput.cs +++ b/YD_Event.Application/Client/Dtos/AddLinkOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class AddLinkOutput { diff --git a/YD_Event.Application/Client/Dtos/AlbumsOutput.cs b/YD_Event.Application/Client/Dtos/AlbumsOutput.cs index 3f5f2ee..2f2ee96 100644 --- a/YD_Event.Application/Client/Dtos/AlbumsOutput.cs +++ b/YD_Event.Application/Client/Dtos/AlbumsOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class AlbumsOutput { diff --git a/YD_Event.Application/Client/Dtos/ArticleBasicsOutput.cs b/YD_Event.Application/Client/Dtos/ArticleBasicsOutput.cs index c1b8e54..15e5ef4 100644 --- a/YD_Event.Application/Client/Dtos/ArticleBasicsOutput.cs +++ b/YD_Event.Application/Client/Dtos/ArticleBasicsOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class ArticleBasicsOutput { diff --git a/YD_Event.Application/Client/Dtos/ArticleInfoOutput.cs b/YD_Event.Application/Client/Dtos/ArticleInfoOutput.cs index cc4af01..d7b19b6 100644 --- a/YD_Event.Application/Client/Dtos/ArticleInfoOutput.cs +++ b/YD_Event.Application/Client/Dtos/ArticleInfoOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class ArticleInfoOutput { diff --git a/YD_Event.Application/Client/Dtos/ArticleListQueryInput.cs b/YD_Event.Application/Client/Dtos/ArticleListQueryInput.cs index e90892b..435cdfa 100644 --- a/YD_Event.Application/Client/Dtos/ArticleListQueryInput.cs +++ b/YD_Event.Application/Client/Dtos/ArticleListQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class ArticleListQueryInput : Pagination { diff --git a/YD_Event.Application/Client/Dtos/ArticleOutput.cs b/YD_Event.Application/Client/Dtos/ArticleOutput.cs index a46217e..7d6c4c5 100644 --- a/YD_Event.Application/Client/Dtos/ArticleOutput.cs +++ b/YD_Event.Application/Client/Dtos/ArticleOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class ArticleOutput { diff --git a/YD_Event.Application/Client/Dtos/ArticleReportOutput.cs b/YD_Event.Application/Client/Dtos/ArticleReportOutput.cs index 9c76dd5..f922ae0 100644 --- a/YD_Event.Application/Client/Dtos/ArticleReportOutput.cs +++ b/YD_Event.Application/Client/Dtos/ArticleReportOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class ArticleReportOutput { diff --git a/YD_Event.Application/Client/Dtos/BlogOutput.cs b/YD_Event.Application/Client/Dtos/BlogOutput.cs index cb5698e..25fe8b3 100644 --- a/YD_Event.Application/Client/Dtos/BlogOutput.cs +++ b/YD_Event.Application/Client/Dtos/BlogOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class BlogOutput { diff --git a/YD_Event.Application/Client/Dtos/CategoryOutput.cs b/YD_Event.Application/Client/Dtos/CategoryOutput.cs index 56e76cb..0b3c655 100644 --- a/YD_Event.Application/Client/Dtos/CategoryOutput.cs +++ b/YD_Event.Application/Client/Dtos/CategoryOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class CategoryOutput { diff --git a/YD_Event.Application/Client/Dtos/CommentOutput.cs b/YD_Event.Application/Client/Dtos/CommentOutput.cs index d86aa85..81ae722 100644 --- a/YD_Event.Application/Client/Dtos/CommentOutput.cs +++ b/YD_Event.Application/Client/Dtos/CommentOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class CommentOutput { diff --git a/YD_Event.Application/Client/Dtos/CommentPageQueryInput.cs b/YD_Event.Application/Client/Dtos/CommentPageQueryInput.cs index 11369c1..1c9fe39 100644 --- a/YD_Event.Application/Client/Dtos/CommentPageQueryInput.cs +++ b/YD_Event.Application/Client/Dtos/CommentPageQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class CommentPageQueryInput : Pagination { diff --git a/YD_Event.Application/Client/Dtos/FriendLinkOutput.cs b/YD_Event.Application/Client/Dtos/FriendLinkOutput.cs index 92c1235..8f46182 100644 --- a/YD_Event.Application/Client/Dtos/FriendLinkOutput.cs +++ b/YD_Event.Application/Client/Dtos/FriendLinkOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class FriendLinkOutput { diff --git a/YD_Event.Application/Client/Dtos/OAuthAccountDetailOutput.cs b/YD_Event.Application/Client/Dtos/OAuthAccountDetailOutput.cs index 0d22032..f9957ee 100644 --- a/YD_Event.Application/Client/Dtos/OAuthAccountDetailOutput.cs +++ b/YD_Event.Application/Client/Dtos/OAuthAccountDetailOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class OAuthAccountDetailOutput { diff --git a/YD_Event.Application/Client/Dtos/PictureOutput.cs b/YD_Event.Application/Client/Dtos/PictureOutput.cs index 69d6bf3..a46a0a6 100644 --- a/YD_Event.Application/Client/Dtos/PictureOutput.cs +++ b/YD_Event.Application/Client/Dtos/PictureOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class PictureOutput { diff --git a/YD_Event.Application/Client/Dtos/PicturesQueryInput.cs b/YD_Event.Application/Client/Dtos/PicturesQueryInput.cs index 25982ce..24c7d79 100644 --- a/YD_Event.Application/Client/Dtos/PicturesQueryInput.cs +++ b/YD_Event.Application/Client/Dtos/PicturesQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class PicturesQueryInput : Pagination { diff --git a/YD_Event.Application/Client/Dtos/ReplyOutput.cs b/YD_Event.Application/Client/Dtos/ReplyOutput.cs index be25487..dcd8893 100644 --- a/YD_Event.Application/Client/Dtos/ReplyOutput.cs +++ b/YD_Event.Application/Client/Dtos/ReplyOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class ReplyOutput { diff --git a/YD_Event.Application/Client/Dtos/TagsOutput.cs b/YD_Event.Application/Client/Dtos/TagsOutput.cs index 3d86bd3..b422897 100644 --- a/YD_Event.Application/Client/Dtos/TagsOutput.cs +++ b/YD_Event.Application/Client/Dtos/TagsOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class TagsOutput { diff --git a/YD_Event.Application/Client/Dtos/TalkDetailOutput.cs b/YD_Event.Application/Client/Dtos/TalkDetailOutput.cs index c148a7e..0188a96 100644 --- a/YD_Event.Application/Client/Dtos/TalkDetailOutput.cs +++ b/YD_Event.Application/Client/Dtos/TalkDetailOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class TalkDetailOutput : TalksOutput { diff --git a/YD_Event.Application/Client/Dtos/TalksOutput.cs b/YD_Event.Application/Client/Dtos/TalksOutput.cs index 9c6020a..17533d4 100644 --- a/YD_Event.Application/Client/Dtos/TalksOutput.cs +++ b/YD_Event.Application/Client/Dtos/TalksOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Client.Dtos; +namespace YD_Event.Application.Client.Dtos; public class TalksOutput { diff --git a/YD_Event.Application/Client/OAuthController.cs b/YD_Event.Application/Client/OAuthController.cs index 2057598..b25b693 100644 --- a/YD_Event.Application/Client/OAuthController.cs +++ b/YD_Event.Application/Client/OAuthController.cs @@ -1,8 +1,8 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Client.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Client.Dtos; using MrHuo.OAuth.QQ; -namespace Easy.Admin.Application.Client; +namespace YD_Event.Application.Client; /// /// 第三方授权登录 /// diff --git a/YD_Event.Application/Client/TalksController.cs b/YD_Event.Application/Client/TalksController.cs index b0d5224..7de40e7 100644 --- a/YD_Event.Application/Client/TalksController.cs +++ b/YD_Event.Application/Client/TalksController.cs @@ -1,7 +1,7 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Client.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Client.Dtos; -namespace Easy.Admin.Application.Client; +namespace YD_Event.Application.Client; /// /// 博客说说 diff --git a/YD_Event.Application/Config/CustomConfigItemService.cs b/YD_Event.Application/Config/CustomConfigItemService.cs index 0c1b2c9..8776bb2 100644 --- a/YD_Event.Application/Config/CustomConfigItemService.cs +++ b/YD_Event.Application/Config/CustomConfigItemService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Config.Dtos; +using YD_Event.Application.Config.Dtos; -namespace Easy.Admin.Application.Config; +namespace YD_Event.Application.Config; /// /// 自定义配置项 diff --git a/YD_Event.Application/Config/CustomConfigService.cs b/YD_Event.Application/Config/CustomConfigService.cs index 998a56c..babc05d 100644 --- a/YD_Event.Application/Config/CustomConfigService.cs +++ b/YD_Event.Application/Config/CustomConfigService.cs @@ -1,9 +1,9 @@ -using Easy.Admin.Application.Config.Dtos; +using YD_Event.Application.Config.Dtos; using Furion.ViewEngine; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Hosting; -namespace Easy.Admin.Application.Config; +namespace YD_Event.Application.Config; /// /// 自定义配置业务 @@ -252,7 +252,7 @@ public class CustomConfigService : BaseService, ITransient string className = await _customConfigRepository.AsQueryable().Where(x => x.Id == dto.Id).Select(x => x.Code).FirstAsync(); if (className == null) throw Oops.Oh("无效参数"); - string path = Path.Combine(_environment.ContentRootPath.Replace(_environment.ApplicationName, ""), "Easy.Admin.Core/Config", $"{className}.cs"); + string path = Path.Combine(_environment.ContentRootPath.Replace(_environment.ApplicationName, ""), "YD_Event.Core/Config", $"{className}.cs"); if (System.IO.File.Exists(path)) { System.IO.File.Delete(path); @@ -349,7 +349,7 @@ public class CustomConfigService : BaseService, ITransient string template = @" using System; using System.Collections.Generic; -namespace Easy.Admin.Core.Config; +namespace YD_Event.Core.Config; public class @Model.ClassName {@foreach(var item in Model.Items) { @@ -359,7 +359,7 @@ public class @Model.ClassName } "; string content = await _viewEngine.RunCompileFromCachedAsync(template, new { ClassName = className, Items = fields }); - string path = Path.Combine(_environment.ContentRootPath.Replace(_environment.ApplicationName, ""), "Easy.Admin.Core/Config"); + string path = Path.Combine(_environment.ContentRootPath.Replace(_environment.ApplicationName, ""), "YD_Event.Core/Config"); if (!Directory.Exists(path)) { Directory.CreateDirectory(path); diff --git a/YD_Event.Application/Config/Dtos/AddCustomConfigInput.cs b/YD_Event.Application/Config/Dtos/AddCustomConfigInput.cs index 3d64b78..dbe5b4d 100644 --- a/YD_Event.Application/Config/Dtos/AddCustomConfigInput.cs +++ b/YD_Event.Application/Config/Dtos/AddCustomConfigInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class AddCustomConfigInput { diff --git a/YD_Event.Application/Config/Dtos/AddCustomConfigItemInput.cs b/YD_Event.Application/Config/Dtos/AddCustomConfigItemInput.cs index 6fe8938..aa8ce06 100644 --- a/YD_Event.Application/Config/Dtos/AddCustomConfigItemInput.cs +++ b/YD_Event.Application/Config/Dtos/AddCustomConfigItemInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class AddCustomConfigItemInput { diff --git a/YD_Event.Application/Config/Dtos/CustomConfigDetailOutput.cs b/YD_Event.Application/Config/Dtos/CustomConfigDetailOutput.cs index 76d3449..3236996 100644 --- a/YD_Event.Application/Config/Dtos/CustomConfigDetailOutput.cs +++ b/YD_Event.Application/Config/Dtos/CustomConfigDetailOutput.cs @@ -1,6 +1,6 @@ using Newtonsoft.Json.Linq; -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class CustomConfigDetailOutput { diff --git a/YD_Event.Application/Config/Dtos/CustomConfigItemQueryInput.cs b/YD_Event.Application/Config/Dtos/CustomConfigItemQueryInput.cs index 1049922..a722c25 100644 --- a/YD_Event.Application/Config/Dtos/CustomConfigItemQueryInput.cs +++ b/YD_Event.Application/Config/Dtos/CustomConfigItemQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class CustomConfigItemQueryInput : Pagination { diff --git a/YD_Event.Application/Config/Dtos/CustomConfigPageOutput.cs b/YD_Event.Application/Config/Dtos/CustomConfigPageOutput.cs index d8e9d74..faf84ca 100644 --- a/YD_Event.Application/Config/Dtos/CustomConfigPageOutput.cs +++ b/YD_Event.Application/Config/Dtos/CustomConfigPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class CustomConfigPageOutput { diff --git a/YD_Event.Application/Config/Dtos/CustomConfigQueryInput.cs b/YD_Event.Application/Config/Dtos/CustomConfigQueryInput.cs index c44d080..6227ca8 100644 --- a/YD_Event.Application/Config/Dtos/CustomConfigQueryInput.cs +++ b/YD_Event.Application/Config/Dtos/CustomConfigQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class CustomConfigQueryInput : Pagination { diff --git a/YD_Event.Application/Config/Dtos/CustomConfigSetJsonInput.cs b/YD_Event.Application/Config/Dtos/CustomConfigSetJsonInput.cs index 1bea11f..9ac90ff 100644 --- a/YD_Event.Application/Config/Dtos/CustomConfigSetJsonInput.cs +++ b/YD_Event.Application/Config/Dtos/CustomConfigSetJsonInput.cs @@ -1,6 +1,6 @@ using Newtonsoft.Json.Linq; -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class CustomConfigSetJsonInput { diff --git a/YD_Event.Application/Config/Dtos/CustomControl.cs b/YD_Event.Application/Config/Dtos/CustomControl.cs index 3aa2d23..66c8919 100644 --- a/YD_Event.Application/Config/Dtos/CustomControl.cs +++ b/YD_Event.Application/Config/Dtos/CustomControl.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class CustomControl { diff --git a/YD_Event.Application/Config/Dtos/UpdateCustomConfigInput.cs b/YD_Event.Application/Config/Dtos/UpdateCustomConfigInput.cs index ac535d8..a6a9790 100644 --- a/YD_Event.Application/Config/Dtos/UpdateCustomConfigInput.cs +++ b/YD_Event.Application/Config/Dtos/UpdateCustomConfigInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class UpdateCustomConfigInput : AddCustomConfigInput { diff --git a/YD_Event.Application/Config/Dtos/UpdateCustomConfigItemInput.cs b/YD_Event.Application/Config/Dtos/UpdateCustomConfigItemInput.cs index 0a22e4d..ef0457a 100644 --- a/YD_Event.Application/Config/Dtos/UpdateCustomConfigItemInput.cs +++ b/YD_Event.Application/Config/Dtos/UpdateCustomConfigItemInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Config.Dtos; +namespace YD_Event.Application.Config.Dtos; public class UpdateCustomConfigItemInput : AddCustomConfigItemInput { diff --git a/YD_Event.Application/File/Dtos/UploadFileOutput.cs b/YD_Event.Application/File/Dtos/UploadFileOutput.cs index 5c84ac0..641291e 100644 --- a/YD_Event.Application/File/Dtos/UploadFileOutput.cs +++ b/YD_Event.Application/File/Dtos/UploadFileOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.File.Dtos; +namespace YD_Event.Application.File.Dtos; public class UploadFileOutput { diff --git a/YD_Event.Application/File/FileService.cs b/YD_Event.Application/File/FileService.cs index a938791..686c926 100644 --- a/YD_Event.Application/File/FileService.cs +++ b/YD_Event.Application/File/FileService.cs @@ -1,10 +1,10 @@ -using Easy.Admin.Application.File.Dtos; -using Easy.Admin.Core.Options; +using YD_Event.Application.File.Dtos; +using YD_Event.Core.Options; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Options; using OnceMi.AspNetCore.OSS; -namespace Easy.Admin.Application.File; +namespace YD_Event.Application.File; public class FileService : IDynamicApiController, ITransient { diff --git a/YD_Event.Application/GlobalUsings.cs b/YD_Event.Application/GlobalUsings.cs index b2dc896..c8b7534 100644 --- a/YD_Event.Application/GlobalUsings.cs +++ b/YD_Event.Application/GlobalUsings.cs @@ -13,19 +13,19 @@ global using Microsoft.AspNetCore.Mvc; global using Microsoft.CodeAnalysis; global using System.ComponentModel.DataAnnotations; global using SqlSugar; -global using Easy.Admin.Core.Entities; +global using YD_Event.Core.Entities; global using Yitter.IdGenerator; -global using Easy.Admin.Core.Enum; +global using YD_Event.Core.Enum; global using Easy.Core; global using System.Linq; global using Furion.DatabaseAccessor; global using System.ComponentModel; -global using Easy.Admin.Core.Shared; +global using YD_Event.Core.Shared; global using EasyCaching.Core; -global using Easy.Admin.Core.Const; +global using YD_Event.Core.Const; global using Lazy.Captcha.Core; global using System.Collections; global using Newtonsoft.Json; global using Newtonsoft.Json.Linq; global using System.Text.RegularExpressions; -global using Easy.Admin.Core.Config; \ No newline at end of file +global using YD_Event.Core.Config; \ No newline at end of file diff --git a/YD_Event.Application/Logging/Dtos/LogPageQueryInput.cs b/YD_Event.Application/Logging/Dtos/LogPageQueryInput.cs index 5dea1a2..60f2ff0 100644 --- a/YD_Event.Application/Logging/Dtos/LogPageQueryInput.cs +++ b/YD_Event.Application/Logging/Dtos/LogPageQueryInput.cs @@ -1,6 +1,6 @@ using Microsoft.Extensions.Logging; -namespace Easy.Admin.Application.Logging.Dtos; +namespace YD_Event.Application.Logging.Dtos; public class LogPageQueryInput : Pagination { diff --git a/YD_Event.Application/Logging/Dtos/OperationLogPageOutput.cs b/YD_Event.Application/Logging/Dtos/OperationLogPageOutput.cs index 024bebf..8bd4eab 100644 --- a/YD_Event.Application/Logging/Dtos/OperationLogPageOutput.cs +++ b/YD_Event.Application/Logging/Dtos/OperationLogPageOutput.cs @@ -1,6 +1,6 @@ using Microsoft.Extensions.Logging; -namespace Easy.Admin.Application.Logging.Dtos; +namespace YD_Event.Application.Logging.Dtos; public class OperationLogPageOutput { diff --git a/YD_Event.Application/Logging/Dtos/SigninLogPageOutput.cs b/YD_Event.Application/Logging/Dtos/SigninLogPageOutput.cs index 950db49..f80539e 100644 --- a/YD_Event.Application/Logging/Dtos/SigninLogPageOutput.cs +++ b/YD_Event.Application/Logging/Dtos/SigninLogPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Logging.Dtos; +namespace YD_Event.Application.Logging.Dtos; public class SigninLogPageOutput { diff --git a/YD_Event.Application/Logging/SysOperationLogService.cs b/YD_Event.Application/Logging/SysOperationLogService.cs index 844ac7c..7f2d698 100644 --- a/YD_Event.Application/Logging/SysOperationLogService.cs +++ b/YD_Event.Application/Logging/SysOperationLogService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Logging.Dtos; +using YD_Event.Application.Logging.Dtos; -namespace Easy.Admin.Application.Logging; +namespace YD_Event.Application.Logging; /// /// 操作日志 /// diff --git a/YD_Event.Application/Logging/SysSigninLogService.cs b/YD_Event.Application/Logging/SysSigninLogService.cs index e5c596e..66920e2 100644 --- a/YD_Event.Application/Logging/SysSigninLogService.cs +++ b/YD_Event.Application/Logging/SysSigninLogService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Logging.Dtos; +using YD_Event.Application.Logging.Dtos; -namespace Easy.Admin.Application.Logging; +namespace YD_Event.Application.Logging; /// /// 登录日志 /// diff --git a/YD_Event.Application/Menu/Dtos/AddSysMenuInput.cs b/YD_Event.Application/Menu/Dtos/AddSysMenuInput.cs index 6bd6da6..2954260 100644 --- a/YD_Event.Application/Menu/Dtos/AddSysMenuInput.cs +++ b/YD_Event.Application/Menu/Dtos/AddSysMenuInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class AddSysMenuInput { diff --git a/YD_Event.Application/Menu/Dtos/CheckPermissionOutput.cs b/YD_Event.Application/Menu/Dtos/CheckPermissionOutput.cs index 3a89efa..5076af9 100644 --- a/YD_Event.Application/Menu/Dtos/CheckPermissionOutput.cs +++ b/YD_Event.Application/Menu/Dtos/CheckPermissionOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class CheckPermissionOutput { diff --git a/YD_Event.Application/Menu/Dtos/Mapper.cs b/YD_Event.Application/Menu/Dtos/Mapper.cs index e75b03a..39a9597 100644 --- a/YD_Event.Application/Menu/Dtos/Mapper.cs +++ b/YD_Event.Application/Menu/Dtos/Mapper.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class Mapper : IRegister { diff --git a/YD_Event.Application/Menu/Dtos/RouterMetaOutput.cs b/YD_Event.Application/Menu/Dtos/RouterMetaOutput.cs index ffcfdf9..36d44f4 100644 --- a/YD_Event.Application/Menu/Dtos/RouterMetaOutput.cs +++ b/YD_Event.Application/Menu/Dtos/RouterMetaOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class RouterMetaOutput { diff --git a/YD_Event.Application/Menu/Dtos/RouterOutput.cs b/YD_Event.Application/Menu/Dtos/RouterOutput.cs index ea8cc5d..ebaac4f 100644 --- a/YD_Event.Application/Menu/Dtos/RouterOutput.cs +++ b/YD_Event.Application/Menu/Dtos/RouterOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class RouterOutput { diff --git a/YD_Event.Application/Menu/Dtos/SysMenuDetailOutput.cs b/YD_Event.Application/Menu/Dtos/SysMenuDetailOutput.cs index 84f191c..1287f0b 100644 --- a/YD_Event.Application/Menu/Dtos/SysMenuDetailOutput.cs +++ b/YD_Event.Application/Menu/Dtos/SysMenuDetailOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class SysMenuDetailOutput { diff --git a/YD_Event.Application/Menu/Dtos/SysMenuPageOutput.cs b/YD_Event.Application/Menu/Dtos/SysMenuPageOutput.cs index ab14bb6..b55e0ea 100644 --- a/YD_Event.Application/Menu/Dtos/SysMenuPageOutput.cs +++ b/YD_Event.Application/Menu/Dtos/SysMenuPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class SysMenuPageOutput { diff --git a/YD_Event.Application/Menu/Dtos/UpdateSysMenuInput.cs b/YD_Event.Application/Menu/Dtos/UpdateSysMenuInput.cs index e9779fb..9dfc320 100644 --- a/YD_Event.Application/Menu/Dtos/UpdateSysMenuInput.cs +++ b/YD_Event.Application/Menu/Dtos/UpdateSysMenuInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Menu.Dtos; +namespace YD_Event.Application.Menu.Dtos; public class UpdateSysMenuInput : AddSysMenuInput { diff --git a/YD_Event.Application/Menu/SysMenuService.cs b/YD_Event.Application/Menu/SysMenuService.cs index 75d2582..f28a1f6 100644 --- a/YD_Event.Application/Menu/SysMenuService.cs +++ b/YD_Event.Application/Menu/SysMenuService.cs @@ -1,8 +1,8 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Menu.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Menu.Dtos; using Microsoft.OpenApi; -namespace Easy.Admin.Application.Menu; +namespace YD_Event.Application.Menu; /// /// 系统菜单管理 /// diff --git a/YD_Event.Application/Organization/Dtos/AddOrgInput.cs b/YD_Event.Application/Organization/Dtos/AddOrgInput.cs index 62fec06..e550000 100644 --- a/YD_Event.Application/Organization/Dtos/AddOrgInput.cs +++ b/YD_Event.Application/Organization/Dtos/AddOrgInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Organization.Dtos; +namespace YD_Event.Application.Organization.Dtos; public class AddOrgInput { diff --git a/YD_Event.Application/Organization/Dtos/Mapper.cs b/YD_Event.Application/Organization/Dtos/Mapper.cs index 1f9cfde..459f8c5 100644 --- a/YD_Event.Application/Organization/Dtos/Mapper.cs +++ b/YD_Event.Application/Organization/Dtos/Mapper.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Organization.Dtos; +namespace YD_Event.Application.Organization.Dtos; public class Mapper : IRegister { diff --git a/YD_Event.Application/Organization/Dtos/SysOrgPageOutput.cs b/YD_Event.Application/Organization/Dtos/SysOrgPageOutput.cs index 40ddbd2..64cfcd1 100644 --- a/YD_Event.Application/Organization/Dtos/SysOrgPageOutput.cs +++ b/YD_Event.Application/Organization/Dtos/SysOrgPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Organization.Dtos; +namespace YD_Event.Application.Organization.Dtos; public class SysOrgPageOutput { diff --git a/YD_Event.Application/Organization/Dtos/UpdateOrgInput.cs b/YD_Event.Application/Organization/Dtos/UpdateOrgInput.cs index 1e48d24..a0730cf 100644 --- a/YD_Event.Application/Organization/Dtos/UpdateOrgInput.cs +++ b/YD_Event.Application/Organization/Dtos/UpdateOrgInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Organization.Dtos; +namespace YD_Event.Application.Organization.Dtos; public class UpdateOrgInput : AddOrgInput { diff --git a/YD_Event.Application/Organization/SysOrganizationService.cs b/YD_Event.Application/Organization/SysOrganizationService.cs index 70f1c04..f3d1d52 100644 --- a/YD_Event.Application/Organization/SysOrganizationService.cs +++ b/YD_Event.Application/Organization/SysOrganizationService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Organization.Dtos; +using YD_Event.Application.Organization.Dtos; -namespace Easy.Admin.Application.Organization; +namespace YD_Event.Application.Organization; /// /// 组织机构管理 diff --git a/YD_Event.Application/Role/Dtos/AddSysRoleInput.cs b/YD_Event.Application/Role/Dtos/AddSysRoleInput.cs index 65b7ff5..20d142b 100644 --- a/YD_Event.Application/Role/Dtos/AddSysRoleInput.cs +++ b/YD_Event.Application/Role/Dtos/AddSysRoleInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Role.Dtos; +namespace YD_Event.Application.Role.Dtos; public class AddSysRoleInput { diff --git a/YD_Event.Application/Role/Dtos/SysRolePageOutput.cs b/YD_Event.Application/Role/Dtos/SysRolePageOutput.cs index 71bc347..29c6c87 100644 --- a/YD_Event.Application/Role/Dtos/SysRolePageOutput.cs +++ b/YD_Event.Application/Role/Dtos/SysRolePageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Role.Dtos; +namespace YD_Event.Application.Role.Dtos; public class SysRolePageOutput { diff --git a/YD_Event.Application/Role/Dtos/SysRoleQueryInput.cs b/YD_Event.Application/Role/Dtos/SysRoleQueryInput.cs index 13a94a4..9158043 100644 --- a/YD_Event.Application/Role/Dtos/SysRoleQueryInput.cs +++ b/YD_Event.Application/Role/Dtos/SysRoleQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Role.Dtos; +namespace YD_Event.Application.Role.Dtos; public class SysRoleQueryInput : Pagination { diff --git a/YD_Event.Application/Role/Dtos/UpdateSysRoleInput.cs b/YD_Event.Application/Role/Dtos/UpdateSysRoleInput.cs index f28e118..2ad0b50 100644 --- a/YD_Event.Application/Role/Dtos/UpdateSysRoleInput.cs +++ b/YD_Event.Application/Role/Dtos/UpdateSysRoleInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.Role.Dtos; +namespace YD_Event.Application.Role.Dtos; public class UpdateSysRoleInput : AddSysRoleInput { diff --git a/YD_Event.Application/Role/SysRoleService.cs b/YD_Event.Application/Role/SysRoleService.cs index 419f5b3..51c0961 100644 --- a/YD_Event.Application/Role/SysRoleService.cs +++ b/YD_Event.Application/Role/SysRoleService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.Role.Dtos; +using YD_Event.Application.Role.Dtos; -namespace Easy.Admin.Application.Role; +namespace YD_Event.Application.Role; /// /// 角色管理 diff --git a/YD_Event.Application/User/AuthAccountService.cs b/YD_Event.Application/User/AuthAccountService.cs index 04e6496..1cccbab 100644 --- a/YD_Event.Application/User/AuthAccountService.cs +++ b/YD_Event.Application/User/AuthAccountService.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Application.User.Dtos; +using YD_Event.Application.User.Dtos; -namespace Easy.Admin.Application.User; +namespace YD_Event.Application.User; /// /// 博客授权用户 diff --git a/YD_Event.Application/User/Dtos/AddSysUserInput.cs b/YD_Event.Application/User/Dtos/AddSysUserInput.cs index da6daf2..102ab1e 100644 --- a/YD_Event.Application/User/Dtos/AddSysUserInput.cs +++ b/YD_Event.Application/User/Dtos/AddSysUserInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class AddSysUserInput { diff --git a/YD_Event.Application/User/Dtos/AuthAccountPageOutput.cs b/YD_Event.Application/User/Dtos/AuthAccountPageOutput.cs index ef0080e..ae0adc7 100644 --- a/YD_Event.Application/User/Dtos/AuthAccountPageOutput.cs +++ b/YD_Event.Application/User/Dtos/AuthAccountPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class AuthAccountPageOutput { diff --git a/YD_Event.Application/User/Dtos/AuthAccountPageQueryInput.cs b/YD_Event.Application/User/Dtos/AuthAccountPageQueryInput.cs index 196d90a..d1f132e 100644 --- a/YD_Event.Application/User/Dtos/AuthAccountPageQueryInput.cs +++ b/YD_Event.Application/User/Dtos/AuthAccountPageQueryInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class AuthAccountPageQueryInput : Pagination { diff --git a/YD_Event.Application/User/Dtos/ChangePasswordOutput.cs b/YD_Event.Application/User/Dtos/ChangePasswordOutput.cs index 6b1ba4f..f9bd953 100644 --- a/YD_Event.Application/User/Dtos/ChangePasswordOutput.cs +++ b/YD_Event.Application/User/Dtos/ChangePasswordOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class ChangePasswordOutput { diff --git a/YD_Event.Application/User/Dtos/QuerySysUserInput.cs b/YD_Event.Application/User/Dtos/QuerySysUserInput.cs index b6d3a52..d019e42 100644 --- a/YD_Event.Application/User/Dtos/QuerySysUserInput.cs +++ b/YD_Event.Application/User/Dtos/QuerySysUserInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class QuerySysUserInput : Pagination { diff --git a/YD_Event.Application/User/Dtos/ResetPasswordInput.cs b/YD_Event.Application/User/Dtos/ResetPasswordInput.cs index 59baa5e..7228c93 100644 --- a/YD_Event.Application/User/Dtos/ResetPasswordInput.cs +++ b/YD_Event.Application/User/Dtos/ResetPasswordInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class ResetPasswordInput : KeyDto { diff --git a/YD_Event.Application/User/Dtos/SysUserInfoOutput.cs b/YD_Event.Application/User/Dtos/SysUserInfoOutput.cs index 5239559..b9744de 100644 --- a/YD_Event.Application/User/Dtos/SysUserInfoOutput.cs +++ b/YD_Event.Application/User/Dtos/SysUserInfoOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class SysUserInfoOutput { diff --git a/YD_Event.Application/User/Dtos/SysUserPageOutput.cs b/YD_Event.Application/User/Dtos/SysUserPageOutput.cs index fc0a822..4fe0561 100644 --- a/YD_Event.Application/User/Dtos/SysUserPageOutput.cs +++ b/YD_Event.Application/User/Dtos/SysUserPageOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class SysUserPageOutput : KeyDto { diff --git a/YD_Event.Application/User/Dtos/UpdateCurrentUserInput.cs b/YD_Event.Application/User/Dtos/UpdateCurrentUserInput.cs index 39260e0..76962c5 100644 --- a/YD_Event.Application/User/Dtos/UpdateCurrentUserInput.cs +++ b/YD_Event.Application/User/Dtos/UpdateCurrentUserInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class UpdateCurrentUserInput { diff --git a/YD_Event.Application/User/Dtos/UpdateSysUserInput.cs b/YD_Event.Application/User/Dtos/UpdateSysUserInput.cs index e683bcb..b8f0102 100644 --- a/YD_Event.Application/User/Dtos/UpdateSysUserInput.cs +++ b/YD_Event.Application/User/Dtos/UpdateSysUserInput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Application.User.Dtos; +namespace YD_Event.Application.User.Dtos; public class UpdateSysUserInput : AddSysUserInput { diff --git a/YD_Event.Application/User/SysUserService.cs b/YD_Event.Application/User/SysUserService.cs index 4a4db14..4374896 100644 --- a/YD_Event.Application/User/SysUserService.cs +++ b/YD_Event.Application/User/SysUserService.cs @@ -1,9 +1,9 @@ -using Easy.Admin.Application.Auth; -using Easy.Admin.Application.Config; -using Easy.Admin.Application.Menu; -using Easy.Admin.Application.User.Dtos; +using YD_Event.Application.Auth; +using YD_Event.Application.Config; +using YD_Event.Application.Menu; +using YD_Event.Application.User.Dtos; -namespace Easy.Admin.Application.User; +namespace YD_Event.Application.User; /// /// 系统用户管理 diff --git a/YD_Event.Application/YD_Event.Application.csproj b/YD_Event.Application/YD_Event.Application.csproj index da45f4b..b1ff3a6 100644 --- a/YD_Event.Application/YD_Event.Application.csproj +++ b/YD_Event.Application/YD_Event.Application.csproj @@ -2,12 +2,12 @@ net10.0 1701;1702;1591 - Easy.Admin.Application.xml + YD_Event.Application.xml enable - + diff --git a/YD_Event.Application/bin/Debug/net10.0/Easy.Admin.Application.xml b/YD_Event.Application/YD_Event.Application.xml similarity index 53% rename from YD_Event.Application/bin/Debug/net10.0/Easy.Admin.Application.xml rename to YD_Event.Application/YD_Event.Application.xml index c0ff910..4aada49 100644 --- a/YD_Event.Application/bin/Debug/net10.0/Easy.Admin.Application.xml +++ b/YD_Event.Application/YD_Event.Application.xml @@ -4,152 +4,152 @@ YD_Event.Application - + 第三方API调用 - + 检查 文本内容是否包含违禁词 内容 - + 状态码(200代表成功) - + 是否成功 - + 违规的词组或语句,数组形式 - + 违规内容总数 - + 用户授权信息 - + 用户Id - + 是否是超级管理员 - + 登录名 - + 登录唯一Id - + 授权平台类型 - + 用户授权 - + 系统用户登录 - + 获取验证码 验证码唯一id - + 登录名 - + 密码 - + 验证码唯一ID - + 验证码 - + 删除信息 - + 修改状态 - + 清除缓存 - + 相册管理 - + 新增相册 - + 更新相册 - + 文章所属栏目管理 - + 添加文章所属栏目 @@ -157,7 +157,7 @@ 栏目ID - + 更新文章所属栏目 @@ -165,1626 +165,1626 @@ 栏目ID - + 文章管理 - + 文章列表分页查询 - + 添加文章 - + 更新文章 - + 文章详情 - + 文章栏目管理 - + 文章栏目列表 - + 添加文章栏目 - + 更新文章栏目 - + 获取文章栏目下拉选项 - + 相册名称 - + 封面图 - + 相册类型 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 是否可见 - + 标题 - + 概要 - + 封面图 - + 是否置顶 - + 作者 - + 原文地址 - + 创作类型 - + 文章正文(Html或markdown) - + 文章正文是否为html代码 - + 发布时间 - + 可用状态 - + 排序值(值越小越靠前) - + 是否允许评论 - + 过期时间(过期后文章不显示) - + 标签 - + 栏目ID - + 栏目名称 - + 父级id - + 封面图 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 网站名称 - + 网站链接 - + 网站logo - + 对方博客友链的地址 - + 是否忽略对方站点是否存在本站链接 - + 备注 - + 排序值(值越小越靠前) - + 可用状态 - + 相册Id - + 图片地址 - + 标签名称 - + 封面图 - + 标签颜色 - + 标签图标 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 是否置顶 - + 说说正文 - + 图片 - + 是否允许评论 - + 可用状态 - + 相册ID - + 名称 - + 相册类型 - + 状态 - + 是否显示 - + 排序 - + 备注 - + 封面 - + 创建时间 - + 相册名称 - + 相册类型 - + 文章ID - + 标题 - + 简介 - + 封面 - + 状态 - + 原文地址 - + 是否置顶 - + 排序 - + 作者 - + 文章内容 - + 是否允许评论 - + 是个是HTML - + 创作类型 - + 过期时间(过期后文章不显示) - + 标签 - + 栏目ID - + 发布时间 - + 文章ID - + 标题 - + 状态 - + 排序 - + 封面 - + 是否置顶 - + 创建时间 - + 创作类型 - + 发布时间 - + 浏览次数 - + 栏目名称 - + 标题 - + 栏目ID - + 栏目ID - + 栏目名称 - + 父级id - + 封面图 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 创建时间 - + 子栏目 - + 友情链接主键 - + 状态 - + 站点名称 - + 创建时间 - + 忽略站点检查 - + 友链 - + Logo链接 - + 对方博客友情链接地址 - + 排序 - + 描述 - + 站点名称 - + 相册ID - + 标签ID - + 标签名称 - + 状态 - + 排序 - + 标签封面 - + 标签图标 - + 标签颜色 - + 创建时间 - + 标签名称 - + 主键 - + 状态 - + 内容 - + 图片 - + 是否允许评论 - + 是否已点赞 - + 是否置顶 - + 发布时间 - + 关键词 - + 文章ID - + 栏目ID - + 友链主键 - + 标签ID - + 说说主键 - + 友情链接 - + 友情链接分页查询 - + 添加友情链接 - + 相册图片管理 - + 相册图片分页 - + 上传图片到相册 - + 删除上册图片 - + 文章标签管理 - + 文章标签列表非要查询 - + 添加文章标签 - + 更新文章标签 - + 文章标签下拉选项 - + 说说管理 - + 说说分页查询 - + 添加说说 - + 更新说说 - + 相册 - + 相册列表 - + 相册下的图片 - + 博客基本信息 - + 博客基本信息 - + 友情链接 - + 博客文章 - + 文章表查询 - + 标签列表 - + 文章栏目分类 - + 文章信息统计 - + 文章详情 文章ID - + 最新文章 - + 评论 - + 评论列表 - + 回复分页 - + 评论、回复 - + 删除留言 - + 点赞/取消点赞 对象ID - + 对应模块ID(null表留言,0代表友链的评论) - + 顶级楼层评论ID - + 被回复的评论ID - + 回复人ID - + 评论内容 - + 网站名称 - + 网站链接 - + 网站logo - + 对方博客友链的地址 - + 网站介绍 - + 相册ID - + 相册名称 - + 相册封面 - + 相册描述 - + 创建时间 - + 文章ID - + 封面图 - + 类型 - + 标题 - + 发布时间 - + 文章ID - + 标题 - + 文章内容 - + 简介 - + 封面图 - + 发布时间 - + 作者 - + 浏览量 - + 转载类型 - + 是否允许评论 - + 是否是html - + 是否置顶 - + 转载链接 - + 点赞数量 - + 当前用户是否已点赞 - + 栏目Id - + 栏目名称 - + 最后更新时间 - + 上一篇 - + 下一篇 - + 随机 - + 标签 - + 标签ID - + 栏目ID - + 关键词 - + 文章ID - + 标题 - + 栏目ID - + 栏目名称 - + 是否置顶 - + 创作类型 - + 简介 - + 封面图 - + 发布时间 - + 标签 - + 文章数量 - + 标签数量 - + 栏目数量 - + 用户量 - + 友链数量 - + 博客基本设置信息 - + 博主信息 - + 各个页面封面图 - + 栏目ID - + 父级ID - + 排序 - + 栏目名称 - + 文章条数 - + 评论ID - + 博主标识 - + 评论人ID - + 昵称 - + 头像 - + 楼层 - + 评论内容 - + 回复条数 - + 点赞数量 - + 是否已点赞 - + Ip地址 - + Ip归属地 - + 评论时间 - + 回复 - + 对应模块ID或评论ID(null表留言,0代表友链的评论) - + 友链ID - + 友链 - + logo - + 站点名称 - + 网站描述 - + 用户ID - + 昵称 - + 头像 - + 状态 - + 网站链接 - + logo - + 网站名称 - + 对方博客友链地址 - + 网站介绍 - + 图片ID - + 图片地址 - + 相册ID - + 评论ID - + 评论内容 - + 博主标识 - + 顶级楼层评论ID - + 上级评论ID - + 当前评论人ID - + 回复人ID - + 当前人昵称 - + 回复人昵称 - + 当前评论人头像 - + Ip地址 - + 点赞数量 - + 是否已点赞 - + Ip所属地 - + 评论时间 - + 标签ID - + 图标 - + 标签名称 - + 颜色 - + 是否允许评论 - + - + 是否置顶 - + 内容 - + 图片 - + 是否已点赞 - + 点赞数量 - + 评论数量 - + 发布时间 - + 第三方授权登录 - + 第三方授权缓存 - + 授权成功后回调页面缓存键 - + 获取授权地址 @@ -1792,7 +1792,7 @@ 回跳地址 - + 授权回调 @@ -1801,112 +1801,112 @@ 缓存唯一ID - + 登录 - + 获取用户信息 - + 申请友链 - + 博客说说 - + 说说列表 - + 说说详情 - + 自定义配置项 - + 自定义配置项分页列表 - + 添加自定义配置子项 - + 修改自定义配置子项 - + 自定义配置业务 - + 获取强类型配置 - + 获取自定义配置 自定义配置唯一编码 - + 自定义配置分页查询 - + 添加自定义配置 - + 修改自定义配置 - + 获取配置表单设计和表单数据 @@ -1914,1422 +1914,1422 @@ - + 修改配置表单设计 - + 生成自定配置类 - + 删除自定义配置类 - + 解析表单设计 - + 生成类文件 类名 - + 配置名称 - + 配置唯一编码(类名) - + 是否是多项(集合) - + 是否允许创建实体 - + 可用状态 - + 备注 - + 自定义配置Id - + 配置 - + 表单渲染Json - + 表单数据 - + 配置项Id - + 配置ID - + 自定义配置Id - + 状态 - + 备注 - + 配置名称 - + 唯一编码 - + 是否是多项配置 - + 是否允许创建实体 - + 是否已生成实体 - + 创建时间 - + 配置名称 - + 配置唯一编码 - + 自定义配置ID - + 表单设计 - + 控件类型 - + 控件配置项 - + 控件唯一名称 - + 控件中文名 - + 默认值 - + 控件占位符 - + 是否必填 - + 说明 - + 精度 - + 递增值 - + 允许半选 - + 附件最大上传数量 - + 是否启用多选 - + 配置id - + 文件名 - + 附件链接 - + 上传附件 - + 关键词 - + 日志级别 - + 用户名 - + 日志ID - + 日志描述 - + 日志级别 - + 日志详细信息 - + 路由名称 - + 控制器名称 - + 请求方式 - + 状态码 - + 耗时(毫秒) - + 异常信息 - + 地理位置 - + ip地址 - + 客户端系统信息 - + 浏览器 - + 请求参数 - + 响应参数 - + 请求地址 - + 操作人 - + 操作时间 - + 日志ID - + 消息 - + ip地址 - + 地理位置 - + 客户端系统信息 - + 客户端浏览器信息 - + 登录时间 - + 登录人账户名 - + 操作日志 - + 操作日志列表 - + 清除日志 - + 登录日志 - + 登录日志分页查询 - + 菜单名称 - + 菜单类型 - + 权限编码 - + 父级菜单 - + 路由名 - + 路由地址 - + 组件路径 - + 重定向地址 - + 菜单图标 - + 是否内嵌页面 - + 外链地址 - + 是否可见 - + 是否缓存 - + 是否固定 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 权限标识 - + 是否有访问权限 - + 标题 - + 外链 - + 是否隐藏 - + 是否缓存 - + 是否固定 - + 菜单 - + 类型 - + 路由名称 - + 路由地址 - + 组件 - + 路由扩展信息 - + 子菜单 - + 菜单Id - + 菜单名称 - + 父级id - + 状态 - + 权限标识 - + 排序 - + 组件路径 - + 图标 - + 是否固定 - + 是否内嵌 - + 是否缓存 - + 是否可见 - + 外链 - + 备注 - + 路由地址 - + 重定向地址 - + 路由名称 - + 菜单类型 - + 菜单Id - + 菜单名称 - + 权限标识 - + 菜单图标 - + 菜单类型 - + 路由地址 - + 组件路径 - + 可用状态 - + 排序值(值越小越靠前) - + 创建时间 - + 子菜单 - + 菜单/按钮Id - + 系统菜单管理 - + 菜单列表查询 - + 添加菜单/按钮 - + 修改菜单/按钮 - + 根据菜单Id获取系统菜单详情 - + 菜单下拉树 - + 删除菜单/按钮 - + 修改菜单/按钮状态 - + 获取当前登录用户可用菜单 - + 菜单按钮树 - + 校验权限 权限标识 - + 获取指定用户的访问权限集合 系统用户id - + 移除菜单中的按钮 - + 父级Id - + 部门名称 - + 部门编码 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 组织机构Id - + 父级Id - + 部门名称 - + 部门编码 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 创建时间 - + 部门Id - + 组织机构管理 - + 组织机构列表查询 - + 添加组织机构 - + 更新组织机构 - + 获取机构下拉选项 - + 角色名称 - + 状态 - + 角色编码 - + 排序值 - + 备注 - + 授权按钮菜单Id - + 主键 - + 角色名称 - + 创建时间 - + 状态 - + 角色编码 - + 排序值 - + 备注 - + 角色名称 - + 角色Id - + 角色管理 - + 角色分页查询 - + 添加角色 - + 更新角色 - + 获取角色可访问的菜单和按钮id 角色id - + 修改角色状态 - + 删除角色 - + 角色下拉选项 - + 博客授权用户 - + 博客授权用户列表 - + 设置博主 - + 删除博客用户 - + 用户名 - + 姓名 - + 性别 - + 组织机构id - + 昵称 - + 生日 - + 手机号码 - + 可用状态 - + 邮箱 - + 备注 - + 角色 - + 主键 - + 昵称 - + 性别 - + 授权类型 - + 是否是博主 - + 头像 - + 注册时间 - + 昵称 - + 原密码 - + 新密码 - + 账号 - + 组织机构Id - + 手机号 - + 姓名 - + 密码 - + 姓名 - + 账户名 - + 头像 - + 生日 - + 邮箱 - + 性别 - + 昵称 - + 备注 - + 最后登录ip - + 最后登录IP所属地址 - + 手机号码 - + 机构id - + 机构名称 - + 授权按钮 - + 姓名 - + 状态 - + 账户名 - + 生日 - + 手机号码 - + 性别 - + 昵称 - + 创建时间 - + 邮箱 - + 姓名 - + 性别 - + 昵称 - + 生日 - + 手机号码 - + 邮箱 - + 用户Id - + 系统用户管理 - + 系统用户分页查询 - + 添加系统用户 - + 更新系统用户信息 - + 系统用户详情 - + 重置系统用户密码 - + 获取当前登录用户的信息 - + 用户修改账户密码 - + 用户修改头像 - + 系统用户修改自己的信息 diff --git a/YD_Event.Application/applicationsettings.json b/YD_Event.Application/applicationsettings.json index 9711c3b..743a639 100644 --- a/YD_Event.Application/applicationsettings.json +++ b/YD_Event.Application/applicationsettings.json @@ -37,9 +37,9 @@ { "ConfigId": 1, //"DbType": "MySql", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=Easy.Admin;CharSet=utf8mb4;", + //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=YD_Event;CharSet=utf8mb4;", "DbType": "Sqlite", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - "ConnectionString": "DataSource=easy.admin.sqlite", + "ConnectionString": "DataSource=YD_Event.sqlite", "IsAutoCloseConnection": true, "EnableInitDb": false // 启用数据库以及数据表初始化(首次运行项目时开启可以自动创建数据库和初始化项目运行的基础数据) } diff --git a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.dll b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.dll index 02150c4..7f2e073 100644 Binary files a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.dll and b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.dll differ diff --git a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.pdb b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.pdb index ffbacef..a975a7a 100644 Binary files a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.pdb and b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Application.pdb differ diff --git a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.dll b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.dll index b871dd3..e9b46e1 100644 Binary files a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.dll and b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.dll differ diff --git a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.pdb b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.pdb index 55fcc8c..f955484 100644 Binary files a/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.pdb and b/YD_Event.Application/bin/Debug/net10.0/YD_Event.Core.pdb differ diff --git a/YD_Event.Application/bin/Debug/net10.0/applicationsettings.json b/YD_Event.Application/bin/Debug/net10.0/applicationsettings.json index 9711c3b..743a639 100644 --- a/YD_Event.Application/bin/Debug/net10.0/applicationsettings.json +++ b/YD_Event.Application/bin/Debug/net10.0/applicationsettings.json @@ -37,9 +37,9 @@ { "ConfigId": 1, //"DbType": "MySql", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=Easy.Admin;CharSet=utf8mb4;", + //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=YD_Event;CharSet=utf8mb4;", "DbType": "Sqlite", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - "ConnectionString": "DataSource=easy.admin.sqlite", + "ConnectionString": "DataSource=YD_Event.sqlite", "IsAutoCloseConnection": true, "EnableInitDb": false // 启用数据库以及数据表初始化(首次运行项目时开启可以自动创建数据库和初始化项目运行的基础数据) } diff --git a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfo.cs b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfo.cs index 6a2ab24..eb6b6ee 100644 --- a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfo.cs +++ b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("YD_Event.Application")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b3aab7d5738305c0f184f5121182eef92530b644")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3dafcc97fcfb2a39f034703ffb893134716a190c")] [assembly: System.Reflection.AssemblyProductAttribute("YD_Event.Application")] [assembly: System.Reflection.AssemblyTitleAttribute("YD_Event.Application")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfoInputs.cache b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfoInputs.cache index 212bdbd..db13fc2 100644 --- a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfoInputs.cache +++ b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.AssemblyInfoInputs.cache @@ -1 +1 @@ -33d1971d98b62b68873084165666c74b89296da4ef81dd03f1dbee4fae05742d +ea15189b590b477f2d2178fcf3394a595732b6fb8edefecfe1aeff6a3fdb441e diff --git a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.AssemblyReference.cache b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.AssemblyReference.cache index 714c72f..2127582 100644 Binary files a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.AssemblyReference.cache and b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.AssemblyReference.cache differ diff --git a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.FileListAbsolute.txt b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.FileListAbsolute.txt index e06907a..88fb76f 100644 --- a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.FileListAbsolute.txt +++ b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.csproj.FileListAbsolute.txt @@ -62,7 +62,6 @@ C:\Users\tangl\Desktop\easy-admin-master\easy-admin-master\src\backend\YD_Event. C:\Users\tangl\Desktop\easy-admin-master\easy-admin-master\src\backend\YD_Event.Application\obj\Debug\net10.0\refint\YD_Event.Application.dll C:\Users\tangl\Desktop\easy-admin-master\easy-admin-master\src\backend\YD_Event.Application\obj\Debug\net10.0\YD_Event.Application.pdb C:\Users\tangl\Desktop\easy-admin-master\easy-admin-master\src\backend\YD_Event.Application\obj\Debug\net10.0\ref\YD_Event.Application.dll -C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\applicationsettings.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\InitData\albums.txt C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\InitData\article.txt C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\InitData\articlecategory.txt @@ -78,12 +77,14 @@ C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0 C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\InitData\sysuserrole.txt C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\InitData\tags.txt C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\InitData\talks.txt +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\applicationsettings.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\YD_Event.Application.deps.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\YD_Event.Application.dll C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\YD_Event.Application.pdb -C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\Easy.Admin.Application.xml +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\YD_Event.Application.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\YD_Event.Core.dll C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\YD_Event.Core.pdb +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\bin\Debug\net10.0\YD_Event.Core.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\obj\Debug\net10.0\YD_Event.Application.csproj.AssemblyReference.cache C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\obj\Debug\net10.0\YD_Event.Application.GeneratedMSBuildEditorConfig.editorconfig C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Application\obj\Debug\net10.0\YD_Event.Application.AssemblyInfoInputs.cache diff --git a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.dll b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.dll index 02150c4..7f2e073 100644 Binary files a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.dll and b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.dll differ diff --git a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.pdb b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.pdb index ffbacef..a975a7a 100644 Binary files a/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.pdb and b/YD_Event.Application/obj/Debug/net10.0/YD_Event.Application.pdb differ diff --git a/YD_Event.Application/obj/Debug/net10.0/ref/YD_Event.Application.dll b/YD_Event.Application/obj/Debug/net10.0/ref/YD_Event.Application.dll index 09d8f63..40b1d9c 100644 Binary files a/YD_Event.Application/obj/Debug/net10.0/ref/YD_Event.Application.dll and b/YD_Event.Application/obj/Debug/net10.0/ref/YD_Event.Application.dll differ diff --git a/YD_Event.Application/obj/Debug/net10.0/refint/YD_Event.Application.dll b/YD_Event.Application/obj/Debug/net10.0/refint/YD_Event.Application.dll index 09d8f63..40b1d9c 100644 Binary files a/YD_Event.Application/obj/Debug/net10.0/refint/YD_Event.Application.dll and b/YD_Event.Application/obj/Debug/net10.0/refint/YD_Event.Application.dll differ diff --git a/YD_Event.Core/Config/BlogSetting.cs b/YD_Event.Core/Config/BlogSetting.cs index 4ed4031..582d5fb 100644 --- a/YD_Event.Core/Config/BlogSetting.cs +++ b/YD_Event.Core/Config/BlogSetting.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Easy.Admin.Core.Config; +namespace YD_Event.Core.Config; public class BlogSetting { /// diff --git a/YD_Event.Core/Config/BloggerInfo.cs b/YD_Event.Core/Config/BloggerInfo.cs index dacf564..a39ab0e 100644 --- a/YD_Event.Core/Config/BloggerInfo.cs +++ b/YD_Event.Core/Config/BloggerInfo.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Easy.Admin.Core.Config; +namespace YD_Event.Core.Config; public class BloggerInfo { /// diff --git a/YD_Event.Core/Config/SysSecuritySetting.cs b/YD_Event.Core/Config/SysSecuritySetting.cs index dc62277..bb8effa 100644 --- a/YD_Event.Core/Config/SysSecuritySetting.cs +++ b/YD_Event.Core/Config/SysSecuritySetting.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Easy.Admin.Core.Config; +namespace YD_Event.Core.Config; public class SysSecuritySetting { /// diff --git a/YD_Event.Core/Const/AuthClaimsConst.cs b/YD_Event.Core/Const/AuthClaimsConst.cs index b9c4a0e..ac96557 100644 --- a/YD_Event.Core/Const/AuthClaimsConst.cs +++ b/YD_Event.Core/Const/AuthClaimsConst.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Const; +namespace YD_Event.Core.Const; public sealed class AuthClaimsConst { diff --git a/YD_Event.Core/Const/CacheConst.cs b/YD_Event.Core/Const/CacheConst.cs index ed95aa7..5a82eb5 100644 --- a/YD_Event.Core/Const/CacheConst.cs +++ b/YD_Event.Core/Const/CacheConst.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Const; +namespace YD_Event.Core.Const; public class CacheConst { diff --git a/YD_Event.Core/Entities/Abstract/Entity.cs b/YD_Event.Core/Entities/Abstract/Entity.cs index 314c030..9cccf30 100644 --- a/YD_Event.Core/Entities/Abstract/Entity.cs +++ b/YD_Event.Core/Entities/Abstract/Entity.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 表实体继承 diff --git a/YD_Event.Core/Entities/Albums.cs b/YD_Event.Core/Entities/Albums.cs index 2168893..fabdf05 100644 --- a/YD_Event.Core/Entities/Albums.cs +++ b/YD_Event.Core/Entities/Albums.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 相册表 diff --git a/YD_Event.Core/Entities/Article.cs b/YD_Event.Core/Entities/Article.cs index 6fb92bb..e9f8725 100644 --- a/YD_Event.Core/Entities/Article.cs +++ b/YD_Event.Core/Entities/Article.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 文章表 /// diff --git a/YD_Event.Core/Entities/ArticleCategory.cs b/YD_Event.Core/Entities/ArticleCategory.cs index 5badc1b..2812704 100644 --- a/YD_Event.Core/Entities/ArticleCategory.cs +++ b/YD_Event.Core/Entities/ArticleCategory.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 文章所属栏目表 /// diff --git a/YD_Event.Core/Entities/ArticleTag.cs b/YD_Event.Core/Entities/ArticleTag.cs index a9ea96a..a22ea50 100644 --- a/YD_Event.Core/Entities/ArticleTag.cs +++ b/YD_Event.Core/Entities/ArticleTag.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 文章标签表 /// diff --git a/YD_Event.Core/Entities/AuthAccount.cs b/YD_Event.Core/Entities/AuthAccount.cs index e5a113b..397f671 100644 --- a/YD_Event.Core/Entities/AuthAccount.cs +++ b/YD_Event.Core/Entities/AuthAccount.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 博客授权用户 /// diff --git a/YD_Event.Core/Entities/Categories.cs b/YD_Event.Core/Entities/Categories.cs index 18b63b7..9b14a7f 100644 --- a/YD_Event.Core/Entities/Categories.cs +++ b/YD_Event.Core/Entities/Categories.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 文章栏目表 diff --git a/YD_Event.Core/Entities/Comments.cs b/YD_Event.Core/Entities/Comments.cs index 3d2f65d..02a21cd 100644 --- a/YD_Event.Core/Entities/Comments.cs +++ b/YD_Event.Core/Entities/Comments.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 评论表 /// diff --git a/YD_Event.Core/Entities/CustomConfig.cs b/YD_Event.Core/Entities/CustomConfig.cs index fb19ab2..ed28bce 100644 --- a/YD_Event.Core/Entities/CustomConfig.cs +++ b/YD_Event.Core/Entities/CustomConfig.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 自定义配置 /// diff --git a/YD_Event.Core/Entities/CustomConfigItem.cs b/YD_Event.Core/Entities/CustomConfigItem.cs index d826458..6c1b4eb 100644 --- a/YD_Event.Core/Entities/CustomConfigItem.cs +++ b/YD_Event.Core/Entities/CustomConfigItem.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 自定义配置子项 /// diff --git a/YD_Event.Core/Entities/FriendLink.cs b/YD_Event.Core/Entities/FriendLink.cs index 1595af9..c45f2ea 100644 --- a/YD_Event.Core/Entities/FriendLink.cs +++ b/YD_Event.Core/Entities/FriendLink.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 友情链接 diff --git a/YD_Event.Core/Entities/Interface/IAvailability.cs b/YD_Event.Core/Entities/Interface/IAvailability.cs index 291b434..9d749f3 100644 --- a/YD_Event.Core/Entities/Interface/IAvailability.cs +++ b/YD_Event.Core/Entities/Interface/IAvailability.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 可用状态 /// diff --git a/YD_Event.Core/Entities/Interface/ICreatedTime.cs b/YD_Event.Core/Entities/Interface/ICreatedTime.cs index 3876b19..f3c2c5f 100644 --- a/YD_Event.Core/Entities/Interface/ICreatedTime.cs +++ b/YD_Event.Core/Entities/Interface/ICreatedTime.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 创建日期 diff --git a/YD_Event.Core/Entities/Interface/ICreatedUserId.cs b/YD_Event.Core/Entities/Interface/ICreatedUserId.cs index 8c37917..cddf2b0 100644 --- a/YD_Event.Core/Entities/Interface/ICreatedUserId.cs +++ b/YD_Event.Core/Entities/Interface/ICreatedUserId.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; public interface ICreatedUserId { diff --git a/YD_Event.Core/Entities/Interface/IEntity.cs b/YD_Event.Core/Entities/Interface/IEntity.cs index 4fe2826..0652587 100644 --- a/YD_Event.Core/Entities/Interface/IEntity.cs +++ b/YD_Event.Core/Entities/Interface/IEntity.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 所有实体类继承 diff --git a/YD_Event.Core/Entities/Interface/IEntityT.cs b/YD_Event.Core/Entities/Interface/IEntityT.cs index 26a9a92..0a3521d 100644 --- a/YD_Event.Core/Entities/Interface/IEntityT.cs +++ b/YD_Event.Core/Entities/Interface/IEntityT.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// diff --git a/YD_Event.Core/Entities/Interface/ISoftDelete.cs b/YD_Event.Core/Entities/Interface/ISoftDelete.cs index 7832df2..4f4c477 100644 --- a/YD_Event.Core/Entities/Interface/ISoftDelete.cs +++ b/YD_Event.Core/Entities/Interface/ISoftDelete.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 软删除 diff --git a/YD_Event.Core/Entities/Interface/ISort.cs b/YD_Event.Core/Entities/Interface/ISort.cs index 23aa72f..a2cd846 100644 --- a/YD_Event.Core/Entities/Interface/ISort.cs +++ b/YD_Event.Core/Entities/Interface/ISort.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 排序 diff --git a/YD_Event.Core/Entities/Interface/IUpdatedTime.cs b/YD_Event.Core/Entities/Interface/IUpdatedTime.cs index ac3cbc4..090fb7c 100644 --- a/YD_Event.Core/Entities/Interface/IUpdatedTime.cs +++ b/YD_Event.Core/Entities/Interface/IUpdatedTime.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; public interface IUpdatedTime { diff --git a/YD_Event.Core/Entities/Pictures.cs b/YD_Event.Core/Entities/Pictures.cs index 0285ab3..9c98ca7 100644 --- a/YD_Event.Core/Entities/Pictures.cs +++ b/YD_Event.Core/Entities/Pictures.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 相册图片表 diff --git a/YD_Event.Core/Entities/Praise.cs b/YD_Event.Core/Entities/Praise.cs index 5f1d001..eebe942 100644 --- a/YD_Event.Core/Entities/Praise.cs +++ b/YD_Event.Core/Entities/Praise.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 点赞表 /// diff --git a/YD_Event.Core/Entities/SysMenu.cs b/YD_Event.Core/Entities/SysMenu.cs index 7db11b1..3fd7a8f 100644 --- a/YD_Event.Core/Entities/SysMenu.cs +++ b/YD_Event.Core/Entities/SysMenu.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 系统菜单表 diff --git a/YD_Event.Core/Entities/SysOperationLog.cs b/YD_Event.Core/Entities/SysOperationLog.cs index 498de94..5d2220b 100644 --- a/YD_Event.Core/Entities/SysOperationLog.cs +++ b/YD_Event.Core/Entities/SysOperationLog.cs @@ -1,6 +1,6 @@ using Microsoft.Extensions.Logging; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 操作日志 diff --git a/YD_Event.Core/Entities/SysOrganization.cs b/YD_Event.Core/Entities/SysOrganization.cs index d67b9e3..433ec3a 100644 --- a/YD_Event.Core/Entities/SysOrganization.cs +++ b/YD_Event.Core/Entities/SysOrganization.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 组织机构信息表 diff --git a/YD_Event.Core/Entities/SysRole.cs b/YD_Event.Core/Entities/SysRole.cs index 75018e8..a1b6a89 100644 --- a/YD_Event.Core/Entities/SysRole.cs +++ b/YD_Event.Core/Entities/SysRole.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 角色表 diff --git a/YD_Event.Core/Entities/SysRoleMenu.cs b/YD_Event.Core/Entities/SysRoleMenu.cs index fb6bfb2..8e608df 100644 --- a/YD_Event.Core/Entities/SysRoleMenu.cs +++ b/YD_Event.Core/Entities/SysRoleMenu.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 角色权限表 diff --git a/YD_Event.Core/Entities/SysSigninLog.cs b/YD_Event.Core/Entities/SysSigninLog.cs index fe33d20..751834e 100644 --- a/YD_Event.Core/Entities/SysSigninLog.cs +++ b/YD_Event.Core/Entities/SysSigninLog.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 用户登录日志 /// diff --git a/YD_Event.Core/Entities/SysUser.cs b/YD_Event.Core/Entities/SysUser.cs index dfbf563..e37641c 100644 --- a/YD_Event.Core/Entities/SysUser.cs +++ b/YD_Event.Core/Entities/SysUser.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 系统用户表 diff --git a/YD_Event.Core/Entities/SysUserRole.cs b/YD_Event.Core/Entities/SysUserRole.cs index e3580d7..6b98844 100644 --- a/YD_Event.Core/Entities/SysUserRole.cs +++ b/YD_Event.Core/Entities/SysUserRole.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; public class SysUserRole : Entity { diff --git a/YD_Event.Core/Entities/Tags.cs b/YD_Event.Core/Entities/Tags.cs index af6c7a9..b93e462 100644 --- a/YD_Event.Core/Entities/Tags.cs +++ b/YD_Event.Core/Entities/Tags.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; /// /// 标签信息表 diff --git a/YD_Event.Core/Entities/Talks.cs b/YD_Event.Core/Entities/Talks.cs index 20b4d9c..fe8aa2e 100644 --- a/YD_Event.Core/Entities/Talks.cs +++ b/YD_Event.Core/Entities/Talks.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Entities; +namespace YD_Event.Core.Entities; public class Talks : Entity, ISoftDelete, ICreatedTime, IAvailability { diff --git a/YD_Event.Core/Enum/AccountType.cs b/YD_Event.Core/Enum/AccountType.cs index 715bc3c..e8fe202 100644 --- a/YD_Event.Core/Enum/AccountType.cs +++ b/YD_Event.Core/Enum/AccountType.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Enum; +namespace YD_Event.Core.Enum; /// /// 登录账户类型 /// diff --git a/YD_Event.Core/Enum/AvailabilityStatus.cs b/YD_Event.Core/Enum/AvailabilityStatus.cs index 6ca9274..64e830c 100644 --- a/YD_Event.Core/Enum/AvailabilityStatus.cs +++ b/YD_Event.Core/Enum/AvailabilityStatus.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Enum; +namespace YD_Event.Core.Enum; /// /// 可用状态 /// diff --git a/YD_Event.Core/Enum/CoverType.cs b/YD_Event.Core/Enum/CoverType.cs index 3ac5f8e..1f11a6f 100644 --- a/YD_Event.Core/Enum/CoverType.cs +++ b/YD_Event.Core/Enum/CoverType.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Enum; +namespace YD_Event.Core.Enum; /// /// 博客封面类型 /// diff --git a/YD_Event.Core/Enum/CreationType.cs b/YD_Event.Core/Enum/CreationType.cs index f1dc5ee..636bffa 100644 --- a/YD_Event.Core/Enum/CreationType.cs +++ b/YD_Event.Core/Enum/CreationType.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Enum; +namespace YD_Event.Core.Enum; public enum CreationType { diff --git a/YD_Event.Core/Enum/EventType.cs b/YD_Event.Core/Enum/EventType.cs index 9863dfb..740ddf7 100644 --- a/YD_Event.Core/Enum/EventType.cs +++ b/YD_Event.Core/Enum/EventType.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Enum; +namespace YD_Event.Core.Enum; public enum EventType { diff --git a/YD_Event.Core/Enum/Gender.cs b/YD_Event.Core/Enum/Gender.cs index 547283b..e6169bf 100644 --- a/YD_Event.Core/Enum/Gender.cs +++ b/YD_Event.Core/Enum/Gender.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Enum; +namespace YD_Event.Core.Enum; /// /// 性别 /// diff --git a/YD_Event.Core/Enum/MenuType.cs b/YD_Event.Core/Enum/MenuType.cs index 47ec6ab..6a79934 100644 --- a/YD_Event.Core/Enum/MenuType.cs +++ b/YD_Event.Core/Enum/MenuType.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Enum; +namespace YD_Event.Core.Enum; public enum MenuType { diff --git a/YD_Event.Core/Extensions/ServiceCollectionExtension.cs b/YD_Event.Core/Extensions/ServiceCollectionExtension.cs index 8fd9330..8c53844 100644 --- a/YD_Event.Core/Extensions/ServiceCollectionExtension.cs +++ b/YD_Event.Core/Extensions/ServiceCollectionExtension.cs @@ -1,4 +1,4 @@ -using Easy.Admin.Core.Options; +using YD_Event.Core.Options; namespace Easy.Core; diff --git a/YD_Event.Core/Logging/DatabaseLoggingWriter.cs b/YD_Event.Core/Logging/DatabaseLoggingWriter.cs index 5a63c21..37ce28c 100644 --- a/YD_Event.Core/Logging/DatabaseLoggingWriter.cs +++ b/YD_Event.Core/Logging/DatabaseLoggingWriter.cs @@ -1,11 +1,11 @@ using System.Threading.Tasks; -using Easy.Admin.Core.Const; -using Easy.Admin.Core.Entities; +using YD_Event.Core.Const; +using YD_Event.Core.Entities; using Furion.Logging; using Newtonsoft.Json; using Easy.Core; -namespace Easy.Admin.Core.Logging; +namespace YD_Event.Core.Logging; // 数据库日志 public class DatabaseLoggingWriter : IDatabaseLoggingWriter, IDisposable { diff --git a/YD_Event.Core/Options/DbConnectionOptions.cs b/YD_Event.Core/Options/DbConnectionOptions.cs index 8bb1bb3..c31080f 100644 --- a/YD_Event.Core/Options/DbConnectionOptions.cs +++ b/YD_Event.Core/Options/DbConnectionOptions.cs @@ -1,6 +1,6 @@ using Furion.ConfigurableOptions; -namespace Easy.Admin.Core.Options; +namespace YD_Event.Core.Options; /// /// 数据库选项配置 diff --git a/YD_Event.Core/Options/OssConnectionOptions.cs b/YD_Event.Core/Options/OssConnectionOptions.cs index 0420621..6f13779 100644 --- a/YD_Event.Core/Options/OssConnectionOptions.cs +++ b/YD_Event.Core/Options/OssConnectionOptions.cs @@ -1,7 +1,7 @@ using Furion.ConfigurableOptions; using OnceMi.AspNetCore.OSS; -namespace Easy.Admin.Core.Options; +namespace YD_Event.Core.Options; /// /// 对象存储连接配置 /// diff --git a/YD_Event.Core/Options/SnowIdOptions.cs b/YD_Event.Core/Options/SnowIdOptions.cs index 4df8357..2f4b315 100644 --- a/YD_Event.Core/Options/SnowIdOptions.cs +++ b/YD_Event.Core/Options/SnowIdOptions.cs @@ -1,7 +1,7 @@ using Furion.ConfigurableOptions; using Yitter.IdGenerator; -namespace Easy.Admin.Core.Options; +namespace YD_Event.Core.Options; /// /// 雪花id配置 diff --git a/YD_Event.Core/Shared/AvailabilityDto.cs b/YD_Event.Core/Shared/AvailabilityDto.cs index 5b8e900..70d149c 100644 --- a/YD_Event.Core/Shared/AvailabilityDto.cs +++ b/YD_Event.Core/Shared/AvailabilityDto.cs @@ -1,6 +1,6 @@ -using Easy.Admin.Core.Enum; +using YD_Event.Core.Enum; -namespace Easy.Admin.Core.Shared; +namespace YD_Event.Core.Shared; public class AvailabilityDto : KeyDto { diff --git a/YD_Event.Core/Shared/KeyDto.cs b/YD_Event.Core/Shared/KeyDto.cs index 1154754..eb1746b 100644 --- a/YD_Event.Core/Shared/KeyDto.cs +++ b/YD_Event.Core/Shared/KeyDto.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Shared; +namespace YD_Event.Core.Shared; public class KeyDto { diff --git a/YD_Event.Core/Shared/SelectOutput.cs b/YD_Event.Core/Shared/SelectOutput.cs index 285b730..ddcebef 100644 --- a/YD_Event.Core/Shared/SelectOutput.cs +++ b/YD_Event.Core/Shared/SelectOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Shared; +namespace YD_Event.Core.Shared; /// /// 下拉框 /// diff --git a/YD_Event.Core/Shared/TreeSelectOutput.cs b/YD_Event.Core/Shared/TreeSelectOutput.cs index 0037a52..1fcf8a5 100644 --- a/YD_Event.Core/Shared/TreeSelectOutput.cs +++ b/YD_Event.Core/Shared/TreeSelectOutput.cs @@ -1,4 +1,4 @@ -namespace Easy.Admin.Core.Shared; +namespace YD_Event.Core.Shared; /// /// 树形下拉框 /// diff --git a/YD_Event.Core/SqlSugar/SqlSugarExtensions.cs b/YD_Event.Core/SqlSugar/SqlSugarExtensions.cs index d2f99e9..c9d6b33 100644 --- a/YD_Event.Core/SqlSugar/SqlSugarExtensions.cs +++ b/YD_Event.Core/SqlSugar/SqlSugarExtensions.cs @@ -2,10 +2,10 @@ using System.Data; using System.IO; using System.Reflection; -using Easy.Admin.Core.Const; -using Easy.Admin.Core.Entities; -using Easy.Admin.Core.Enum; -using Easy.Admin.Core.Options; +using YD_Event.Core.Const; +using YD_Event.Core.Entities; +using YD_Event.Core.Enum; +using YD_Event.Core.Options; using Mapster; using Newtonsoft.Json; using Yitter.IdGenerator; diff --git a/YD_Event.Core/YD_Event.Core.csproj b/YD_Event.Core/YD_Event.Core.csproj index 5b493bf..4212fab 100644 --- a/YD_Event.Core/YD_Event.Core.csproj +++ b/YD_Event.Core/YD_Event.Core.csproj @@ -2,10 +2,10 @@ net10.0 1701;1702;1591;8632 - Easy.Admin.Core.xml + YD_Event.Core.xml - + diff --git a/YD_Event.Core/bin/Debug/net10.0/Easy.Admin.Core.xml b/YD_Event.Core/YD_Event.Core.xml similarity index 64% rename from YD_Event.Core/bin/Debug/net10.0/Easy.Admin.Core.xml rename to YD_Event.Core/YD_Event.Core.xml index b62c0e0..7b6ed5c 100644 --- a/YD_Event.Core/bin/Debug/net10.0/Easy.Admin.Core.xml +++ b/YD_Event.Core/YD_Event.Core.xml @@ -4,1614 +4,1614 @@ YD_Event.Core - + 头像 - + 昵称 - + QQ - + Github - + 码云 - + 个性签名 - + 关于我 - + 网站Logo - + 站点图标 - + 开启打赏 - + 支付宝 - + 微信收款码 - + 允许留言 - + 允许评论 - + 公告 - + 站点名称 - + 首页格言 - + 网站运营时间 - + 站点版权 - + 站点描述 - + 关键词 - + 备案号 - + 用户默认密码 - + 密码错误次数 - + 密码规则 - + 密码规则提示语 - + Token有效期(分钟) - + 用户唯一ID - + 授权账户名键 - + 登录唯一ID - + 授权平台类型 - + 权限缓存键 - + 用户菜单信息权限缓存键(构建ui左侧菜单) - + 用户可访问的按钮权限编码缓存键(权限编码集合) - + 自定义配置缓存键 - + 表实体继承 主键类型 - + 主键 - + 相册表 - + 相册名称 - + 封面图 - + 相册类型 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 是否可见 - + 创建人 - + 标记删除 - + 创建时间 - + 文章表 - + 标题 - + 概要 - + 封面图 - + 是否置顶 - + 浏览量 - + 作者 - + 原文地址 - + 创作类型 - + 文章正文(Html或markdown) - + 文章正文是否为html代码 - + 发布时间 - + 可用状态 - + 排序值(值越小越靠前) - + 是否允许评论 - + 过期时间(过期后文章不显示) - + 标记删除 - + 更新时间 - + 创建人 - + 创建时间 - + 文章所属栏目表 - + 文章Id - + 栏目Id - + 文章标签表 - + 文章Id - + 标签Id - + 博客授权用户 - + 授权唯一标识 - + 授权类型 - + 博主标识 - + 姓名(昵称) - + 性别 - + 头像 - + 邮箱 - + 更新时间 - + 标记删除 - + 创建时间 - + 文章栏目表 - + 栏目名称 - + 父级id - + 封面图 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 创建人 - + 标记删除 - + 创建时间 - + 子栏目 - + 评论表 - + 对应模块ID(null表留言,0代表友链的评论) - + 顶级楼层评论ID - + 被回复的评论ID - + 当前评论人ID - + 回复人ID - + 评论内容 - + Ip地址 - + IP所属地 - + 标记删除 - + 创建时间 - + 自定义配置 - + 配置名称 - + 配置唯一编码(类名) - + 是否是多项(集合) - + 配置界面设计(json) - + 是否允许创建实体 - + 是否已生成实体 - + 可用状态 - + 备注 - + 创建人 - + 标记删除 - + 创建时间 - + 自定义配置子项 - + 自定义配置Id - + 配置 - + 可用状态 - + 创建人 - + 标记删除 - + 创建时间 - + 友情链接 - + 博客用户Id - + 网站名称 - + 网站链接 - + 网站logo - + 对方博客友链的地址 - + 是否忽略对方站点是否存在本站链接 - + 备注 - + 排序值(值越小越靠前) - + 可用状态 - + 标记删除 - + 创建时间 - + 可用状态 - + 可用状态 - + 创建日期 - + 创建时间 - + 创建人 - + 所有实体类继承 - + 主键类型 - + - + 软删除 - + 标记删除 - + 排序 - + 排序值(值越小越靠前) - + 更新时间 - + 相册图片表 - + 相册Id - + 图片地址 - + 备注 - + 创建时间 - + 点赞表 - + 用户ID - + 点赞对象ID - + 创建时间 - + 系统菜单表 - + 菜单名称 - + 菜单类型 - + 权限编码 - + 父级菜单 - + 路由名 - + 路由地址 - + 组件路径 - + 重定向地址 - + 菜单图标 - + 是否内嵌页面 - + 外链地址 - + 是否可见 - + 是否缓存 - + 是否固定 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 创建人 - + 标记删除 - + 创建时间 - + 子菜单 - + 操作日志 - + 操作用户ID - + 日志级别 - + 接口描述 - + 控制器名称 - + 路由名称 - + 请求方式 - + 请求跟踪唯一ID (同一次请求ID相同) - + 线程ID - + 浏览器 - + 请求地址 - + ip地址 - + 用户系统信息 - + 耗时(毫秒) - + Ip归属地 - + http状态码 - + 请求参数 - + 响应结果 - + 详细信息 - + 异常信息 - + 创建时间 - + 组织机构信息表 - + 父级Id - + 部门名称 - + 部门编码 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 创建人 - + 标记删除 - + 创建时间 - + 子部门 - + 角色表 - + 角色名 - + 角色编码 - + 可用状态 - + 排序值 - + 备注 - + 标记删除 - + 创建时间 - + 角色权限表 - + 角色id - + 菜单按钮id - + 用户登录日志 - + 用户ID - + ip地址 - + 浏览器 - + Ip归属地 - + 用户系统信息 - + 消息 - + 创建时间 - + 系统用户表 - + 用户名 - + 密码 - + 姓名 - + 性别 - + 组织机构id - + 昵称 - + 生日 - + 头像 - + 手机号码 - + 邮箱 - + 可用状态 - + 最后一次登录IP地址 - + 最后一次登录位置 - + 最后登录时间 - + 备注 - + 创建人 - + 更新时间 - + 标记删除 - + 账号锁定过期时间 - + 创建时间 - + 用户id - + 角色id - + 标签信息表 - + 标签名称 - + 封面图 - + 标签颜色 - + 可用状态 - + 排序值(值越小越靠前) - + 备注 - + 创建人 - + 标记删除 - + 创建时间 - + 是否置顶 - + 说说正文 - + 图片 - + 是否允许评论 - + 可用状态 - + 标记删除 - + 创建时间 - + 登录账户类型 - + 后台 - + 博客 - + 可用状态 - + 启用 - + 禁用 - + 博客封面类型 - + 首页封面 - + 归档封面 - + 分类封面 - + 标签封面 - + 相册封面图 - + 说说封面图 - + 关于封面图 - + 留言封面图 - + 个人中心封面图 - + 友情链接封面图 - + 标签列表封面 - + 分类列表封面 - + 原创 - + 转载 - + 登录事件 - + 操作事件 - + 异常事件 - + 性别 - + - + - + 未知 - + 目录 - + 菜单 - + 按钮 - + 释放服务作用域 - + 数据库选项配置 - + 数据库配置 - + 数据库连接扩展 - + 是否初始化数据库 - + 启用表数据初始化 - + 对象存储连接配置 - + 默认存目录 - + 外网访问域名或IP - + 是否启用对象存储(不启用将存储至站点目录) - + 雪花id配置 - + 状态 - + 主键 - + 下拉框 - + 文本 - + - + 树形下拉框 - + 子选项 @@ -1823,7 +1823,7 @@ SqlSugar ORM框架所需缓存配置 - + 添加 SqlSugar 拓展(适用于单个数据库) @@ -1832,7 +1832,7 @@ - + 添加 SqlSugar 拓展(适用于多数据库) @@ -1841,7 +1841,7 @@ - + 初始化数据库 diff --git a/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.dll b/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.dll index b871dd3..e9b46e1 100644 Binary files a/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.dll and b/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.dll differ diff --git a/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.pdb b/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.pdb index 55fcc8c..f955484 100644 Binary files a/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.pdb and b/YD_Event.Core/bin/Debug/net10.0/YD_Event.Core.pdb differ diff --git a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfo.cs b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfo.cs index 9641a47..0f02622 100644 --- a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfo.cs +++ b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("YD_Event.Core")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b3aab7d5738305c0f184f5121182eef92530b644")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3dafcc97fcfb2a39f034703ffb893134716a190c")] [assembly: System.Reflection.AssemblyProductAttribute("YD_Event.Core")] [assembly: System.Reflection.AssemblyTitleAttribute("YD_Event.Core")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfoInputs.cache b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfoInputs.cache index 341c4ab..a881b76 100644 --- a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfoInputs.cache +++ b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.AssemblyInfoInputs.cache @@ -1 +1 @@ -57b10a796efdbf8338c66a21f4998d6f599bf6d047d9cac7a1de9214b84604c8 +d9b5e2c7367d494ba929c1b7faeb9586d04e8254a62f5c6d22ed7d25b2f74e94 diff --git a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.csproj.FileListAbsolute.txt b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.csproj.FileListAbsolute.txt index 11a0838..64975c9 100644 --- a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.csproj.FileListAbsolute.txt +++ b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.csproj.FileListAbsolute.txt @@ -72,7 +72,7 @@ C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\bin\Debug\net10.0\InitDa C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\bin\Debug\net10.0\YD_Event.Core.deps.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\bin\Debug\net10.0\YD_Event.Core.dll C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\bin\Debug\net10.0\YD_Event.Core.pdb -C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\bin\Debug\net10.0\Easy.Admin.Core.xml +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\bin\Debug\net10.0\YD_Event.Core.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\obj\Debug\net10.0\YD_Event.Core.csproj.AssemblyReference.cache C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\obj\Debug\net10.0\YD_Event.Core.GeneratedMSBuildEditorConfig.editorconfig C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Core\obj\Debug\net10.0\YD_Event.Core.AssemblyInfoInputs.cache diff --git a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.dll b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.dll index b871dd3..e9b46e1 100644 Binary files a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.dll and b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.dll differ diff --git a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.pdb b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.pdb index 55fcc8c..f955484 100644 Binary files a/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.pdb and b/YD_Event.Core/obj/Debug/net10.0/YD_Event.Core.pdb differ diff --git a/YD_Event.Core/obj/Debug/net10.0/ref/YD_Event.Core.dll b/YD_Event.Core/obj/Debug/net10.0/ref/YD_Event.Core.dll index 043310b..0c1cc52 100644 Binary files a/YD_Event.Core/obj/Debug/net10.0/ref/YD_Event.Core.dll and b/YD_Event.Core/obj/Debug/net10.0/ref/YD_Event.Core.dll differ diff --git a/YD_Event.Core/obj/Debug/net10.0/refint/YD_Event.Core.dll b/YD_Event.Core/obj/Debug/net10.0/refint/YD_Event.Core.dll index 043310b..0c1cc52 100644 Binary files a/YD_Event.Core/obj/Debug/net10.0/refint/YD_Event.Core.dll and b/YD_Event.Core/obj/Debug/net10.0/refint/YD_Event.Core.dll differ diff --git a/YD_Event.Web.Core/Easy.Admin.Web.Core.xml b/YD_Event.Web.Core/Easy.Admin.Web.Core.xml index 51937a2..d83b348 100644 --- a/YD_Event.Web.Core/Easy.Admin.Web.Core.xml +++ b/YD_Event.Web.Core/Easy.Admin.Web.Core.xml @@ -4,7 +4,7 @@ YD_Event.Web.Core - + 这里写您的授权判断逻辑,授权通过返回 true,否则返回 false @@ -12,7 +12,7 @@ - + 自动刷新token diff --git a/YD_Event.Web.Core/Handlers/JwtHandler.cs b/YD_Event.Web.Core/Handlers/JwtHandler.cs index 2a6d1af..95a02df 100644 --- a/YD_Event.Web.Core/Handlers/JwtHandler.cs +++ b/YD_Event.Web.Core/Handlers/JwtHandler.cs @@ -2,11 +2,11 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using System.Threading.Tasks; -using Easy.Admin.Application.Menu; +using YD_Event.Application.Menu; using Furion; using Furion.DataEncryption; -namespace Easy.Admin.Web.Core; +namespace YD_Event.Web.Core; public class JwtHandler : AppAuthorizeHandler { diff --git a/YD_Event.Web.Core/Startup.cs b/YD_Event.Web.Core/Startup.cs index 93c8e1d..0e20ff8 100644 --- a/YD_Event.Web.Core/Startup.cs +++ b/YD_Event.Web.Core/Startup.cs @@ -10,8 +10,8 @@ using SqlSugar; using System.Text; using System.Threading.Tasks; using AspNetCoreRateLimit; -using Easy.Admin.Core.Logging; -using Easy.Admin.Core.Options; +using YD_Event.Core.Logging; +using YD_Event.Core.Options; using Easy.Core; using Furion.Logging; using Lazy.Captcha.Core; @@ -22,7 +22,7 @@ using MrHuo.OAuth; using MrHuo.OAuth.QQ; using OnceMi.AspNetCore.OSS; -namespace Easy.Admin.Web.Core; +namespace YD_Event.Web.Core; public class Startup : AppStartup { diff --git a/YD_Event.Web.Core/YD_Event.Web.Core.xml b/YD_Event.Web.Core/YD_Event.Web.Core.xml index 51937a2..d83b348 100644 --- a/YD_Event.Web.Core/YD_Event.Web.Core.xml +++ b/YD_Event.Web.Core/YD_Event.Web.Core.xml @@ -4,7 +4,7 @@ YD_Event.Web.Core - + 这里写您的授权判断逻辑,授权通过返回 true,否则返回 false @@ -12,7 +12,7 @@ - + 自动刷新token diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.dll b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.dll index 02150c4..7f2e073 100644 Binary files a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.dll and b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.dll differ diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.pdb b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.pdb index ffbacef..a975a7a 100644 Binary files a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.pdb and b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Application.pdb differ diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.dll b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.dll index b871dd3..e9b46e1 100644 Binary files a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.dll and b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.dll differ diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.pdb b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.pdb index 55fcc8c..f955484 100644 Binary files a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.pdb and b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Core.pdb differ diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.dll b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.dll index e660a54..4b366b3 100644 Binary files a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.dll and b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.dll differ diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.pdb b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.pdb index d65ba97..fc36d3f 100644 Binary files a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.pdb and b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.pdb differ diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.xml b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.xml index 51937a2..d83b348 100644 --- a/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.xml +++ b/YD_Event.Web.Core/bin/Debug/net10.0/YD_Event.Web.Core.xml @@ -4,7 +4,7 @@ YD_Event.Web.Core - + 这里写您的授权判断逻辑,授权通过返回 true,否则返回 false @@ -12,7 +12,7 @@ - + 自动刷新token diff --git a/YD_Event.Web.Core/bin/Debug/net10.0/applicationsettings.json b/YD_Event.Web.Core/bin/Debug/net10.0/applicationsettings.json index 9711c3b..743a639 100644 --- a/YD_Event.Web.Core/bin/Debug/net10.0/applicationsettings.json +++ b/YD_Event.Web.Core/bin/Debug/net10.0/applicationsettings.json @@ -37,9 +37,9 @@ { "ConfigId": 1, //"DbType": "MySql", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=Easy.Admin;CharSet=utf8mb4;", + //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=YD_Event;CharSet=utf8mb4;", "DbType": "Sqlite", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - "ConnectionString": "DataSource=easy.admin.sqlite", + "ConnectionString": "DataSource=YD_Event.sqlite", "IsAutoCloseConnection": true, "EnableInitDb": false // 启用数据库以及数据表初始化(首次运行项目时开启可以自动创建数据库和初始化项目运行的基础数据) } diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfo.cs b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfo.cs index 0ff2ddf..d50fd4a 100644 --- a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfo.cs +++ b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("YD_Event.Web.Core")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b3aab7d5738305c0f184f5121182eef92530b644")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3dafcc97fcfb2a39f034703ffb893134716a190c")] [assembly: System.Reflection.AssemblyProductAttribute("YD_Event.Web.Core")] [assembly: System.Reflection.AssemblyTitleAttribute("YD_Event.Web.Core")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfoInputs.cache b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfoInputs.cache index 3ef40e5..ba632bd 100644 --- a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfoInputs.cache +++ b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.AssemblyInfoInputs.cache @@ -1 +1 @@ -b45f656004ff2eec440abe1e4fdbb3047f4489040407d7ac6a641c926a3a94d0 +f1ab4fdbc67634b97cf68809eee7850efcff6461c850195fcba627575c676ae4 diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.AssemblyReference.cache b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.AssemblyReference.cache index 0e3bc38..19acdf5 100644 Binary files a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.AssemblyReference.cache and b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.AssemblyReference.cache differ diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.FileListAbsolute.txt b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.FileListAbsolute.txt index 5156aba..c3eac98 100644 --- a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.FileListAbsolute.txt +++ b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.csproj.FileListAbsolute.txt @@ -89,7 +89,9 @@ C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\bin\Debug\net10.0\YD C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\bin\Debug\net10.0\YD_Event.Application.dll C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\bin\Debug\net10.0\YD_Event.Core.dll C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\bin\Debug\net10.0\YD_Event.Application.pdb +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\bin\Debug\net10.0\YD_Event.Application.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\bin\Debug\net10.0\YD_Event.Core.pdb +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\bin\Debug\net10.0\YD_Event.Core.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\obj\Debug\net10.0\YD_Event.Web.Core.csproj.AssemblyReference.cache C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\obj\Debug\net10.0\YD_Event.Web.Core.GeneratedMSBuildEditorConfig.editorconfig C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Core\obj\Debug\net10.0\YD_Event.Web.Core.AssemblyInfoInputs.cache diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.dll b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.dll index e660a54..4b366b3 100644 Binary files a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.dll and b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.dll differ diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.pdb b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.pdb index d65ba97..fc36d3f 100644 Binary files a/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.pdb and b/YD_Event.Web.Core/obj/Debug/net10.0/YD_Event.Web.Core.pdb differ diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/ref/YD_Event.Web.Core.dll b/YD_Event.Web.Core/obj/Debug/net10.0/ref/YD_Event.Web.Core.dll index 594f513..e526e0d 100644 Binary files a/YD_Event.Web.Core/obj/Debug/net10.0/ref/YD_Event.Web.Core.dll and b/YD_Event.Web.Core/obj/Debug/net10.0/ref/YD_Event.Web.Core.dll differ diff --git a/YD_Event.Web.Core/obj/Debug/net10.0/refint/YD_Event.Web.Core.dll b/YD_Event.Web.Core/obj/Debug/net10.0/refint/YD_Event.Web.Core.dll index 594f513..e526e0d 100644 Binary files a/YD_Event.Web.Core/obj/Debug/net10.0/refint/YD_Event.Web.Core.dll and b/YD_Event.Web.Core/obj/Debug/net10.0/refint/YD_Event.Web.Core.dll differ diff --git a/YD_Event.Web.Entry/Dockerfile b/YD_Event.Web.Entry/Dockerfile index 0ffa8d3..54f86cc 100644 --- a/YD_Event.Web.Entry/Dockerfile +++ b/YD_Event.Web.Entry/Dockerfile @@ -21,19 +21,19 @@ EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src -COPY ["Easy.Admin.Web.Entry/Easy.Admin.Web.Entry.csproj", "Easy.Admin.Web.Entry/"] -COPY ["Easy.Admin.Web.Core/Easy.Admin.Web.Core.csproj", "Easy.Admin.Web.Core/"] -COPY ["Easy.Admin.Application/Easy.Admin.Application.csproj", "Easy.Admin.Application/"] -COPY ["Easy.Admin.Core/Easy.Admin.Core.csproj", "Easy.Admin.Core/"] -RUN dotnet restore "./Easy.Admin.Web.Entry/Easy.Admin.Web.Entry.csproj" +COPY ["YD_Event.Web.Entry/YD_Event.Web.Entry.csproj", "YD_Event.Web.Entry/"] +COPY ["YD_Event.Web.Core/YD_Event.Web.Core.csproj", "YD_Event.Web.Core/"] +COPY ["YD_Event.Application/YD_Event.Application.csproj", "YD_Event.Application/"] +COPY ["YD_Event.Core/YD_Event.Core.csproj", "YD_Event.Core/"] +RUN dotnet restore "./YD_Event.Web.Entry/YD_Event.Web.Entry.csproj" COPY . . -WORKDIR "/src/Easy.Admin.Web.Entry" -RUN dotnet build "./Easy.Admin.Web.Entry.csproj" -c $BUILD_CONFIGURATION -o /app/build +WORKDIR "/src/YD_Event.Web.Entry" +RUN dotnet build "./YD_Event.Web.Entry.csproj" -c $BUILD_CONFIGURATION -o /app/build # 此阶段用于发布要复制到最终阶段的服务项目 FROM build AS publish ARG BUILD_CONFIGURATION=Release -RUN dotnet publish "./Easy.Admin.Web.Entry.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false +RUN dotnet publish "./YD_Event.Web.Entry.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false # 此阶段在生产中使用,或在常规模式下从 VS 运行时使用(在不使用调试配置时为默认值) FROM base AS final @@ -44,4 +44,4 @@ COPY --from=publish /app/publish . ENV TZ=Asia/Shanghai ENV ASPNETCORE_URLS 'http://*:8066' -ENTRYPOINT ["dotnet", "Easy.Admin.Web.Entry.dll"] \ No newline at end of file +ENTRYPOINT ["dotnet", "YD_Event.Web.Entry.dll"] \ No newline at end of file diff --git a/YD_Event.Web.Entry/Properties/launchSettings.json b/YD_Event.Web.Entry/Properties/launchSettings.json index 2cdafd3..7bcb316 100644 --- a/YD_Event.Web.Entry/Properties/launchSettings.json +++ b/YD_Event.Web.Entry/Properties/launchSettings.json @@ -7,7 +7,7 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, - "Easy.Admin.Web.Entry": { + "YD_Event.Web.Entry": { "commandName": "Project", "launchBrowser": true, "environmentVariables": { diff --git a/YD_Event.Web.Entry/SingleFilePublish.cs b/YD_Event.Web.Entry/SingleFilePublish.cs index eaae896..6916f79 100644 --- a/YD_Event.Web.Entry/SingleFilePublish.cs +++ b/YD_Event.Web.Entry/SingleFilePublish.cs @@ -1,7 +1,7 @@ using Furion; using System.Reflection; -namespace Easy.Admin.Web.Entry; +namespace YD_Event.Web.Entry; public class SingleFilePublish : ISingleFilePublish { @@ -14,9 +14,9 @@ public class SingleFilePublish : ISingleFilePublish { return new[] { - "Easy.Admin.Application", - "Easy.Admin.Core", - "Easy.Admin.Web.Core" + "YD_Event.Application", + "YD_Event.Core", + "YD_Event.Web.Core" }; } } \ No newline at end of file diff --git a/YD_Event.Web.Entry/YD_Event.Web.Entry.csproj b/YD_Event.Web.Entry/YD_Event.Web.Entry.csproj index c721e1b..969d155 100644 --- a/YD_Event.Web.Entry/YD_Event.Web.Entry.csproj +++ b/YD_Event.Web.Entry/YD_Event.Web.Entry.csproj @@ -17,7 +17,7 @@ - + Always diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.dll b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.dll index 02150c4..7f2e073 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.dll and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.dll differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.pdb b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.pdb index ffbacef..a975a7a 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.pdb and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Application.pdb differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.dll b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.dll index b871dd3..e9b46e1 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.dll and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.dll differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.pdb b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.pdb index 55fcc8c..f955484 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.pdb and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Core.pdb differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.dll b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.dll index e660a54..4b366b3 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.dll and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.dll differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.pdb b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.pdb index d65ba97..fc36d3f 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.pdb and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.pdb differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.xml b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.xml index 51937a2..d83b348 100644 --- a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.xml +++ b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Core.xml @@ -4,7 +4,7 @@ YD_Event.Web.Core - + 这里写您的授权判断逻辑,授权通过返回 true,否则返回 false @@ -12,7 +12,7 @@ - + 自动刷新token diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.dll b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.dll index fb14cae..fece723 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.dll and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.dll differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.exe b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.exe index 69a4e81..764b310 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.exe and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.exe differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.pdb b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.pdb index 8b4ad3a..3b4b12d 100644 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.pdb and b/YD_Event.Web.Entry/bin/Debug/net10.0/YD_Event.Web.Entry.pdb differ diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/applicationsettings.json b/YD_Event.Web.Entry/bin/Debug/net10.0/applicationsettings.json index 9711c3b..743a639 100644 --- a/YD_Event.Web.Entry/bin/Debug/net10.0/applicationsettings.json +++ b/YD_Event.Web.Entry/bin/Debug/net10.0/applicationsettings.json @@ -37,9 +37,9 @@ { "ConfigId": 1, //"DbType": "MySql", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=Easy.Admin;CharSet=utf8mb4;", + //"ConnectionString": "Server=127.0.0.1;User Id=root;Password=123456;Port=3306;Database=YD_Event;CharSet=utf8mb4;", "DbType": "Sqlite", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access、OpenGauss、QuestDB、HG、ClickHouse、GBase、Odbc、Custom - "ConnectionString": "DataSource=easy.admin.sqlite", + "ConnectionString": "DataSource=YD_Event.sqlite", "IsAutoCloseConnection": true, "EnableInitDb": false // 启用数据库以及数据表初始化(首次运行项目时开启可以自动创建数据库和初始化项目运行的基础数据) } diff --git a/YD_Event.Web.Entry/bin/Debug/net10.0/easy.admin.sqlite b/YD_Event.Web.Entry/bin/Debug/net10.0/easy.admin.sqlite deleted file mode 100644 index 842939e..0000000 Binary files a/YD_Event.Web.Entry/bin/Debug/net10.0/easy.admin.sqlite and /dev/null differ diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfo.cs b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfo.cs index a366fbf..4d18cbb 100644 --- a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfo.cs +++ b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("YD_Event.Web.Entry")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b3aab7d5738305c0f184f5121182eef92530b644")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3dafcc97fcfb2a39f034703ffb893134716a190c")] [assembly: System.Reflection.AssemblyProductAttribute("YD_Event.Web.Entry")] [assembly: System.Reflection.AssemblyTitleAttribute("YD_Event.Web.Entry")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfoInputs.cache b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfoInputs.cache index c475612..9641162 100644 --- a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfoInputs.cache +++ b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.AssemblyInfoInputs.cache @@ -1 +1 @@ -359edc84fa60eb9737d45b2b2a4f9617791e6aa0e4729eee04c95269fb11b7aa +31b2c00462905a743d3c3617ead60072b151af77675765f6963a8eac5cf246fb diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.AssemblyReference.cache b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.AssemblyReference.cache index 32682e5..88b11cd 100644 Binary files a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.AssemblyReference.cache and b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.AssemblyReference.cache differ diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.FileListAbsolute.txt b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.FileListAbsolute.txt index b052e4e..f1cc484 100644 --- a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.FileListAbsolute.txt +++ b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.csproj.FileListAbsolute.txt @@ -199,7 +199,6 @@ C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\a C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Entry.staticwebassets.runtime.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Entry.staticwebassets.endpoints.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Entry.exe -C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\easy.admin.sqlite C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Entry.deps.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Entry.runtimeconfig.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Entry.dll @@ -334,7 +333,9 @@ C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\Y C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Core.pdb C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Web.Core.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Application.pdb +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Application.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Core.pdb +C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\bin\Debug\net10.0\YD_Event.Core.xml C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\obj\Debug\net10.0\YD_Event.Web.Entry.csproj.AssemblyReference.cache C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\obj\Debug\net10.0\rpswa.dswa.cache.json C:\Users\tangl\Desktop\Git\YD_Event.Admin\YD_Event.Web.Entry\obj\Debug\net10.0\YD_Event.Web.Entry.GeneratedMSBuildEditorConfig.editorconfig diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.dll b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.dll index fb14cae..fece723 100644 Binary files a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.dll and b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.dll differ diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.pdb b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.pdb index 8b4ad3a..3b4b12d 100644 Binary files a/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.pdb and b/YD_Event.Web.Entry/obj/Debug/net10.0/YD_Event.Web.Entry.pdb differ diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/apphost.exe b/YD_Event.Web.Entry/obj/Debug/net10.0/apphost.exe index 69a4e81..764b310 100644 Binary files a/YD_Event.Web.Entry/obj/Debug/net10.0/apphost.exe and b/YD_Event.Web.Entry/obj/Debug/net10.0/apphost.exe differ diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/ref/YD_Event.Web.Entry.dll b/YD_Event.Web.Entry/obj/Debug/net10.0/ref/YD_Event.Web.Entry.dll index a9bf773..e50d700 100644 Binary files a/YD_Event.Web.Entry/obj/Debug/net10.0/ref/YD_Event.Web.Entry.dll and b/YD_Event.Web.Entry/obj/Debug/net10.0/ref/YD_Event.Web.Entry.dll differ diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/refint/YD_Event.Web.Entry.dll b/YD_Event.Web.Entry/obj/Debug/net10.0/refint/YD_Event.Web.Entry.dll index a9bf773..e50d700 100644 Binary files a/YD_Event.Web.Entry/obj/Debug/net10.0/refint/YD_Event.Web.Entry.dll and b/YD_Event.Web.Entry/obj/Debug/net10.0/refint/YD_Event.Web.Entry.dll differ diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json index eb7c1b0..0f253cc 100644 --- a/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +++ b/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"xYDqQAmqiELyvGT6zD6wYLAFnviBn6n5hGMrTwz0HQI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nNN2YcjThZnvjDPkRXl/SXeetzOnSiYf3BUebxCKV4s=","730Hy3atPOpMpB34uqtUoOXgyQOfj5rBUkTh9OzxSWg=","PI3qW3xM9znofdyS9DHswtFh1qYtQu\u002BxbHAHS2mjvbw=","Mq7IjkLmQjq/gWQcP3wA/c7hViiftL4VrEkwqj51I1c=","8Wv7mvHN\u002BsTD6UY3pkFz0Rfui2CAqrlGwjYzQOKDbmM=","vqAW\u002BRIQyXn8wyOf2MZOX\u002BYCy7ezsVHEtdDBdtl2uVU=","0f9IEEXLkVqt/48Ag5\u002BqiSMpqHaBV9xHL06DHro2HZY=","8tXS3D6YxQV4wUO3IOS8MqwL3tzdD/5F8MDRBmKyRu0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"xYDqQAmqiELyvGT6zD6wYLAFnviBn6n5hGMrTwz0HQI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nNN2YcjThZnvjDPkRXl/SXeetzOnSiYf3BUebxCKV4s=","730Hy3atPOpMpB34uqtUoOXgyQOfj5rBUkTh9OzxSWg=","PI3qW3xM9znofdyS9DHswtFh1qYtQu\u002BxbHAHS2mjvbw=","wovwJnROzNqtloI/I\u002Bdra2\u002BkKZWBos25BfOaYZ2hvM0=","d/iUhmzPU2l4Olzbrz0N9\u002B9yjrMcHZwysCXx\u002B259kd0=","d2bFaiOr0t39Mj/RfVIGFe62/s\u002BHZw42VbFClOcO1PU=","0f9IEEXLkVqt/48Ag5\u002BqiSMpqHaBV9xHL06DHro2HZY=","dPN0xlw/UaZzhX2HZBlqkyfFU0NA2VNQ2OSVRWs9wwo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmrazor.dswa.cache.json index f396492..5f26136 100644 --- a/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +++ b/YD_Event.Web.Entry/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"3l0KkzRu8DsdQ4/r3ewlQB7I0nRW5wW88uPyfxmsy68=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nNN2YcjThZnvjDPkRXl/SXeetzOnSiYf3BUebxCKV4s=","730Hy3atPOpMpB34uqtUoOXgyQOfj5rBUkTh9OzxSWg=","PI3qW3xM9znofdyS9DHswtFh1qYtQu\u002BxbHAHS2mjvbw=","Mq7IjkLmQjq/gWQcP3wA/c7hViiftL4VrEkwqj51I1c=","8Wv7mvHN\u002BsTD6UY3pkFz0Rfui2CAqrlGwjYzQOKDbmM=","vqAW\u002BRIQyXn8wyOf2MZOX\u002BYCy7ezsVHEtdDBdtl2uVU=","0f9IEEXLkVqt/48Ag5\u002BqiSMpqHaBV9xHL06DHro2HZY=","8tXS3D6YxQV4wUO3IOS8MqwL3tzdD/5F8MDRBmKyRu0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"3l0KkzRu8DsdQ4/r3ewlQB7I0nRW5wW88uPyfxmsy68=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nNN2YcjThZnvjDPkRXl/SXeetzOnSiYf3BUebxCKV4s=","730Hy3atPOpMpB34uqtUoOXgyQOfj5rBUkTh9OzxSWg=","PI3qW3xM9znofdyS9DHswtFh1qYtQu\u002BxbHAHS2mjvbw=","wovwJnROzNqtloI/I\u002Bdra2\u002BkKZWBos25BfOaYZ2hvM0=","d/iUhmzPU2l4Olzbrz0N9\u002B9yjrMcHZwysCXx\u002B259kd0=","d2bFaiOr0t39Mj/RfVIGFe62/s\u002BHZw42VbFClOcO1PU=","0f9IEEXLkVqt/48Ag5\u002BqiSMpqHaBV9xHL06DHro2HZY=","dPN0xlw/UaZzhX2HZBlqkyfFU0NA2VNQ2OSVRWs9wwo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file