|
|
@@ -40,6 +40,8 @@ namespace Learun.Application.WebApi |
|
|
|
Get["/sendDeptInfo"] = SendDeptInfo; |
|
|
|
//发送教师基础信息 |
|
|
|
Get["/sendTeacherInfo"] = SendTeacherInfo; |
|
|
|
//发送学生基础信息 |
|
|
|
Get["/sendStudentInfo"] = SendStudentInfo; |
|
|
|
} |
|
|
|
/// <summary> |
|
|
|
/// cookie |
|
|
@@ -245,6 +247,14 @@ namespace Learun.Application.WebApi |
|
|
|
return Success(result); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// 发送学生基础信息 |
|
|
|
/// </summary> |
|
|
|
/// <returns></returns> |
|
|
|
public Response SendStudentInfo(dynamic _) |
|
|
|
{ |
|
|
|
return Success("成功了!"); |
|
|
|
} |
|
|
|
#endregion |
|
|
|
|
|
|
|
#region 公共方法 |
|
|
|