using System; using System.Collections.Generic; using System.Linq; using System.Text; using Bowin.Common.Linq.Entity; using EMIS.Entities; using EMIS.ViewModel; using EMIS.ViewModel.StudentManage.StudentChange; using EMIS.CommonLogic.SystemServices; namespace EMIS.CommonLogic.StudentWeb.Change { public interface IStudentChangeServices : IBaseWorkflowServices { /// /// 查询学生异动申请信息View /// /// /// /// /// /// IGridResultSet GetStudentChangeViewGrid(ConfiguretView configuretView, Guid? userID, int pageIndex, int pageSize); /// /// 查询学生异动申请信息List /// /// /// /// IList GetStudentChangeViewList(ConfiguretView configuretView, Guid? userID); /// /// 查询对应的学生异动信息View /// /// /// StudentChangeView GetStudentChangeView(Guid? studentChangeID); /// /// 编辑 /// /// void StudentChangeEdit(StudentChangeView studentChangeView); /// /// 删除 /// /// /// bool StudentChangeDelete(List studentChangeIDs); /// /// 提交 /// /// /// /// /// string StudentChangeSubmit(List studentChangeIDs, Guid userID, string comment = ""); } }