From bb7e25729fc9b0b4b4094158ddf24e7f62235911 Mon Sep 17 00:00:00 2001 From: xpnas Date: Fri, 2 Apr 2021 01:14:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=89=88=E6=9C=AC=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=E5=85=BC=E5=AE=B9=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=A4=9A=E9=80=9A=E9=81=93=E6=B6=88=E6=81=AF=E5=8F=91=E9=80=81?= =?UTF-8?q?=20BARK=E9=83=A8=E5=88=86=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../manager/settingpro/sendauths/index.vue | 2 +- Inotify/Common/Extensions.cs | 18 ++ Inotify/Controllers/BarkControlor.cs | 118 +++++++++ .../{BaseController.cs => BaseControlor.cs} | 39 ++- Inotify/Controllers/OAuthControlor.cs | 2 +- Inotify/Controllers/SendControlor.cs | 2 +- Inotify/Controllers/SettingControlor.cs | 43 +-- Inotify/Controllers/SetttingSysControlor.cs | 2 +- Inotify/Data/DBManager.cs | 65 +++-- Inotify/Data/DBMigrations.cs | 78 ++++++ Inotify/Data/Models/SendAuthInfo.cs | 3 + Inotify/Inotify.csproj | 14 +- Inotify/Inotify.sln | 2 +- Inotify/Sends/Products/BarkSendTemplate.cs | 248 ++++++++++++++++++ Inotify/Sends/Products/HttpPostTemplate.cs | 12 +- Inotify/Sends/Products/WeixiSendTemplate.cs | 20 +- Inotify/Sends/SendTaskManager.cs | 58 ++-- Inotify/Sends/SendTemplate.cs | 17 +- Inotify/Startup.cs | 7 +- 19 files changed, 643 insertions(+), 107 deletions(-) create mode 100644 Inotify/Controllers/BarkControlor.cs rename Inotify/Controllers/{BaseController.cs => BaseControlor.cs} (59%) create mode 100644 Inotify/Data/DBMigrations.cs create mode 100644 Inotify/Sends/Products/BarkSendTemplate.cs diff --git a/Inotify.Vue/src/views/manager/settingpro/sendauths/index.vue b/Inotify.Vue/src/views/manager/settingpro/sendauths/index.vue index 36577b6..d47e164 100644 --- a/Inotify.Vue/src/views/manager/settingpro/sendauths/index.vue +++ b/Inotify.Vue/src/views/manager/settingpro/sendauths/index.vue @@ -1,7 +1,7 @@