From f6777a52943f41b15ce80a76740c23515a1fc091 Mon Sep 17 00:00:00 2001 From: dyy <807692433@qq.com> Date: Fri, 17 Jun 2022 17:44:23 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E4=BA=BA?= =?UTF-8?q?=E8=84=B8=E5=8F=91=E9=80=81=E6=8E=A5=E5=8F=A3=EF=BC=9A=E5=8F=91?= =?UTF-8?q?=E9=80=81=E6=95=99=E5=B8=88=E4=BF=A1=E6=81=AF=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Learun.Application.WebApi/Modules/TransferApi.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/TransferApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/TransferApi.cs index 4ca4689d6..5644082bf 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/TransferApi.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/TransferApi.cs @@ -40,6 +40,8 @@ namespace Learun.Application.WebApi Get["/sendDeptInfo"] = SendDeptInfo; //发送教师基础信息 Get["/sendTeacherInfo"] = SendTeacherInfo; + //发送学生基础信息 + Get["/sendStudentInfo"] = SendStudentInfo; } /// /// cookie @@ -245,6 +247,14 @@ namespace Learun.Application.WebApi return Success(result); } + /// + /// 发送学生基础信息 + /// + /// + public Response SendStudentInfo(dynamic _) + { + return Success("成功了!"); + } #endregion #region 公共方法