Commit 4f386cbf authored by 吴春's avatar 吴春

1

parent 1d41aec8
......@@ -706,7 +706,7 @@ namespace Edu.WebApi.Controllers.Course
CourseId = base.ParmJObj.GetInt("CourseId"),
IsQRoot = base.ParmJObj.GetInt("IsQRoot"),
QOrderId = base.ParmJObj.GetInt("OrderId"),
QOrderBy=1,
QOrderBy = 1,
};
if (query.CourseId <= 0)
{
......@@ -1649,5 +1649,45 @@ namespace Edu.WebApi.Controllers.Course
return flag ? ApiResult.Success() : ApiResult.Failed();
}
#endregion
#region 测试
[HttpPost]
public ApiResult EduCreateScrollChapterTimer()
{
try
{
LogHelper.Write("滚动开班预约课程生成");
scrollClassCommon.CreateScrollAppointment(100000);
}
catch (Exception ex)
{
LogHelper.Write(ex, "CreateScrollAppointment");
}
try
{
LogHelper.Write("滚动开班预约课程即将取消通知");
scrollClassCommon.RemindScrollAppointment(100000);
}
catch (Exception ex)
{
LogHelper.Write(ex, "RemindScrollAppointment");
}
try
{
LogHelper.Write("滚动开班学生签到");
ScrollClassCommonModule scrollClassModule = new ScrollClassCommonModule();
scrollClassModule.CreateScrollChapter(100000);
}
catch (Exception ex)
{
LogHelper.Write(ex, "CreateScrollChapter");
}
return ApiResult.Success();
}
#endregion
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment