Commit 02590079 authored by 黄奎's avatar 黄奎

新增删除考试,月度总结方法

parent b73438b3
......@@ -3701,7 +3701,11 @@ namespace Edu.Module.Course
return Rlist;
}
/// <summary>
/// 新增修改学习情况
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public bool SetStuStudy(RB_Student_Study_ViewModel model)
{
bool flag = false;
......@@ -3727,6 +3731,16 @@ namespace Edu.Module.Course
return flag;
}
/// <summary>
/// 删除学习情况
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public bool DeleteStuStudy(int Id)
{
bool flag = studentStudyRepository.Delete(Id) > 0;
return flag;
}
/// <summary>
/// 获取学员学习情况
......
......@@ -1324,10 +1324,21 @@ namespace Edu.WebApi.Controllers.Course
}
demodel.UpdateTime = DateTime.Now;
demodel.UpdateBy = userInfo.Id;
var result = scrollClassModule.SetStuStudy(demodel);
return result ? ApiResult.Success("") : ApiResult.Failed("操作失败");
}
/// <summary>
/// 删除学习情况
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult RemoveStuStudyInfo()
{
int StudyID = base.ParmJObj.GetInt("StudyID");
bool flag = scrollClassModule.DeleteStuStudy(StudyID);
return flag ? ApiResult.Success() : ApiResult.Failed();
}
#endregion
......
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