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.OnlineChecking; using EMIS.CommonLogic.SystemServices; namespace EMIS.CommonLogic.StudentWeb.InfoCenter { public interface ICheckingResultServices : IBaseWorkflowServices { /// /// 查询对应的校对结果信息CheckingHistoryView /// /// /// /// /// /// /// /// IGridResultSet GetStudentCheckingResultViewGrid(ConfiguretView configuretView, Guid? userID, int? checkingTypeID, int? approvalStatus, int pageIndex, int pageSize); /// /// 查询对应的校对结果信息List /// /// /// /// /// /// IList GetStudentCheckingResultViewList(ConfiguretView configuretView, Guid? userID, int? checkingTypeID, int? approvalStatus); /// /// 查询对应的校对结果信息CheckingHistoryView /// /// /// CheckingHistoryView GetStudentCheckingResultView(Guid? studentRecordChangeHistoryID); /// /// 撤消 /// /// /// /// bool StudentCheckingResultCancel(List studentRecordChangeHistoryIDs, Guid userID); } }