浏览代码

app2.0 发送消息

临城职教中职
ndbs 2 年前
父节点
当前提交
8fecbcd2b2
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. +19
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/MeetingManagement/MeetingManagementBLL.cs

+ 19
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/MeetingManagement/MeetingManagementBLL.cs 查看文件

@@ -237,6 +237,25 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
}
}
}
public void ReceivedList(string processId)
{
try
{
meetingManagementService.ReceivedList(processId);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}
#endregion

}


正在加载...
取消
保存