diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/XmlConfig/ioc.config b/Learun.Framework.Ultimate V7/Learun.Application.Web/XmlConfig/ioc.config
index dd0e33255..d6dba2d70 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/XmlConfig/ioc.config
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/XmlConfig/ioc.config
@@ -32,7 +32,7 @@
-
+
@@ -74,7 +74,6 @@
-
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Learun.Application.WorkFlow.csproj b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Learun.Application.WorkFlow.csproj
index baf0102bf..472c8f856 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Learun.Application.WorkFlow.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/Learun.Application.WorkFlow.csproj
@@ -93,8 +93,6 @@
-
-
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/NodeMethod/MeetingManagementApplyMethod.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/NodeMethod/MeetingManagementApplyMethod.cs
deleted file mode 100644
index 55ee0ae70..000000000
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/NodeMethod/MeetingManagementApplyMethod.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using Learun.Application.TwoDevelopment.PersonnelManagement;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Learun.Application.WorkFlow
-{
- public class MeetingManagementApplyMethod : IWorkFlowMethod
- {
- MeetingManagementIBLL meetingManagementIBLL = new MeetingManagementBLL();
-
-
- public void Execute(WfMethodParameter parameter)
- {
- if (parameter.code == "agree")
- {
- meetingManagementIBLL.ChangeStatusByProcessId(parameter.processId, "1", parameter.userId);
- }
- else
- {
- meetingManagementIBLL.ChangeStatusByProcessId(parameter.processId, "2", parameter.userId);
- }
- }
- }
-}