12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Bowin.Common.Linq;
- using Bowin.Common.Linq.Entity;
- using EMIS.Entities;
- using EMIS.ViewModel;
- using EMIS.ViewModel.StudentManage.StudentChange;
- using EMIS.CommonLogic.SystemServices;
- namespace EMIS.CommonLogic.StudentManage.StudentChange
- {
- public interface IChangeApplyServices : IBaseWorkflowServices<CF_DifferentDynamic>
- {
- /// <summary>
- /// 查询学籍异动申请信息View
- /// </summary>
- /// <param name="configuretView"></param>
- /// <param name="campusID"></param>
- /// <param name="collegeID"></param>
- /// <param name="gradeID"></param>
- /// <param name="standardID"></param>
- /// <param name="educationID"></param>
- /// <param name="learningformID"></param>
- /// <param name="learnSystem"></param>
- /// <param name="classmajorID"></param>
- /// <param name="schoolyearID"></param>
- /// <param name="changeTypeID"></param>
- /// <param name="inSchoolStatus"></param>
- /// <param name="approvalStatus"></param>
- /// <param name="pageIndex"></param>
- /// <param name="pageSize"></param>
- /// <returns></returns>
- IGridResultSet<StudentChangeView> GetChangeApplyViewGrid(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID,
- int? educationID, int? learningformID, string learnSystem, Guid? classmajorID, Guid? schoolyearID, int? changeTypeID, int? inSchoolStatus, int? approvalStatus, int pageIndex, int pageSize);
- /// <summary>
- /// 查询学籍异动申请信息List
- /// </summary>
- /// <param name="configuretView"></param>
- /// <param name="campusID"></param>
- /// <param name="collegeID"></param>
- /// <param name="gradeID"></param>
- /// <param name="standardID"></param>
- /// <param name="educationID"></param>
- /// <param name="learningformID"></param>
- /// <param name="learnSystem"></param>
- /// <param name="classmajorID"></param>
- /// <param name="schoolyearID"></param>
- /// <param name="changeTypeID"></param>
- /// <param name="inSchoolStatus"></param>
- /// <param name="approvalStatus"></param>
- /// <returns></returns>
- IList<StudentChangeView> GetChangeApplyViewList(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID,
- int? educationID, int? learningformID, string learnSystem, Guid? classmajorID, Guid? schoolyearID, int? changeTypeID, int? inSchoolStatus, int? approvalStatus);
- /// <summary>
- /// 查询对应的学籍异动信息View
- /// </summary>
- /// <param name="studentChangeID"></param>
- /// <returns></returns>
- StudentChangeView GetStudentChangeView(Guid? studentChangeID);
- /// <summary>
- /// 编辑
- /// </summary>
- /// <param name="studentChangeView"></param>
- void ChangeApplyEdit(StudentChangeView studentChangeView);
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="studentChangeIDs"></param>
- /// <returns></returns>
- bool ChangeApplyDelete(List<Guid?> studentChangeIDs);
- /// <summary>
- /// 提交
- /// </summary>
- /// <param name="studentChangeIDs"></param>
- /// <param name="userID"></param>
- /// <param name="comment"></param>
- /// <returns></returns>
- string ChangeApplySubmit(List<Guid> studentChangeIDs, Guid userID, string comment = "");
- }
- }
|