DegreeListServices.cs 840 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ExtensionLogic.ServiceLogic.DegreeManage
  6. {
  7. public class DegreeListServices : EMIS.CommonLogic.DegreeManage.DegreeManage.DegreeListServices
  8. {
  9. /// <summary>
  10. /// 流程结束跳转函数(工作流平台中配置)
  11. /// 注:学位审核通过需对学位证书编号进行生成(临沧农校)
  12. /// 生成规则:
  13. /// 例如:
  14. /// </summary>
  15. /// <param name="degreeApplyIDList"></param>
  16. /// <param name="userID"></param>
  17. public override void OnApproveEnd(List<Guid> degreeApplyIDList, Guid? userID)
  18. {
  19. //更新对应的学生信息(如:学位状态)
  20. base.OnApproveEnd(degreeApplyIDList, userID);
  21. }
  22. }
  23. }