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
{
///
/// 流程结束跳转函数(工作流平台中配置)
/// 注:学位审核通过需对学位证书编号进行生成(河北科技大学)
/// 生成规则:
/// 例如:
///
///
///
public override void OnApproveEnd(List degreeApplyIDList, Guid? userID)
{
//更新对应的学生信息(如:学位状态)
base.OnApproveEnd(degreeApplyIDList, userID);
}
}
}