From ae220189f5f8dfd34d3f9c2c72764ab633138fb9 Mon Sep 17 00:00:00 2001 From: JeffreySu Date: Tue, 10 Jan 2023 19:39:25 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj | 2 +- src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj | 4 ++-- src/Senparc.NeuChar.Tests/Senparc.NeuChar.Tests.csproj | 4 ++-- src/Senparc.NeuChar/Senparc.NeuChar.csproj | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj b/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj index c3019f3..d4fd4d8 100644 --- a/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj +++ b/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj @@ -1,7 +1,7 @@ net462;netstandard2.0;netstandard2.1 - 1.1.4.2 + 1.1.4.3 Senparc.NeuChar.App Senparc.NeuChar.App true diff --git a/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj b/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj index 8187a70..bb78fb1 100644 --- a/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj +++ b/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj @@ -1,7 +1,7 @@ net462;netstandard2.0;netstandard2.1 - 1.1.3.4 + 1.1.3.3 Senparc.NeuChar.AspNet Senparc.NeuChar.AspNet $(Net35FrameworkPathOverride) @@ -57,7 +57,7 @@ - + diff --git a/src/Senparc.NeuChar.Tests/Senparc.NeuChar.Tests.csproj b/src/Senparc.NeuChar.Tests/Senparc.NeuChar.Tests.csproj index 21962d6..92b7aeb 100644 --- a/src/Senparc.NeuChar.Tests/Senparc.NeuChar.Tests.csproj +++ b/src/Senparc.NeuChar.Tests/Senparc.NeuChar.Tests.csproj @@ -12,8 +12,8 @@ - - + + diff --git a/src/Senparc.NeuChar/Senparc.NeuChar.csproj b/src/Senparc.NeuChar/Senparc.NeuChar.csproj index 6b10614..3576fca 100644 --- a/src/Senparc.NeuChar/Senparc.NeuChar.csproj +++ b/src/Senparc.NeuChar/Senparc.NeuChar.csproj @@ -1,7 +1,7 @@ net462;netstandard2.0;netstandard2.1 - 2.1.3.2 + 2.1.3.3 Senparc.NeuChar Senparc.NeuChar @@ -167,8 +167,8 @@ - - + + From d25706093bc832a15f68bee1faa7b8646534b3f8 Mon Sep 17 00:00:00 2001 From: JeffreySu Date: Tue, 10 Jan 2023 19:41:47 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E5=B9=B4=E4=BB=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Senparc.NeuChar.App/AppStore/Api/ApiConnection.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Api/ApiContainer.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Api/BaseApi.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Api/MemberApi.cs | 2 +- src/Senparc.NeuChar.App/AppStore/AppStoreManager.cs | 2 +- src/Senparc.NeuChar.App/AppStore/AppStoreOAuth.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Config.cs | 2 +- src/Senparc.NeuChar.App/AppStore/DeveloperInfo.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Entities/ApiJsonResult.cs | 2 +- .../AppStore/Entities/AppResult/AppResult.cs | 2 +- .../AppStore/Entities/AppResult/GetMemberResult.cs | 2 +- .../AppStore/Entities/AppResult/NormalAppResult.cs | 2 +- .../AppStore/Entities/AppResult/PassportResult.cs | 2 +- .../AppStore/Entities/OAuthAccessTokenResult.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Entities/Passport.cs | 2 +- .../AppStore/Entities/Passport/PassportBag.cs | 2 +- .../AppStore/Entities/Passport/PassportCollection.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Enums.cs | 2 +- src/Senparc.NeuChar.App/AppStore/ReturnResult.cs | 2 +- src/Senparc.NeuChar.App/AppStore/Utility/AppUtility.cs | 2 +- src/Senparc.NeuChar.App/Entities/NeuCharAppPostModel.cs | 4 ++-- .../MessageHandlers/NeuCharAppMessageHandler.cs | 4 ++-- src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj | 2 +- .../Controllers/NeuCharAppController.cs | 4 ++-- .../Middlewares/MessageHandlerMiddleware.cs | 4 ++-- .../Middlewares/MessageHandlerMiddlewareExtension.cs | 4 ++-- .../Middlewares/MessageHandlerMiddlewareOptions.cs | 4 ++-- src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj | 2 +- src/Senparc.NeuChar/Agents/MessageAgent.cs | 4 ++-- src/Senparc.NeuChar/ApiBind/NcApiBindAttribute.cs | 4 ++-- src/Senparc.NeuChar/ApiHandlers/ApiEnlightener.cs | 4 ++-- src/Senparc.NeuChar/ApiHandlers/ApiHandler.cs | 4 ++-- src/Senparc.NeuChar/Context/GlobalMessageContext.cs | 4 ++-- .../Context/JsonConverters/MessageContextJsonConverter.cs | 4 ++-- src/Senparc.NeuChar/Context/MessageContainer.cs | 4 ++-- src/Senparc.NeuChar/Context/MessageContext.cs | 4 ++-- src/Senparc.NeuChar/Context/MessageQueue.cs | 4 ++-- src/Senparc.NeuChar/Context/WeixinContextRemovedEventArgs.cs | 4 ++-- src/Senparc.NeuChar/Entities/Base/EntityBase.cs | 4 ++-- src/Senparc.NeuChar/Entities/Base/MessageBase.cs | 4 ++-- src/Senparc.NeuChar/Entities/Base/Request/EncryptPostModel.cs | 4 ++-- .../Base/Request/Extensions/IRequestMessageSelectMenu.cs | 4 ++-- .../Base/Request/Extensions/RequestMessageTextExtension.cs | 4 ++-- .../Base/Request/Interfaces/Event/ArticleUrlResult.cs | 2 +- .../Base/Request/Interfaces/Event/ContactSyncToken.cs | 2 +- .../Base/Request/Interfaces/Event/IRequestMessageEventKey.cs | 2 +- .../Entities/Base/Request/Interfaces/Event/ScanCodeInfo.cs | 4 ++-- .../Base/Request/Interfaces/Event/SendLocationInfo.cs | 4 ++-- .../Entities/Base/Request/Interfaces/Event/SendPicsInfo.cs | 2 +- .../Base/Request/Interfaces/Event/ShakearoundUserShake.cs | 4 ++-- .../Base/Request/Interfaces/Event/SubscribeMsgChangeEvent.cs | 4 ++-- .../Base/Request/Interfaces/Event/SubscribeMsgPopupEvent.cs | 4 ++-- .../Base/Request/Interfaces/Event/SubscribeMsgSentEvent.cs | 4 ++-- .../Base/Request/Interfaces/Event/ThirdFasteRegisterInfo.cs | 4 ++-- .../Base/Request/Interfaces/IRequestMessageMiniProgramPage.cs | 4 ++-- .../Entities/Base/Request/RequestMessageBase.cs | 4 ++-- .../Entities/Base/Request/RequestMessageEvent.cs | 4 ++-- .../Entities/Base/Request/RequestMessageNeuChar.cs | 4 ++-- .../Entities/Base/Request/RequestMessageUnknownType.cs | 4 ++-- .../Entities/Base/Response/Interfaces/Article.cs | 4 ++-- .../Base/Response/Interfaces/IResponseMessageNoResponse.cs | 4 ++-- .../Base/Response/Interfaces/IResponseMessageTaskCard.cs | 4 ++-- .../Entities/Base/Response/Interfaces/MpNewsArticle.cs | 2 +- .../Entities/Base/Response/Interfaces/Music.cs | 4 ++-- .../Entities/Base/Response/Interfaces/TaskCard.cs | 4 ++-- .../Entities/Base/Response/Interfaces/Video.cs | 4 ++-- .../Entities/Base/Response/Interfaces/Voice.cs | 4 ++-- .../Entities/Base/Response/ResponseMessageBase.cs | 4 ++-- .../Entities/Base/Response/ResponseMessageNoResponse.cs | 4 ++-- .../Entities/Base/Response/ResponseMessageUnknownType.cs | 4 ++-- .../Entities/Base/Response/SuccessResponseMessage.cs | 4 ++-- .../Entities/Base/Response/SuccessResponseMessageBase.cs | 2 +- src/Senparc.NeuChar/Entities/JsonResult/BaseJsonResult.cs | 2 +- .../Entities/JsonResult/Interfaces/IJsonResult.cs | 2 +- .../Entities/JsonResult/Interfaces/IJsonResultCallback.cs | 2 +- src/Senparc.NeuChar/Enums.cs | 4 ++-- src/Senparc.NeuChar/Exceptions/MessageHandlerException.cs | 4 ++-- src/Senparc.NeuChar/Exceptions/MiddlewareException.cs | 4 ++-- src/Senparc.NeuChar/Exceptions/NeuCharException.cs | 4 ++-- .../Exceptions/UnknownRequestMsgTypeException.cs | 4 ++-- src/Senparc.NeuChar/Extensions/NewtonSoft.Json.Extensions.cs | 4 ++-- src/Senparc.NeuChar/Helpers/EntityHelper.cs | 4 ++-- src/Senparc.NeuChar/Helpers/MsgTypeHelper.cs | 4 ++-- .../MessageHandlers/Async/DefaultMessageHandlerAsyncEvent.cs | 4 ++-- .../MessageHandlers/Async/MessageHandlerAsync.cs | 4 ++-- src/Senparc.NeuChar/MessageHandlers/IMessageHandler.cs | 4 ++-- .../MessageHandlers/IMessageHandlerDocument.cs | 4 ++-- .../MessageHandlers/IMessageHandlerWithContext.cs | 4 ++-- src/Senparc.NeuChar/MessageHandlers/MessageHandler.NeuChar.cs | 4 ++-- src/Senparc.NeuChar/MessageHandlers/MessageHandler.SaveLog.cs | 4 ++-- src/Senparc.NeuChar/MessageHandlers/MessageHandler.cs | 4 ++-- .../MessageHandlers/NeuralNode/MessageHandlerNode.Response.cs | 4 ++-- .../MessageHandlers/NeuralNode/MessageHandlerNode.cs | 4 ++-- .../MessageHandlers/NeuralNode/MessageReply.cs | 4 ++-- src/Senparc.NeuChar/Register.cs | 4 ++-- src/Senparc.NeuChar/Senparc.NeuChar.csproj | 2 +- 96 files changed, 160 insertions(+), 160 deletions(-) diff --git a/src/Senparc.NeuChar.App/AppStore/Api/ApiConnection.cs b/src/Senparc.NeuChar.App/AppStore/Api/ApiConnection.cs index 604d569..21d3b1e 100644 --- a/src/Senparc.NeuChar.App/AppStore/Api/ApiConnection.cs +++ b/src/Senparc.NeuChar.App/AppStore/Api/ApiConnection.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ApiConnection.cs 文件功能描述:API链接 diff --git a/src/Senparc.NeuChar.App/AppStore/Api/ApiContainer.cs b/src/Senparc.NeuChar.App/AppStore/Api/ApiContainer.cs index 076222a..bf31f8e 100644 --- a/src/Senparc.NeuChar.App/AppStore/Api/ApiContainer.cs +++ b/src/Senparc.NeuChar.App/AppStore/Api/ApiContainer.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ApiContainer.cs 文件功能描述:API操作容器 diff --git a/src/Senparc.NeuChar.App/AppStore/Api/BaseApi.cs b/src/Senparc.NeuChar.App/AppStore/Api/BaseApi.cs index 5367a3c..3fa2b8e 100644 --- a/src/Senparc.NeuChar.App/AppStore/Api/BaseApi.cs +++ b/src/Senparc.NeuChar.App/AppStore/Api/BaseApi.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:BaseApi.cs 文件功能描述:API调用类基类 diff --git a/src/Senparc.NeuChar.App/AppStore/Api/MemberApi.cs b/src/Senparc.NeuChar.App/AppStore/Api/MemberApi.cs index c0130b4..70fcd06 100644 --- a/src/Senparc.NeuChar.App/AppStore/Api/MemberApi.cs +++ b/src/Senparc.NeuChar.App/AppStore/Api/MemberApi.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MemberApi.cs 文件功能描述:获取用户信息Api diff --git a/src/Senparc.NeuChar.App/AppStore/AppStoreManager.cs b/src/Senparc.NeuChar.App/AppStore/AppStoreManager.cs index 5605a26..64fb1b4 100644 --- a/src/Senparc.NeuChar.App/AppStore/AppStoreManager.cs +++ b/src/Senparc.NeuChar.App/AppStore/AppStoreManager.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:AppStoreManager.cs 文件功能描述:AppStoreOAuth diff --git a/src/Senparc.NeuChar.App/AppStore/AppStoreOAuth.cs b/src/Senparc.NeuChar.App/AppStore/AppStoreOAuth.cs index ec8059e..9b2e02d 100644 --- a/src/Senparc.NeuChar.App/AppStore/AppStoreOAuth.cs +++ b/src/Senparc.NeuChar.App/AppStore/AppStoreOAuth.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:AppStoreOAuth.cs 文件功能描述:AppStoreOAuth diff --git a/src/Senparc.NeuChar.App/AppStore/Config.cs b/src/Senparc.NeuChar.App/AppStore/Config.cs index dd38f25..6335bc2 100644 --- a/src/Senparc.NeuChar.App/AppStore/Config.cs +++ b/src/Senparc.NeuChar.App/AppStore/Config.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Config.cs 文件功能描述:调试设置 diff --git a/src/Senparc.NeuChar.App/AppStore/DeveloperInfo.cs b/src/Senparc.NeuChar.App/AppStore/DeveloperInfo.cs index 2d4d6ba..55f50e9 100644 --- a/src/Senparc.NeuChar.App/AppStore/DeveloperInfo.cs +++ b/src/Senparc.NeuChar.App/AppStore/DeveloperInfo.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ReturnResult.cs 文件功能描述:微微嗨开发者信息 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/ApiJsonResult.cs b/src/Senparc.NeuChar.App/AppStore/Entities/ApiJsonResult.cs index 7b9a7b7..fd8a45c 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/ApiJsonResult.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/ApiJsonResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ApiJsonResult.cs 文件功能描述:JSON返回结果 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/AppResult.cs b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/AppResult.cs index 30cba0a..16ae309 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/AppResult.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/AppResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:AppResult.cs 文件功能描述:获取App返回结果 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/GetMemberResult.cs b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/GetMemberResult.cs index 258de43..e040f2f 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/GetMemberResult.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/GetMemberResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:GetMemberResult.cs 文件功能描述:获取微信会员信息结果 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/NormalAppResult.cs b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/NormalAppResult.cs index 55e764e..80016e9 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/NormalAppResult.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/NormalAppResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:NormalAppResult.cs 文件功能描述:普通API返回类型 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/PassportResult.cs b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/PassportResult.cs index 03dda1d..43d55dd 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/PassportResult.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/AppResult/PassportResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:PassportResult.cs 文件功能描述:获取通行证结果 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/OAuthAccessTokenResult.cs b/src/Senparc.NeuChar.App/AppStore/Entities/OAuthAccessTokenResult.cs index a4a9d37..5bbc667 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/OAuthAccessTokenResult.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/OAuthAccessTokenResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:OAuthAccessTokenResult.cs 文件功能描述:获取OAuth AccessToken的结果 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/Passport.cs b/src/Senparc.NeuChar.App/AppStore/Entities/Passport.cs index 451dc04..12767e8 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/Passport.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/Passport.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Passport.cs 文件功能描述:P2P通行证 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportBag.cs b/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportBag.cs index d79b4cd..5665c19 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportBag.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportBag.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:PassportBag.cs 文件功能描述:Passport包 diff --git a/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportCollection.cs b/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportCollection.cs index 3a8d847..e6a907d 100644 --- a/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportCollection.cs +++ b/src/Senparc.NeuChar.App/AppStore/Entities/Passport/PassportCollection.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:PassportCollection.cs 文件功能描述:同时管理多个应用的Passport的容器 diff --git a/src/Senparc.NeuChar.App/AppStore/Enums.cs b/src/Senparc.NeuChar.App/AppStore/Enums.cs index 7582040..c346a1c 100644 --- a/src/Senparc.NeuChar.App/AppStore/Enums.cs +++ b/src/Senparc.NeuChar.App/AppStore/Enums.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Enums.cs 文件功能描述:返回结果枚举类型 diff --git a/src/Senparc.NeuChar.App/AppStore/ReturnResult.cs b/src/Senparc.NeuChar.App/AppStore/ReturnResult.cs index d4cc855..c6c51f0 100644 --- a/src/Senparc.NeuChar.App/AppStore/ReturnResult.cs +++ b/src/Senparc.NeuChar.App/AppStore/ReturnResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ReturnResult.cs 文件功能描述:返回结果类型 diff --git a/src/Senparc.NeuChar.App/AppStore/Utility/AppUtility.cs b/src/Senparc.NeuChar.App/AppStore/Utility/AppUtility.cs index 88469ed..04fe1fd 100644 --- a/src/Senparc.NeuChar.App/AppStore/Utility/AppUtility.cs +++ b/src/Senparc.NeuChar.App/AppStore/Utility/AppUtility.cs @@ -1,5 +1,5 @@ /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:AppUtility.cs 文件功能描述:获取RequestMessage中ToUserName中的信息 diff --git a/src/Senparc.NeuChar.App/Entities/NeuCharAppPostModel.cs b/src/Senparc.NeuChar.App/Entities/NeuCharAppPostModel.cs index 4fa56e9..7325d5d 100644 --- a/src/Senparc.NeuChar.App/Entities/NeuCharAppPostModel.cs +++ b/src/Senparc.NeuChar.App/Entities/NeuCharAppPostModel.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:NeuCharAppPostModel.cs 文件功能描述:定义枚举文件 diff --git a/src/Senparc.NeuChar.App/MessageHandlers/NeuCharAppMessageHandler.cs b/src/Senparc.NeuChar.App/MessageHandlers/NeuCharAppMessageHandler.cs index fdc6128..c7dbab5 100644 --- a/src/Senparc.NeuChar.App/MessageHandlers/NeuCharAppMessageHandler.cs +++ b/src/Senparc.NeuChar.App/MessageHandlers/NeuCharAppMessageHandler.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:NeuCharAppMessageHandler.cs 文件功能描述:此 MessageHandler 仅提供 NeuChar 平台对接使用,无其他功能 diff --git a/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj b/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj index d4fd4d8..39c215b 100644 --- a/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj +++ b/src/Senparc.NeuChar.App/Senparc.NeuChar.App.csproj @@ -11,7 +11,7 @@ NeuChar APP 以及 NeuChar Ending 的对接 SDK - Senparc Copyright © 2004~2022 + Senparc Copyright © 2004~2023 NeuChar,Standard,json,yaml,xml,ending,app Jeffrey Su Senparc diff --git a/src/Senparc.NeuChar.AspNet/Controllers/NeuCharAppController.cs b/src/Senparc.NeuChar.AspNet/Controllers/NeuCharAppController.cs index 11dad58..33edfd1 100644 --- a/src/Senparc.NeuChar.AspNet/Controllers/NeuCharAppController.cs +++ b/src/Senparc.NeuChar.AspNet/Controllers/NeuCharAppController.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:NeuCharAppController.cs 文件功能描述:用于快速实现 NeuChar 开发者发布的 App 与 NeuChar 平台交互(如状态发送)的默认 Controller diff --git a/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddleware.cs b/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddleware.cs index ac1bddf..efb5957 100644 --- a/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddleware.cs +++ b/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddleware.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandlerMiddleware.cs 文件功能描述:MessageHandler 中间件基类 diff --git a/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareExtension.cs b/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareExtension.cs index 1d18890..fb0c42b 100644 --- a/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareExtension.cs +++ b/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareExtension.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandlerMiddlewareExtension.cs 文件功能描述:MessageHandler 中间件基类 diff --git a/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareOptions.cs b/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareOptions.cs index 3d753ac..2cc5af9 100644 --- a/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareOptions.cs +++ b/src/Senparc.NeuChar.AspNet/Middlewares/MessageHandlerMiddlewareOptions.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandlerMiddlewareOptions.cs 文件功能描述:MessageHandler 中间件选项设置类配置信息 diff --git a/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj b/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj index bb78fb1..f8f51a2 100644 --- a/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj +++ b/src/Senparc.NeuChar.AspNet/Senparc.NeuChar.AspNet.csproj @@ -11,7 +11,7 @@ NeuChar SDK 跨平台信息交互标准 - Senparc Copyright © 2004~2022 + Senparc Copyright © 2004~2023 NeuChar,Standard,json,yaml,xml,AspNet,AspNetCore Jeffrey Su Senparc diff --git a/src/Senparc.NeuChar/Agents/MessageAgent.cs b/src/Senparc.NeuChar/Agents/MessageAgent.cs index a2085aa..7d42de1 100644 --- a/src/Senparc.NeuChar/Agents/MessageAgent.cs +++ b/src/Senparc.NeuChar/Agents/MessageAgent.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageAgent.cs 文件功能描述:代理请求 diff --git a/src/Senparc.NeuChar/ApiBind/NcApiBindAttribute.cs b/src/Senparc.NeuChar/ApiBind/NcApiBindAttribute.cs index c87df1a..9b34d0e 100644 --- a/src/Senparc.NeuChar/ApiBind/NcApiBindAttribute.cs +++ b/src/Senparc.NeuChar/ApiBind/NcApiBindAttribute.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ApiBindAttribute.cs 文件功能描述:微信等平台使用的自动绑定属性 diff --git a/src/Senparc.NeuChar/ApiHandlers/ApiEnlightener.cs b/src/Senparc.NeuChar/ApiHandlers/ApiEnlightener.cs index f72c763..198da2a 100644 --- a/src/Senparc.NeuChar/ApiHandlers/ApiEnlightener.cs +++ b/src/Senparc.NeuChar/ApiHandlers/ApiEnlightener.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ApiEnlightener.cs 文件功能描述:API信息初始化 diff --git a/src/Senparc.NeuChar/ApiHandlers/ApiHandler.cs b/src/Senparc.NeuChar/ApiHandlers/ApiHandler.cs index 05640eb..0ea8ef2 100644 --- a/src/Senparc.NeuChar/ApiHandlers/ApiHandler.cs +++ b/src/Senparc.NeuChar/ApiHandlers/ApiHandler.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ApiHandler.cs 文件功能描述:ApiHandler diff --git a/src/Senparc.NeuChar/Context/GlobalMessageContext.cs b/src/Senparc.NeuChar/Context/GlobalMessageContext.cs index 03fe324..9b88257 100644 --- a/src/Senparc.NeuChar/Context/GlobalMessageContext.cs +++ b/src/Senparc.NeuChar/Context/GlobalMessageContext.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:WeixinContext.cs 文件功能描述:微信消息上下文(全局) diff --git a/src/Senparc.NeuChar/Context/JsonConverters/MessageContextJsonConverter.cs b/src/Senparc.NeuChar/Context/JsonConverters/MessageContextJsonConverter.cs index 25110c7..2689e54 100644 --- a/src/Senparc.NeuChar/Context/JsonConverters/MessageContextJsonConverter.cs +++ b/src/Senparc.NeuChar/Context/JsonConverters/MessageContextJsonConverter.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageContextJsonConverter.cs 文件功能描述:Json 反序列化时用到的 JsonConverter diff --git a/src/Senparc.NeuChar/Context/MessageContainer.cs b/src/Senparc.NeuChar/Context/MessageContainer.cs index 76e20eb..5054b48 100644 --- a/src/Senparc.NeuChar/Context/MessageContainer.cs +++ b/src/Senparc.NeuChar/Context/MessageContainer.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageContainer.cs 文件功能描述:微信消息容器 diff --git a/src/Senparc.NeuChar/Context/MessageContext.cs b/src/Senparc.NeuChar/Context/MessageContext.cs index 3a39184..d501ce6 100644 --- a/src/Senparc.NeuChar/Context/MessageContext.cs +++ b/src/Senparc.NeuChar/Context/MessageContext.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageContext.cs 文件功能描述:微信消息上下文(单个用户)接口 diff --git a/src/Senparc.NeuChar/Context/MessageQueue.cs b/src/Senparc.NeuChar/Context/MessageQueue.cs index 6a82965..4c09230 100644 --- a/src/Senparc.NeuChar/Context/MessageQueue.cs +++ b/src/Senparc.NeuChar/Context/MessageQueue.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageQueue.cs 文件功能描述:微信消息队列(针对单个账号的往来消息) diff --git a/src/Senparc.NeuChar/Context/WeixinContextRemovedEventArgs.cs b/src/Senparc.NeuChar/Context/WeixinContextRemovedEventArgs.cs index 8becf28..c76eeec 100644 --- a/src/Senparc.NeuChar/Context/WeixinContextRemovedEventArgs.cs +++ b/src/Senparc.NeuChar/Context/WeixinContextRemovedEventArgs.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:WeixinContextRemovedEventArgs.cs 文件功能描述:对话上下文被删除时触发事件的事件数据 diff --git a/src/Senparc.NeuChar/Entities/Base/EntityBase.cs b/src/Senparc.NeuChar/Entities/Base/EntityBase.cs index f6e19c4..99f4a64 100644 --- a/src/Senparc.NeuChar/Entities/Base/EntityBase.cs +++ b/src/Senparc.NeuChar/Entities/Base/EntityBase.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:EntityBase.cs 文件功能描述:EntityBase diff --git a/src/Senparc.NeuChar/Entities/Base/MessageBase.cs b/src/Senparc.NeuChar/Entities/Base/MessageBase.cs index bcf31b5..a9d4b26 100644 --- a/src/Senparc.NeuChar/Entities/Base/MessageBase.cs +++ b/src/Senparc.NeuChar/Entities/Base/MessageBase.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageBase.cs 文件功能描述:所有Request和Response消息的基类 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/EncryptPostModel.cs b/src/Senparc.NeuChar/Entities/Base/Request/EncryptPostModel.cs index f7c7c57..7a0ac92 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/EncryptPostModel.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/EncryptPostModel.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:EncryptPostModel.cs 文件功能描述:加解密消息统一基类 接口 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Extensions/IRequestMessageSelectMenu.cs b/src/Senparc.NeuChar/Entities/Base/Request/Extensions/IRequestMessageSelectMenu.cs index 686dfb0..166636d 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Extensions/IRequestMessageSelectMenu.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Extensions/IRequestMessageSelectMenu.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IRequestMessageSelectMenu.cs 文件功能描述:选择菜单点击后的请求接口 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Extensions/RequestMessageTextExtension.cs b/src/Senparc.NeuChar/Entities/Base/Request/Extensions/RequestMessageTextExtension.cs index 7e3ee65..4200cf4 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Extensions/RequestMessageTextExtension.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Extensions/RequestMessageTextExtension.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:TenPayV3.cs 文件功能描述:微信支付V3接口 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ArticleUrlResult.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ArticleUrlResult.cs index 772abc9..58dc6c0 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ArticleUrlResult.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ArticleUrlResult.cs @@ -1,5 +1,5 @@ /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ArticleUrlResult.cs 文件功能描述:群发文章的 URL 返回结果 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ContactSyncToken.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ContactSyncToken.cs index cae5483..fe2a26a 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ContactSyncToken.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ContactSyncToken.cs @@ -1,5 +1,5 @@ /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ContactSyncToken.cs 文件功能描述:企业微信服务商推广码注册成功返回的通讯录迁移的凭证信息。仅当注册推广包开启通讯录迁移接口时返回该参数 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/IRequestMessageEventKey.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/IRequestMessageEventKey.cs index ad58087..37e7d11 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/IRequestMessageEventKey.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/IRequestMessageEventKey.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IRequestMessageEventKey.cs 文件功能描述:具有EventKey属性的RequestMessage接口 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ScanCodeInfo.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ScanCodeInfo.cs index 5b020f0..1ac3ba1 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ScanCodeInfo.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ScanCodeInfo.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ScanCodeInfo.cs 文件功能描述:扫码事件中的ScanCodeInfo diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendLocationInfo.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendLocationInfo.cs index f4c6f05..c34b5f7 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendLocationInfo.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendLocationInfo.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:SendLocationInfo.cs 文件功能描述:弹出地理位置选择器的事件推送中的SendLocationInfo diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendPicsInfo.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendPicsInfo.cs index f2fc00f..0a0c23f 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendPicsInfo.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SendPicsInfo.cs @@ -1,5 +1,5 @@ /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:SendPicsInfo.cs 文件功能描述:系统拍照发图中的SendPicsInfo diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ShakearoundUserShake.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ShakearoundUserShake.cs index 0f1ea4f..bc1e414 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ShakearoundUserShake.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ShakearoundUserShake.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ShakearoundUserShake.cs 文件功能描述:系统拍照发图中的SendPicsInfo diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgChangeEvent.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgChangeEvent.cs index 242168d..f02c81b 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgChangeEvent.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgChangeEvent.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:SubscribeMsgChangeEvent.cs 文件功能描述:用户管理订阅通知 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgPopupEvent.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgPopupEvent.cs index 2b96565..c7b18c9 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgPopupEvent.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgPopupEvent.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:SubscribeMsgPopupEvent.cs 文件功能描述:用户操作订阅通知弹窗 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgSentEvent.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgSentEvent.cs index d4b3af0..f2f588f 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgSentEvent.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/SubscribeMsgSentEvent.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:SubscribeMsgSentEvent.cs 文件功能描述:发送订阅通知 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ThirdFasteRegisterInfo.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ThirdFasteRegisterInfo.cs index f75bdda..2922775 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ThirdFasteRegisterInfo.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/Event/ThirdFasteRegisterInfo.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ThirdFasteRegisterInfo.cs 文件功能描述:第三方快速注册小程序的注册审核事件推送中的info diff --git a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/IRequestMessageMiniProgramPage.cs b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/IRequestMessageMiniProgramPage.cs index 72068ad..cc5059b 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/IRequestMessageMiniProgramPage.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/Interfaces/IRequestMessageMiniProgramPage.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IRequestMessageMiniProgramPage.cs 文件功能描述:所有 RequestMessageMiniProgramPage 的接口 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageBase.cs b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageBase.cs index 92aea14..9f313f1 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageBase.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageBase.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:RequestMessageBase.cs 文件功能描述:接收请求消息基类 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageEvent.cs b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageEvent.cs index e7d86b1..db2d550 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageEvent.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageEvent.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:RequestMessageEvent.cs 文件功能描述:所有事件消息的基类 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageNeuChar.cs b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageNeuChar.cs index a569e92..c6b06da 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageNeuChar.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageNeuChar.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:RequestMessageNeuChar.cs 文件功能描述:接收 NeuChar 消息 diff --git a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageUnknownType.cs b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageUnknownType.cs index 755ffa8..fe0a88c 100644 --- a/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageUnknownType.cs +++ b/src/Senparc.NeuChar/Entities/Base/Request/RequestMessageUnknownType.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:RequestMessageUnknownType.cs 文件功能描述:未知请求类型 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Article.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Article.cs index d038f22..e717084 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Article.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Article.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Article.cs 文件功能描述:响应回复消息 图文类 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageNoResponse.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageNoResponse.cs index c530729..cdea895 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageNoResponse.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageNoResponse.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IResponseMessageNoResponse.cs 文件功能描述:无需响应(回复空字符串)的响应类型接口 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageTaskCard.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageTaskCard.cs index 53c9c03..39df7ec 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageTaskCard.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/IResponseMessageTaskCard.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IResponseMessageTaskCard.cs 文件功能描述:增任务卡片被动回复消息 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/MpNewsArticle.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/MpNewsArticle.cs index d4b929a..65fd776 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/MpNewsArticle.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/MpNewsArticle.cs @@ -1,5 +1,5 @@ /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MpNewsArticle.cs 文件功能描述:响应回复消息 MpNewsArticle diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Music.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Music.cs index 4225d66..52ad788 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Music.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Music.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Music.cs 文件功能描述:响应回复消息 音乐类 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/TaskCard.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/TaskCard.cs index e63b0fe..6fbb430 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/TaskCard.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/TaskCard.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:TaskCard.cs 文件功能描述:增任务卡片被动回复消息的属性:TaskCard diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Video.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Video.cs index 457d009..375012d 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Video.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Video.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Video.cs 文件功能描述:响应回复消息 视频类 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Voice.cs b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Voice.cs index 3a8e2d0..2a910f8 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Voice.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/Interfaces/Voice.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Voice.cs 文件功能描述:响应回复消息 语音类 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageBase.cs b/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageBase.cs index 2bddb3c..8223cd1 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageBase.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageBase.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ResponseMessageBase.cs 文件功能描述:响应回复消息基类 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageNoResponse.cs b/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageNoResponse.cs index e362c76..c6bc176 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageNoResponse.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageNoResponse.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ResponseMessageNoResponse.cs 文件功能描述:无需响应(回复空字符串)的响应类型 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageUnknownType.cs b/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageUnknownType.cs index 28c9e09..b7142ef 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageUnknownType.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/ResponseMessageUnknownType.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:ResponseMessageUnknownType.cs 文件功能描述:未知响应类型 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessage.cs b/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessage.cs index 53f6000..3523d98 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessage.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessage.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:SuccessResponseMessage.cs 文件功能描述:只返回"success"等指定字符串的响应信息 diff --git a/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessageBase.cs b/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessageBase.cs index 5bdcbe5..ef87b60 100644 --- a/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessageBase.cs +++ b/src/Senparc.NeuChar/Entities/Base/Response/SuccessResponseMessageBase.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/Senparc.NeuChar/Entities/JsonResult/BaseJsonResult.cs b/src/Senparc.NeuChar/Entities/JsonResult/BaseJsonResult.cs index 8ad0d1a..cd362cb 100644 --- a/src/Senparc.NeuChar/Entities/JsonResult/BaseJsonResult.cs +++ b/src/Senparc.NeuChar/Entities/JsonResult/BaseJsonResult.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:BaseJsonResult.cs 文件功能描述:所有xxJsonResult(基类)的基类 diff --git a/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResult.cs b/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResult.cs index 80497b4..698e982 100644 --- a/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResult.cs +++ b/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResult.cs @@ -20,7 +20,7 @@ /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IJsonResult.cs 文件功能描述:所有JSON返回结果基类 diff --git a/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResultCallback.cs b/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResultCallback.cs index 108b5c3..875c89c 100644 --- a/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResultCallback.cs +++ b/src/Senparc.NeuChar/Entities/JsonResult/Interfaces/IJsonResultCallback.cs @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IJsonResultCallback.cs 文件功能描述:JSON数据(序列化)回调接口 diff --git a/src/Senparc.NeuChar/Enums.cs b/src/Senparc.NeuChar/Enums.cs index 092999c..81968e0 100644 --- a/src/Senparc.NeuChar/Enums.cs +++ b/src/Senparc.NeuChar/Enums.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Enums.cs 文件功能描述:定义枚举文件 diff --git a/src/Senparc.NeuChar/Exceptions/MessageHandlerException.cs b/src/Senparc.NeuChar/Exceptions/MessageHandlerException.cs index 4c4ba7f..3c38a37 100644 --- a/src/Senparc.NeuChar/Exceptions/MessageHandlerException.cs +++ b/src/Senparc.NeuChar/Exceptions/MessageHandlerException.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandlerException.cs 文件功能描述:微信消息异常处理类 diff --git a/src/Senparc.NeuChar/Exceptions/MiddlewareException.cs b/src/Senparc.NeuChar/Exceptions/MiddlewareException.cs index 2c06c53..064bb8f 100644 --- a/src/Senparc.NeuChar/Exceptions/MiddlewareException.cs +++ b/src/Senparc.NeuChar/Exceptions/MiddlewareException.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MiddlewareException.cs 文件功能描述:中间件异常信息 diff --git a/src/Senparc.NeuChar/Exceptions/NeuCharException.cs b/src/Senparc.NeuChar/Exceptions/NeuCharException.cs index 9b98b2e..5da55a1 100644 --- a/src/Senparc.NeuChar/Exceptions/NeuCharException.cs +++ b/src/Senparc.NeuChar/Exceptions/NeuCharException.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:NeuCharException.cs 文件功能描述:NeuChar异常处理 diff --git a/src/Senparc.NeuChar/Exceptions/UnknownRequestMsgTypeException.cs b/src/Senparc.NeuChar/Exceptions/UnknownRequestMsgTypeException.cs index ed2a6b6..aedb3a7 100644 --- a/src/Senparc.NeuChar/Exceptions/UnknownRequestMsgTypeException.cs +++ b/src/Senparc.NeuChar/Exceptions/UnknownRequestMsgTypeException.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:UnknownRequestMsgTypeException.cs 文件功能描述:未知请求类型 diff --git a/src/Senparc.NeuChar/Extensions/NewtonSoft.Json.Extensions.cs b/src/Senparc.NeuChar/Extensions/NewtonSoft.Json.Extensions.cs index e29b119..6877d2d 100644 --- a/src/Senparc.NeuChar/Extensions/NewtonSoft.Json.Extensions.cs +++ b/src/Senparc.NeuChar/Extensions/NewtonSoft.Json.Extensions.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:NewtonSoft.Json.Extensions.cs 文件功能描述:NewtonSoft.Json 的扩展方法 diff --git a/src/Senparc.NeuChar/Helpers/EntityHelper.cs b/src/Senparc.NeuChar/Helpers/EntityHelper.cs index 97fb6d3..490430b 100644 --- a/src/Senparc.NeuChar/Helpers/EntityHelper.cs +++ b/src/Senparc.NeuChar/Helpers/EntityHelper.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:EntityHelper.cs 文件功能描述:实体与xml相互转换 diff --git a/src/Senparc.NeuChar/Helpers/MsgTypeHelper.cs b/src/Senparc.NeuChar/Helpers/MsgTypeHelper.cs index 57574b1..3339bb9 100644 --- a/src/Senparc.NeuChar/Helpers/MsgTypeHelper.cs +++ b/src/Senparc.NeuChar/Helpers/MsgTypeHelper.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MsgTypeHelper.cs 文件功能描述:根据xml信息返回MsgType diff --git a/src/Senparc.NeuChar/MessageHandlers/Async/DefaultMessageHandlerAsyncEvent.cs b/src/Senparc.NeuChar/MessageHandlers/Async/DefaultMessageHandlerAsyncEvent.cs index aa9bd3a..0f42e19 100644 --- a/src/Senparc.NeuChar/MessageHandlers/Async/DefaultMessageHandlerAsyncEvent.cs +++ b/src/Senparc.NeuChar/MessageHandlers/Async/DefaultMessageHandlerAsyncEvent.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:DefaultMessageHandlerAsyncEvent.cs 文件功能描述:MessageHandler事件异步方法的默认调用方法(在没有override的情况下) diff --git a/src/Senparc.NeuChar/MessageHandlers/Async/MessageHandlerAsync.cs b/src/Senparc.NeuChar/MessageHandlers/Async/MessageHandlerAsync.cs index 21778a0..17ca718 100644 --- a/src/Senparc.NeuChar/MessageHandlers/Async/MessageHandlerAsync.cs +++ b/src/Senparc.NeuChar/MessageHandlers/Async/MessageHandlerAsync.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandler.cs 文件功能描述:微信请求【异步方法】的集中处理方法 diff --git a/src/Senparc.NeuChar/MessageHandlers/IMessageHandler.cs b/src/Senparc.NeuChar/MessageHandlers/IMessageHandler.cs index 77b6366..5cadadc 100644 --- a/src/Senparc.NeuChar/MessageHandlers/IMessageHandler.cs +++ b/src/Senparc.NeuChar/MessageHandlers/IMessageHandler.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:RequestUtility.cs 文件功能描述:微信请求集中处理接口 diff --git a/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerDocument.cs b/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerDocument.cs index 195a823..74816a2 100644 --- a/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerDocument.cs +++ b/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerDocument.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IMessageHandlerDocument.cs 文件功能描述:为IMessageHandler单独提供XDocument类型的属性接口(主要是ResponseDocument)。 diff --git a/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerWithContext.cs b/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerWithContext.cs index 528be04..0424e28 100644 --- a/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerWithContext.cs +++ b/src/Senparc.NeuChar/MessageHandlers/IMessageHandlerWithContext.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:IMessageHandlerWithContext.cs 文件功能描述:具有上下文的 MessageHandler 接口 diff --git a/src/Senparc.NeuChar/MessageHandlers/MessageHandler.NeuChar.cs b/src/Senparc.NeuChar/MessageHandlers/MessageHandler.NeuChar.cs index 7b618e8..526895c 100644 --- a/src/Senparc.NeuChar/MessageHandlers/MessageHandler.NeuChar.cs +++ b/src/Senparc.NeuChar/MessageHandlers/MessageHandler.NeuChar.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandler.NeuChar.cs 文件功能描述:微信请求中有关 NeuChar 方法的集中处理方法 diff --git a/src/Senparc.NeuChar/MessageHandlers/MessageHandler.SaveLog.cs b/src/Senparc.NeuChar/MessageHandlers/MessageHandler.SaveLog.cs index 5cedaa3..babe66e 100644 --- a/src/Senparc.NeuChar/MessageHandlers/MessageHandler.SaveLog.cs +++ b/src/Senparc.NeuChar/MessageHandlers/MessageHandler.SaveLog.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandler.SaveLog.cs 文件功能描述:微信请求日志记录 diff --git a/src/Senparc.NeuChar/MessageHandlers/MessageHandler.cs b/src/Senparc.NeuChar/MessageHandlers/MessageHandler.cs index 15519c0..d5dcb33 100644 --- a/src/Senparc.NeuChar/MessageHandlers/MessageHandler.cs +++ b/src/Senparc.NeuChar/MessageHandlers/MessageHandler.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandler.cs 文件功能描述:微信请求的集中处理方法 diff --git a/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.Response.cs b/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.Response.cs index 7178c1c..b03ed55 100644 --- a/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.Response.cs +++ b/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.Response.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandlerNode.Response.cs 文件功能描述:MessageHandlerNode 部分类,返回消息部分的代码 diff --git a/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.cs b/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.cs index 215dd39..d141785 100644 --- a/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.cs +++ b/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageHandlerNode.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageHandlerNode.cs 文件功能描述:MessageHandler 的神经节点 diff --git a/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageReply.cs b/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageReply.cs index 88159ac..0505be2 100644 --- a/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageReply.cs +++ b/src/Senparc.NeuChar/MessageHandlers/NeuralNode/MessageReply.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:MessageReply.cs 文件功能描述:MessageReply 相关类 diff --git a/src/Senparc.NeuChar/Register.cs b/src/Senparc.NeuChar/Register.cs index db3bed8..5fc5366 100644 --- a/src/Senparc.NeuChar/Register.cs +++ b/src/Senparc.NeuChar/Register.cs @@ -1,7 +1,7 @@ #region Apache License Version 2.0 /*---------------------------------------------------------------- -Copyright 2021 Suzhou Senparc Network Technology Co.,Ltd. +Copyright 2023 Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,7 +19,7 @@ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- - Copyright (C) 2022 Senparc + Copyright (C) 2023 Senparc 文件名:Register.cs 文件功能描述:NeuChar 注册类 diff --git a/src/Senparc.NeuChar/Senparc.NeuChar.csproj b/src/Senparc.NeuChar/Senparc.NeuChar.csproj index 3576fca..0554e59 100644 --- a/src/Senparc.NeuChar/Senparc.NeuChar.csproj +++ b/src/Senparc.NeuChar/Senparc.NeuChar.csproj @@ -12,7 +12,7 @@ NeuChar SDK 跨平台信息交互标准 - Senparc Copyright © 2004~2022 + Senparc Copyright © 2004~2023 NeuChar,Standard,json,yaml,xml Jeffrey Su Senparc