123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ExtensionLogic.ServiceLogic.DegreeManage
- {
- public class DegreeListServices : EMIS.CommonLogic.DegreeManage.DegreeManage.DegreeListServices
- {
- /// <summary>
- /// 流程结束跳转函数(工作流平台中配置)
- /// 注:学位审核通过需对学位证书编号进行生成(河北科技大学)
- /// 生成规则:
- /// 例如:
- /// </summary>
- /// <param name="degreeApplyIDList"></param>
- /// <param name="userID"></param>
- public override void OnApproveEnd(List<Guid> degreeApplyIDList, Guid? userID)
- {
- //更新对应的学生信息(如:学位状态)
- base.OnApproveEnd(degreeApplyIDList, userID);
- }
- }
- }
|