diff --git a/DataBase/版本日志/SGGLDB_V2021-12-02-001.sql b/DataBase/版本日志/SGGLDB_V2021-12-02-001.sql
new file mode 100644
index 00000000..05152a09
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_V2021-12-02-001.sql
@@ -0,0 +1,70 @@
+CREATE TABLE [dbo].[Information_UrgeReport](
+ [UrgeReportId] [nvarchar](50) NOT NULL,
+ [UnitId] [nvarchar](50) NULL,
+ [ReprotType] [nvarchar](50) NULL,
+ [YearId] [nvarchar](50) NULL,
+ [MonthId] [nvarchar](50) NULL,
+ [QuarterId] [nvarchar](50) NULL,
+ [HalfYearId] [nvarchar](50) NULL,
+ [UrgeDate] [datetime] NULL,
+ [IsComplete] [bit] NULL,
+ [IsCancel] [bit] NULL,
+ CONSTRAINT [PK_Information_UrgeReport] PRIMARY KEY CLUSTERED
+(
+ [UrgeReportId] ASC
+)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
+) ON [PRIMARY]
+
+GO
+
+ALTER TABLE [dbo].[Information_UrgeReport] WITH CHECK ADD CONSTRAINT [FK_Information_UrgeReport_Base_Unit] FOREIGN KEY([UnitId])
+REFERENCES [dbo].[Base_Unit] ([UnitId])
+GO
+
+ALTER TABLE [dbo].[Information_UrgeReport] CHECK CONSTRAINT [FK_Information_UrgeReport_Base_Unit]
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'߱id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Information_UrgeReport', @level2type=N'COLUMN',@level2name=N'UrgeReportId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'λid' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Information_UrgeReport', @level2type=N'COLUMN',@level2name=N'UnitId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N' ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Information_UrgeReport', @level2type=N'COLUMN',@level2name=N'ReprotType'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Ƿϱ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Information_UrgeReport', @level2type=N'COLUMN',@level2name=N'IsComplete'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ȫϢ߱' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Information_UrgeReport'
+GO
+
+
+CREATE VIEW [dbo].[View_Supervise_SubUnitReportItem]
+AS
+/*ӹ˾ȫϱ*/
+SELECT Item.SubUnitReportItemId,
+ Item.SubUnitReportId,
+ Item.UnitId,
+ Item.PlanReortDate,
+ Item.ReportTitle,
+ Item.ReportContent,
+ --Item.AttachUrl,
+ Item.ReportDate,
+ Item.State,
+ Item.UpState,
+ SUBSTRING(AttachFile.AttachUrl,CHARINDEX('~',AttachFile.AttachUrl)+1,LEN(AttachFile.AttachUrl)) AS AttachUrlName,
+ U.UnitName,
+ (CASE WHEN Item.UpState='1' THEN 'λ' WHEN Item.UpState='2' THEN 'ϱ' when Item.UpState='3' then 'ϱ' when Item.UpState='4' then 'ϱʧ' end) as UpStates,
+ ConstUpState.ConstText AS UpStateName,
+ AttachFile.AttachFileId,
+ AttachFile.ToKeyId,
+ AttachFile.AttachSource,
+ AttachFile.AttachUrl
+FROM Supervise_SubUnitReportItem AS Item
+LEFT JOIN Base_Unit AS U ON U.UnitId=Item.UnitId
+LEFT JOIN AttachFile AS AttachFile ON Item.SubUnitReportItemId=AttachFile.ToKeyId
+LEFT JOIN Sys_Const AS ConstUpState ON Item.UpState=ConstUpState.ConstValue and ConstUpState.GroupId='UpState'
+
+
+GO
\ No newline at end of file
diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj
index 691252ae..34b194b6 100644
--- a/SGGL/BLL/BLL.csproj
+++ b/SGGL/BLL/BLL.csproj
@@ -564,6 +564,8 @@
+
+
@@ -707,12 +709,14 @@
+
+
@@ -895,13 +899,6 @@
-
- WCF Proxy Generator
- Reference.cs
-
-
-
-
WCF Proxy Generator
Reference.cs
@@ -909,6 +906,13 @@
+
+ WCF Proxy Generator
+ Reference.cs
+
+
+
+
diff --git a/SGGL/BLL/Common/ProjectDataFlowSetService.cs b/SGGL/BLL/Common/ProjectDataFlowSetService.cs
index 22f9746d..e234b549 100644
--- a/SGGL/BLL/Common/ProjectDataFlowSetService.cs
+++ b/SGGL/BLL/Common/ProjectDataFlowSetService.cs
@@ -1,5 +1,6 @@
namespace BLL
{
+ using System;
using System.Collections;
using System.Linq;
@@ -162,6 +163,21 @@
return unFlowOperate;
}
+ ///
+ ///
+ ///
+ public static void CloseFlowOperate(string menuId, string dataId, string opinion)
+ {
+ var updateUnFlowOperate = db.ProjectData_FlowOperate.FirstOrDefault(x => x.MenuId == menuId && x.DataId == dataId && (x.IsClosed == false || !x.IsClosed.HasValue));
+ if (updateUnFlowOperate != null)
+ {
+ updateUnFlowOperate.OperaterTime = DateTime.Now;
+ updateUnFlowOperate.IsClosed = true;
+ updateUnFlowOperate.Opinion = opinion;
+ BLL.ProjectDataFlowSetService.UpdateFlowOperateOpinion(updateUnFlowOperate);
+ }
+ }
+
///
/// 更新处理意见
///
diff --git a/SGGL/BLL/OpenService/FileInsertService.cs b/SGGL/BLL/OpenService/FileInsertService.cs
new file mode 100644
index 00000000..d041eecb
--- /dev/null
+++ b/SGGL/BLL/OpenService/FileInsertService.cs
@@ -0,0 +1,133 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Collections;
+using System.IO;
+using System.Web;
+
+namespace BLL
+{
+ public static class FileInsertService
+ {
+ ///
+ /// 获取附件数据流类
+ ///
+ /// 附件路径
+ ///
+ public static void FileInsert(List fileContextList, string attachUrl)
+ {
+ if (fileContextList != null && fileContextList.Count > 0)
+ {
+ string physicalpath = Funs.RootPath;
+ //HttpContext.Current.Request.PhysicalApplicationPath;
+ string fullPath = physicalpath + attachUrl;
+ if (!File.Exists(fullPath))
+ {
+ byte[] fileContext = fileContextList[0];
+ int index = fullPath.LastIndexOf("\\");
+ string filePath = fullPath.Substring(0, index);
+ if (!Directory.Exists(filePath))
+ {
+ Directory.CreateDirectory(filePath);
+ }
+ //string savePath = fullPath + fileName;
+
+ //文件读写模式
+ System.IO.FileMode fileMode = System.IO.FileMode.Create;
+ //写入文件
+ using (System.IO.FileStream fs = new System.IO.FileStream(fullPath, fileMode, System.IO.FileAccess.Write))
+ {
+ fs.Write(fileContext, 0, fileContext.Length);
+ }
+ }
+ }
+ }
+
+ ///
+ /// 获取多附件数据流类
+ ///
+ /// 附件路径
+ ///
+ public static void FileMoreInsert(List fileContextList, string attachUrl)
+ {
+ if (fileContextList != null && fileContextList.Count() > 0)
+ {
+ if (fileContextList.Count > 0)
+ {
+ string[] strs = attachUrl.Trim().Split(',');
+ int i = 0;
+ foreach (var item in fileContextList)
+ {
+ if (strs.Count() > i)
+ {
+ string physicalpath = Funs.RootPath;
+ //HttpContext.Current.Request.PhysicalApplicationPath;
+ string fullPath = physicalpath + strs[i];
+ if (!File.Exists(fullPath))
+ {
+ byte[] fileContext = item;
+ int index = fullPath.LastIndexOf("\\");
+ string filePath = fullPath.Substring(0, index);
+
+ if (!Directory.Exists(filePath))
+ {
+ Directory.CreateDirectory(filePath);
+ }
+ //string savePath = fullPath + fileName;
+
+ //文件读写模式
+ System.IO.FileMode fileMode = System.IO.FileMode.Create;
+
+ //写入文件
+ using (System.IO.FileStream fs = new System.IO.FileStream(fullPath, fileMode, System.IO.FileAccess.Write))
+ {
+ fs.Write(fileContext, 0, fileContext.Length);
+ }
+ }
+
+ i++;
+ }
+ }
+ }
+ }
+ }
+
+ ///
+ /// 数据和附件插入到多附件表
+ ///
+ public static void InsertAttachFile(string attachFileId, string dataId, string attachSource, string attachUrl, List fileContext)
+ {
+ //多附件
+ var attachFile = Funs.DB.AttachFile.FirstOrDefault(x => x.ToKeyId == dataId);
+ if (attachFile == null && !string.IsNullOrEmpty(attachSource))
+ {
+ Model.AttachFile newAttachFile = new Model.AttachFile
+ {
+ AttachFileId = attachFileId,
+ ToKeyId = dataId,
+ AttachSource = attachSource,
+ AttachUrl = attachUrl
+ };
+ Funs.DB.AttachFile.InsertOnSubmit(newAttachFile);
+ Funs.DB.SubmitChanges();
+
+ ////插入附件文件
+ BLL.FileInsertService.FileMoreInsert(fileContext, attachUrl);
+ }
+ else
+ {
+ if (attachFile.AttachUrl != attachUrl)
+ {
+ ///删除附件文件
+ BLL.UploadAttachmentService.DeleteFile(Funs.RootPath, attachFile.AttachUrl);
+ ////插入附件文件
+ BLL.FileInsertService.FileMoreInsert(fileContext, attachUrl);
+ attachFile.AttachSource = attachSource;
+ attachFile.AttachUrl = attachUrl;
+ Funs.DB.SubmitChanges();
+ }
+ }
+ }
+ }
+}
diff --git a/SGGL/BLL/OpenService/FileStructService.cs b/SGGL/BLL/OpenService/FileStructService.cs
new file mode 100644
index 00000000..43f84382
--- /dev/null
+++ b/SGGL/BLL/OpenService/FileStructService.cs
@@ -0,0 +1,107 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Collections;
+using System.IO;
+using System.Web;
+
+namespace BLL
+{
+ public static class FileStructService
+ {
+ ///
+ /// 获取附件数据流类
+ ///
+ /// 附件路径
+ ///
+ public static List GetFileStructByAttachUrl(string attachUrl)
+ {
+ List fileContext = new List();
+ if (!String.IsNullOrEmpty(attachUrl))
+ {
+ string filePath = string.Empty;
+ string physicalpath = Funs.RootPath;
+ //HttpContext.Current.Request.PhysicalApplicationPath;
+ filePath = physicalpath + attachUrl;
+ if (File.Exists(filePath))
+ {
+ FileInfo fileInfo = new FileInfo(filePath);
+ Stream stream = fileInfo.OpenRead();
+ //读取指定大小的文件流内容到uploadFile.Context以便上传
+ int b;
+ while (stream.Position > -1 && stream.Position < stream.Length)
+ {
+ if (stream.Length - stream.Position >= 20000000)
+ {
+ b = 20000000;
+ }
+ else
+ {
+ b = (int)(stream.Length - stream.Position);
+ }
+
+ byte[] filebyte = new byte[b];
+ stream.Read(filebyte, 0, b);
+ fileContext.Add(filebyte);
+ }
+ stream.Close();
+ }
+ }
+
+ return fileContext;
+ }
+
+ ///
+ /// 获取附件数据流类 多附件的情况
+ ///
+ /// 附件路径
+ ///
+ public static List GetMoreFileStructByAttachUrl(string attachUrl)
+ {
+ List fileContext = new List();
+ if (!String.IsNullOrEmpty(attachUrl))
+ {
+ string[] strs = attachUrl.Trim().Split(',');
+ foreach (var item in strs)
+ {
+ string filePath = string.Empty;
+ string physicalpath = Funs.RootPath;
+ //HttpContext.Current.Request.PhysicalApplicationPath;
+ filePath = physicalpath + item;
+ if (File.Exists(filePath))
+ {
+ FileInfo fileInfo = new FileInfo(filePath);
+ if (fileInfo != null)
+ {
+ Stream stream = fileInfo.OpenRead();
+ if (stream != null)
+ {
+ //读取指定大小的文件流内容到uploadFile.Context以便上传
+ int b;
+ while (stream.Position > -1 && stream.Position < stream.Length)
+ {
+ if (stream.Length - stream.Position >= 20000000)
+ {
+ b = 20000000;
+ }
+ else
+ {
+ b = (int)(stream.Length - stream.Position);
+ }
+
+ byte[] filebyte = new byte[b];
+ stream.Read(filebyte, 0, b);
+ fileContext.Add(filebyte);
+ }
+ }
+
+ stream.Close();
+ }
+ }
+ }
+ }
+ return fileContext;
+ }
+ }
+}
diff --git a/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs b/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs
index 35343cb3..5ba5f9f7 100644
--- a/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs
+++ b/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs
@@ -47,7 +47,7 @@ namespace BLL.CNCECHSSEService {
private string CompileManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -194,7 +194,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -377,7 +377,7 @@ namespace BLL.CNCECHSSEService {
private string CompileManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -502,7 +502,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -1617,7 +1617,7 @@ namespace BLL.CNCECHSSEService {
private string AttachUrlField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] AttachUrlFileContextField;
+ private System.Collections.Generic.List AttachUrlFileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable AuditDateField;
@@ -1692,7 +1692,7 @@ namespace BLL.CNCECHSSEService {
private string PhotoUrlField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] PhotoUrlFileContextField;
+ private System.Collections.Generic.List PhotoUrlFileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string PostTitleCodeField;
@@ -1784,7 +1784,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] AttachUrlFileContext {
+ public System.Collections.Generic.List AttachUrlFileContext {
get {
return this.AttachUrlFileContextField;
}
@@ -2109,7 +2109,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] PhotoUrlFileContext {
+ public System.Collections.Generic.List PhotoUrlFileContext {
get {
return this.PhotoUrlFileContextField;
}
@@ -3436,7 +3436,7 @@ namespace BLL.CNCECHSSEService {
private string AttachUrlField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable PlanReortDateField;
@@ -3515,7 +3515,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -3697,7 +3697,7 @@ namespace BLL.CNCECHSSEService {
private string DangerPointField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string HandleStateField;
@@ -3901,7 +3901,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -4956,7 +4956,7 @@ namespace BLL.CNCECHSSEService {
private System.Nullable EffectiveDateField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -5129,7 +5129,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -5312,7 +5312,7 @@ namespace BLL.CNCECHSSEService {
private string CompileManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -5527,7 +5527,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -6067,7 +6067,7 @@ namespace BLL.CNCECHSSEService {
private System.Nullable CustomDateField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -6227,7 +6227,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -6410,7 +6410,7 @@ namespace BLL.CNCECHSSEService {
private string CompileManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -6547,7 +6547,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -6746,7 +6746,7 @@ namespace BLL.CNCECHSSEService {
private string CompileManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable HAZOPDateField;
@@ -6881,7 +6881,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -7033,7 +7033,7 @@ namespace BLL.CNCECHSSEService {
private string CompileManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -7237,7 +7237,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -7347,7 +7347,7 @@ namespace BLL.CNCECHSSEService {
private string EmergencyTypeNameField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -7544,7 +7544,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -7662,7 +7662,7 @@ namespace BLL.CNCECHSSEService {
private string CompileManField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FileContextField;
+ private System.Collections.Generic.List FileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Nullable IsPassField;
@@ -7796,7 +7796,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FileContext {
+ public System.Collections.Generic.List FileContext {
get {
return this.FileContextField;
}
@@ -11832,7 +11832,7 @@ namespace BLL.CNCECHSSEService {
private string FullTimeManAttachUrlField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] FullTimeManAttachUrlFileContextField;
+ private System.Collections.Generic.List FullTimeManAttachUrlFileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string FullTimeManRemarkField;
@@ -11892,7 +11892,7 @@ namespace BLL.CNCECHSSEService {
private string PMManAttachUrlField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[][] PMManAttachUrlFileContextField;
+ private System.Collections.Generic.List PMManAttachUrlFileContextField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string PMManRemarkField;
@@ -12305,7 +12305,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] FullTimeManAttachUrlFileContext {
+ public System.Collections.Generic.List FullTimeManAttachUrlFileContext {
get {
return this.FullTimeManAttachUrlFileContextField;
}
@@ -12565,7 +12565,7 @@ namespace BLL.CNCECHSSEService {
}
[System.Runtime.Serialization.DataMemberAttribute()]
- public byte[][] PMManAttachUrlFileContext {
+ public System.Collections.Generic.List PMManAttachUrlFileContext {
get {
return this.PMManAttachUrlFileContextField;
}
@@ -13087,97 +13087,97 @@ namespace BLL.CNCECHSSEService {
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainingItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTraining_TrainingItemTableResponse" +
"")]
- string[] DataInsertTraining_TrainingItemTable(BLL.CNCECHSSEService.Training_TrainingItem[] trainingItem);
+ System.Collections.Generic.List DataInsertTraining_TrainingItemTable(System.Collections.Generic.List trainingItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainingItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTraining_TrainingItemTableResponse" +
"")]
- System.Threading.Tasks.Task DataInsertTraining_TrainingItemTableAsync(BLL.CNCECHSSEService.Training_TrainingItem[] trainingItem);
+ System.Threading.Tasks.Task> DataInsertTraining_TrainingItemTableAsync(System.Collections.Generic.List trainingItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainTestDBItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTraining_TrainTestDBItemTableRespo" +
"nse")]
- string[] DataInsertTraining_TrainTestDBItemTable(BLL.CNCECHSSEService.Training_TrainTestDBItem[] trainTestDBItem);
+ System.Collections.Generic.List DataInsertTraining_TrainTestDBItemTable(System.Collections.Generic.List trainTestDBItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainTestDBItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTraining_TrainTestDBItemTableRespo" +
"nse")]
- System.Threading.Tasks.Task DataInsertTraining_TrainTestDBItemTableAsync(BLL.CNCECHSSEService.Training_TrainTestDBItem[] trainTestDBItem);
+ System.Threading.Tasks.Task> DataInsertTraining_TrainTestDBItemTableAsync(System.Collections.Generic.List trainTestDBItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertEduTrain_AccidentCaseItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertEduTrain_AccidentCaseItemTableResp" +
"onse")]
- string[] DataInsertEduTrain_AccidentCaseItemTable(BLL.CNCECHSSEService.EduTrain_AccidentCaseItem[] accidentCaseItem);
+ System.Collections.Generic.List DataInsertEduTrain_AccidentCaseItemTable(System.Collections.Generic.List accidentCaseItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertEduTrain_AccidentCaseItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertEduTrain_AccidentCaseItemTableResp" +
"onse")]
- System.Threading.Tasks.Task DataInsertEduTrain_AccidentCaseItemTableAsync(BLL.CNCECHSSEService.EduTrain_AccidentCaseItem[] accidentCaseItem);
+ System.Threading.Tasks.Task> DataInsertEduTrain_AccidentCaseItemTableAsync(System.Collections.Generic.List accidentCaseItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTraining_KnowledgeItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTraining_KnowledgeItemTableRespons" +
"e")]
- string[] DataInsertTraining_KnowledgeItemTable(BLL.CNCECHSSEService.Training_KnowledgeItem[] knowledgeItem);
+ System.Collections.Generic.List DataInsertTraining_KnowledgeItemTable(System.Collections.Generic.List knowledgeItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTraining_KnowledgeItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTraining_KnowledgeItemTableRespons" +
"e")]
- System.Threading.Tasks.Task DataInsertTraining_KnowledgeItemTableAsync(BLL.CNCECHSSEService.Training_KnowledgeItem[] knowledgeItem);
+ System.Threading.Tasks.Task> DataInsertTraining_KnowledgeItemTableAsync(System.Collections.Generic.List knowledgeItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HazardListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_HazardListTableResponse")]
- string[] DataInsertTechnique_HazardListTable(BLL.CNCECHSSEService.Technique_HazardList[] hazardList);
+ System.Collections.Generic.List DataInsertTechnique_HazardListTable(System.Collections.Generic.List hazardList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HazardListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_HazardListTableResponse")]
- System.Threading.Tasks.Task DataInsertTechnique_HazardListTableAsync(BLL.CNCECHSSEService.Technique_HazardList[] hazardList);
+ System.Threading.Tasks.Task> DataInsertTechnique_HazardListTableAsync(System.Collections.Generic.List hazardList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_RectifyItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_RectifyItemTableResponse" +
"")]
- string[] DataInsertTechnique_RectifyItemTable(BLL.CNCECHSSEService.Technique_RectifyItem[] rectifyItem);
+ System.Collections.Generic.List DataInsertTechnique_RectifyItemTable(System.Collections.Generic.List rectifyItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_RectifyItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_RectifyItemTableResponse" +
"")]
- System.Threading.Tasks.Task DataInsertTechnique_RectifyItemTableAsync(BLL.CNCECHSSEService.Technique_RectifyItem[] rectifyItem);
+ System.Threading.Tasks.Task> DataInsertTechnique_RectifyItemTableAsync(System.Collections.Generic.List rectifyItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_ExpertTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_ExpertTableResponse")]
- string[] DataInsertTechnique_ExpertTable(BLL.CNCECHSSEService.Technique_Expert[] expert);
+ System.Collections.Generic.List DataInsertTechnique_ExpertTable(System.Collections.Generic.List expert);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_ExpertTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_ExpertTableResponse")]
- System.Threading.Tasks.Task DataInsertTechnique_ExpertTableAsync(BLL.CNCECHSSEService.Technique_Expert[] expert);
+ System.Threading.Tasks.Task> DataInsertTechnique_ExpertTableAsync(System.Collections.Generic.List expert);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SuperviseCheckRectifyTab" +
"le", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSupervise_SuperviseCheckRectifyTab" +
"leResponse")]
- string[] DataInsertSupervise_SuperviseCheckRectifyTable(BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify[] superviseCheckRectify);
+ System.Collections.Generic.List DataInsertSupervise_SuperviseCheckRectifyTable(System.Collections.Generic.List superviseCheckRectify);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SuperviseCheckRectifyTab" +
"le", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSupervise_SuperviseCheckRectifyTab" +
"leResponse")]
- System.Threading.Tasks.Task DataInsertSupervise_SuperviseCheckRectifyTableAsync(BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify[] superviseCheckRectify);
+ System.Threading.Tasks.Task> DataInsertSupervise_SuperviseCheckRectifyTableAsync(System.Collections.Generic.List superviseCheckRectify);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEManageItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEManageItemTableResp" +
"onse")]
- string[] DataInsertHSSESystem_HSSEManageItemTable(BLL.CNCECHSSEService.HSSESystem_HSSEManageItem[] HSSEManageItem);
+ System.Collections.Generic.List DataInsertHSSESystem_HSSEManageItemTable(System.Collections.Generic.List HSSEManageItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEManageItemTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEManageItemTableResp" +
"onse")]
- System.Threading.Tasks.Task DataInsertHSSESystem_HSSEManageItemTableAsync(BLL.CNCECHSSEService.HSSESystem_HSSEManageItem[] HSSEManageItem);
+ System.Threading.Tasks.Task> DataInsertHSSESystem_HSSEManageItemTableAsync(System.Collections.Generic.List HSSEManageItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSupervise_UpCheckReportTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSupervise_UpCheckReportTableRespon" +
"se")]
- string[] DataInsertSupervise_UpCheckReportTable(BLL.CNCECHSSEService.Supervise_UpCheckReport[] upCheckReport, BLL.CNCECHSSEService.Supervise_UpCheckReportItem[] upCheckReportItem, BLL.CNCECHSSEService.Supervise_UpCheckReportItem2[] upCheckReportItem2);
+ System.Collections.Generic.List DataInsertSupervise_UpCheckReportTable(System.Collections.Generic.List upCheckReport, System.Collections.Generic.List upCheckReportItem, System.Collections.Generic.List upCheckReportItem2);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSupervise_UpCheckReportTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSupervise_UpCheckReportTableRespon" +
"se")]
- System.Threading.Tasks.Task DataInsertSupervise_UpCheckReportTableAsync(BLL.CNCECHSSEService.Supervise_UpCheckReport[] upCheckReport, BLL.CNCECHSSEService.Supervise_UpCheckReportItem[] upCheckReportItem, BLL.CNCECHSSEService.Supervise_UpCheckReportItem2[] upCheckReportItem2);
+ System.Threading.Tasks.Task> DataInsertSupervise_UpCheckReportTableAsync(System.Collections.Generic.List upCheckReport, System.Collections.Generic.List upCheckReportItem, System.Collections.Generic.List upCheckReportItem2);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SubUnitReportItemItemTab" +
"le", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSupervise_SubUnitReportItemItemTab" +
"leResponse")]
- string[] DataInsertSupervise_SubUnitReportItemItemTable(BLL.CNCECHSSEService.Supervise_SubUnitReportItem[] subUnitReportItem);
+ System.Collections.Generic.List DataInsertSupervise_SubUnitReportItemItemTable(System.Collections.Generic.List subUnitReportItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SubUnitReportItemItemTab" +
"le", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSupervise_SubUnitReportItemItemTab" +
"leResponse")]
- System.Threading.Tasks.Task DataInsertSupervise_SubUnitReportItemItemTableAsync(BLL.CNCECHSSEService.Supervise_SubUnitReportItem[] subUnitReportItem);
+ System.Threading.Tasks.Task> DataInsertSupervise_SubUnitReportItemItemTableAsync(System.Collections.Generic.List subUnitReportItem);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertCheck_CheckRectifyTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertCheck_CheckRectifyTableResponse")]
- string[] DataInsertCheck_CheckRectifyTable(BLL.CNCECHSSEService.Check_CheckRectify[] checkRectify);
+ System.Collections.Generic.List DataInsertCheck_CheckRectifyTable(System.Collections.Generic.List checkRectify);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertCheck_CheckRectifyTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertCheck_CheckRectifyTableResponse")]
- System.Threading.Tasks.Task DataInsertCheck_CheckRectifyTableAsync(BLL.CNCECHSSEService.Check_CheckRectify[] checkRectify);
+ System.Threading.Tasks.Task> DataInsertCheck_CheckRectifyTableAsync(System.Collections.Generic.List checkRectify);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTableRespon" +
"se")]
@@ -13188,300 +13188,300 @@ namespace BLL.CNCECHSSEService {
System.Threading.Tasks.Task DataInsertHSSESystem_HSSEOrganizeTableAsync(BLL.CNCECHSSEService.HSSESystem_HSSEOrganize hsseOrganize);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSys_SubUnitLogListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSys_SubUnitLogListTableResponse")]
- string[] DataInsertSys_SubUnitLogListTable(BLL.CNCECHSSEService.Sys_SubUnitLog[] subUnitLogList);
+ System.Collections.Generic.List DataInsertSys_SubUnitLogListTable(System.Collections.Generic.List subUnitLogList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertSys_SubUnitLogListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertSys_SubUnitLogListTableResponse")]
- System.Threading.Tasks.Task DataInsertSys_SubUnitLogListTableAsync(BLL.CNCECHSSEService.Sys_SubUnitLog[] subUnitLogList);
+ System.Threading.Tasks.Task> DataInsertSys_SubUnitLogListTableAsync(System.Collections.Generic.List subUnitLogList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSys_VersionToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSys_VersionToSUBResponse")]
- BLL.CNCECHSSEService.Sys_Version[] GetSys_VersionToSUB();
+ System.Collections.Generic.List GetSys_VersionToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSys_VersionToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSys_VersionToSUBResponse")]
- System.Threading.Tasks.Task GetSys_VersionToSUBAsync();
+ System.Threading.Tasks.Task> GetSys_VersionToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetBase_UnitToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetBase_UnitToSUBResponse")]
- BLL.CNCECHSSEService.Base_Unit[] GetBase_UnitToSUB();
+ System.Collections.Generic.List GetBase_UnitToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetBase_UnitToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetBase_UnitToSUBResponse")]
- System.Threading.Tasks.Task GetBase_UnitToSUBAsync();
+ System.Threading.Tasks.Task> GetBase_UnitToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetInformation_UrgeReportToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetInformation_UrgeReportToSUBResponse")]
- BLL.CNCECHSSEService.Information_UrgeReport[] GetInformation_UrgeReportToSUB(string unitId);
+ System.Collections.Generic.List GetInformation_UrgeReportToSUB(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetInformation_UrgeReportToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetInformation_UrgeReportToSUBResponse")]
- System.Threading.Tasks.Task GetInformation_UrgeReportToSUBAsync(string unitId);
+ System.Threading.Tasks.Task> GetInformation_UrgeReportToSUBAsync(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_LawRegulationListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_LawRegulationListToSUBResponse")]
- BLL.CNCECHSSEService.Law_LawRegulationList[] GetLaw_LawRegulationListToSUB();
+ System.Collections.Generic.List GetLaw_LawRegulationListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_LawRegulationListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_LawRegulationListToSUBResponse")]
- System.Threading.Tasks.Task GetLaw_LawRegulationListToSUBAsync();
+ System.Threading.Tasks.Task> GetLaw_LawRegulationListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_HSSEStandardsListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_HSSEStandardsListToSUBResponse")]
- BLL.CNCECHSSEService.Law_HSSEStandardsList[] GetLaw_HSSEStandardsListToSUB();
+ System.Collections.Generic.List GetLaw_HSSEStandardsListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_HSSEStandardsListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_HSSEStandardsListToSUBResponse")]
- System.Threading.Tasks.Task GetLaw_HSSEStandardsListToSUBAsync();
+ System.Threading.Tasks.Task> GetLaw_HSSEStandardsListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_RulesRegulationsToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_RulesRegulationsToSUBResponse")]
- BLL.CNCECHSSEService.Law_RulesRegulations[] GetLaw_RulesRegulationsToSUB();
+ System.Collections.Generic.List GetLaw_RulesRegulationsToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_RulesRegulationsToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_RulesRegulationsToSUBResponse")]
- System.Threading.Tasks.Task GetLaw_RulesRegulationsToSUBAsync();
+ System.Threading.Tasks.Task> GetLaw_RulesRegulationsToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_ManageRuleToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_ManageRuleToSUBResponse")]
- BLL.CNCECHSSEService.Law_ManageRule[] GetLaw_ManageRuleToSUB();
+ System.Collections.Generic.List GetLaw_ManageRuleToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetLaw_ManageRuleToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetLaw_ManageRuleToSUBResponse")]
- System.Threading.Tasks.Task GetLaw_ManageRuleToSUBAsync();
+ System.Threading.Tasks.Task> GetLaw_ManageRuleToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_HAZOPToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_HAZOPToSUBResponse")]
- BLL.CNCECHSSEService.Technique_HAZOP[] GetTechnique_HAZOPToSUB();
+ System.Collections.Generic.List GetTechnique_HAZOPToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_HAZOPToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_HAZOPToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_HAZOPToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_HAZOPToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_AppraiseToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_AppraiseToSUBResponse")]
- BLL.CNCECHSSEService.Technique_Appraise[] GetTechnique_AppraiseToSUB();
+ System.Collections.Generic.List GetTechnique_AppraiseToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_AppraiseToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_AppraiseToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_AppraiseToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_AppraiseToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_EmergencyToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_EmergencyToSUBResponse")]
- BLL.CNCECHSSEService.Technique_Emergency[] GetTechnique_EmergencyToSUB();
+ System.Collections.Generic.List GetTechnique_EmergencyToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_EmergencyToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_EmergencyToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_EmergencyToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_EmergencyToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_SpecialSchemeToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_SpecialSchemeToSUBResponse")]
- BLL.CNCECHSSEService.Technique_SpecialScheme[] GetTechnique_SpecialSchemeToSUB();
+ System.Collections.Generic.List GetTechnique_SpecialSchemeToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_SpecialSchemeToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_SpecialSchemeToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_SpecialSchemeToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_SpecialSchemeToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainingListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainingListToSUBResponse")]
- BLL.CNCECHSSEService.Training_Training[] GetTraining_TrainingListToSUB();
+ System.Collections.Generic.List GetTraining_TrainingListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainingListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainingListToSUBResponse")]
- System.Threading.Tasks.Task GetTraining_TrainingListToSUBAsync();
+ System.Threading.Tasks.Task> GetTraining_TrainingListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainingItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainingItemListToSUBResponse")]
- BLL.CNCECHSSEService.Training_TrainingItem[] GetTraining_TrainingItemListToSUB();
+ System.Collections.Generic.List GetTraining_TrainingItemListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainingItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainingItemListToSUBResponse")]
- System.Threading.Tasks.Task GetTraining_TrainingItemListToSUBAsync();
+ System.Threading.Tasks.Task> GetTraining_TrainingItemListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBListToSUBResponse")]
- BLL.CNCECHSSEService.Training_TrainTestDB[] GetTraining_TrainTestDBListToSUB();
+ System.Collections.Generic.List GetTraining_TrainTestDBListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBListToSUBResponse")]
- System.Threading.Tasks.Task GetTraining_TrainTestDBListToSUBAsync();
+ System.Threading.Tasks.Task> GetTraining_TrainTestDBListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBItemListToSUBResponse" +
"")]
- BLL.CNCECHSSEService.Training_TrainTestDBItem[] GetTraining_TrainTestDBItemListToSUB();
+ System.Collections.Generic.List GetTraining_TrainTestDBItemListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBItemListToSUBResponse" +
"")]
- System.Threading.Tasks.Task GetTraining_TrainTestDBItemListToSUBAsync();
+ System.Threading.Tasks.Task> GetTraining_TrainTestDBItemListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseListToSUBResponse")]
- BLL.CNCECHSSEService.EduTrain_AccidentCase[] GetEduTrain_AccidentCaseListToSUB();
+ System.Collections.Generic.List GetEduTrain_AccidentCaseListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseListToSUBResponse")]
- System.Threading.Tasks.Task GetEduTrain_AccidentCaseListToSUBAsync();
+ System.Threading.Tasks.Task> GetEduTrain_AccidentCaseListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseItemListToSUBRespons" +
"e")]
- BLL.CNCECHSSEService.EduTrain_AccidentCaseItem[] GetEduTrain_AccidentCaseItemListToSUB();
+ System.Collections.Generic.List GetEduTrain_AccidentCaseItemListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseItemListToSUBRespons" +
"e")]
- System.Threading.Tasks.Task GetEduTrain_AccidentCaseItemListToSUBAsync();
+ System.Threading.Tasks.Task> GetEduTrain_AccidentCaseItemListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_KnowledgeListToSUBResponse")]
- BLL.CNCECHSSEService.Training_Knowledge[] GetTraining_KnowledgeListToSUB();
+ System.Collections.Generic.List GetTraining_KnowledgeListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_KnowledgeListToSUBResponse")]
- System.Threading.Tasks.Task GetTraining_KnowledgeListToSUBAsync();
+ System.Threading.Tasks.Task> GetTraining_KnowledgeListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_KnowledgeItemListToSUBResponse")]
- BLL.CNCECHSSEService.Training_KnowledgeItem[] GetTraining_KnowledgeItemListToSUB();
+ System.Collections.Generic.List GetTraining_KnowledgeItemListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTraining_KnowledgeItemListToSUBResponse")]
- System.Threading.Tasks.Task GetTraining_KnowledgeItemListToSUBAsync();
+ System.Threading.Tasks.Task> GetTraining_KnowledgeItemListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListTypeListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_HazardListTypeListToSUBResponse" +
"")]
- BLL.CNCECHSSEService.Technique_HazardListType[] GetTechnique_HazardListTypeListToSUB();
+ System.Collections.Generic.List GetTechnique_HazardListTypeListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListTypeListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_HazardListTypeListToSUBResponse" +
"")]
- System.Threading.Tasks.Task GetTechnique_HazardListTypeListToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_HazardListTypeListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_HazardListListToSUBResponse")]
- BLL.CNCECHSSEService.Technique_HazardList[] GetTechnique_HazardListListToSUB();
+ System.Collections.Generic.List GetTechnique_HazardListListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_HazardListListToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_HazardListListToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_HazardListListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_RectifyListToSUBResponse")]
- BLL.CNCECHSSEService.Technique_Rectify[] GetTechnique_RectifyListToSUB();
+ System.Collections.Generic.List GetTechnique_RectifyListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_RectifyListToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_RectifyListToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_RectifyListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_RectifyItemListToSUBResponse")]
- BLL.CNCECHSSEService.Technique_RectifyItem[] GetTechnique_RectifyItemListToSUB();
+ System.Collections.Generic.List GetTechnique_RectifyItemListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_RectifyItemListToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_RectifyItemListToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_RectifyItemListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_ExpertListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_ExpertListToSUBResponse")]
- BLL.CNCECHSSEService.Technique_Expert[] GetTechnique_ExpertListToSUB();
+ System.Collections.Generic.List GetTechnique_ExpertListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetTechnique_ExpertListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetTechnique_ExpertListToSUBResponse")]
- System.Threading.Tasks.Task GetTechnique_ExpertListToSUBAsync();
+ System.Threading.Tasks.Task> GetTechnique_ExpertListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSupervise_SuperviseCheckRectifyListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSupervise_SuperviseCheckRectifyListToSUBR" +
"esponse")]
- BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify[] GetSupervise_SuperviseCheckRectifyListToSUB(string unitId);
+ System.Collections.Generic.List GetSupervise_SuperviseCheckRectifyListToSUB(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSupervise_SuperviseCheckRectifyListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSupervise_SuperviseCheckRectifyListToSUBR" +
"esponse")]
- System.Threading.Tasks.Task GetSupervise_SuperviseCheckRectifyListToSUBAsync(string unitId);
+ System.Threading.Tasks.Task> GetSupervise_SuperviseCheckRectifyListToSUBAsync(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportListToSUBResponse")]
- BLL.CNCECHSSEService.Supervise_SubUnitReport[] GetSupervise_SubUnitReportListToSUB();
+ System.Collections.Generic.List GetSupervise_SubUnitReportListToSUB();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportListToSUBResponse")]
- System.Threading.Tasks.Task GetSupervise_SubUnitReportListToSUBAsync();
+ System.Threading.Tasks.Task> GetSupervise_SubUnitReportListToSUBAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportItemListToSUBRespo" +
"nse")]
- BLL.CNCECHSSEService.Supervise_SubUnitReportItem[] GetSupervise_SubUnitReportItemListToSUB(string unitId);
+ System.Collections.Generic.List GetSupervise_SubUnitReportItemListToSUB(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportItemListToSUBRespo" +
"nse")]
- System.Threading.Tasks.Task GetSupervise_SubUnitReportItemListToSUBAsync(string unitId);
+ System.Threading.Tasks.Task> GetSupervise_SubUnitReportItemListToSUBAsync(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetCheck_CheckRectifyListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetCheck_CheckRectifyListToSUBResponse")]
- BLL.CNCECHSSEService.Check_CheckRectify[] GetCheck_CheckRectifyListToSUB(string unitId);
+ System.Collections.Generic.List GetCheck_CheckRectifyListToSUB(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetCheck_CheckRectifyListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetCheck_CheckRectifyListToSUBResponse")]
- System.Threading.Tasks.Task GetCheck_CheckRectifyListToSUBAsync(string unitId);
+ System.Threading.Tasks.Task> GetCheck_CheckRectifyListToSUBAsync(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetCheck_CheckInfo_Table8ItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetCheck_CheckInfo_Table8ItemListToSUBRespon" +
"se")]
- BLL.CNCECHSSEService.Check_CheckInfo_Table8Item[] GetCheck_CheckInfo_Table8ItemListToSUB(string unitId);
+ System.Collections.Generic.List GetCheck_CheckInfo_Table8ItemListToSUB(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/GetCheck_CheckInfo_Table8ItemListToSUB", ReplyAction="http://www.localhost.com/HSSEService/GetCheck_CheckInfo_Table8ItemListToSUBRespon" +
"se")]
- System.Threading.Tasks.Task GetCheck_CheckInfo_Table8ItemListToSUBAsync(string unitId);
+ System.Threading.Tasks.Task> GetCheck_CheckInfo_Table8ItemListToSUBAsync(string unitId);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_LawRegulationListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_LawRegulationListTableResponse" +
"")]
- string[] DataInsertLaw_LawRegulationListTable(BLL.CNCECHSSEService.Law_LawRegulationList[] lawRegulationList);
+ System.Collections.Generic.List DataInsertLaw_LawRegulationListTable(System.Collections.Generic.List lawRegulationList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_LawRegulationListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_LawRegulationListTableResponse" +
"")]
- System.Threading.Tasks.Task DataInsertLaw_LawRegulationListTableAsync(BLL.CNCECHSSEService.Law_LawRegulationList[] lawRegulationList);
+ System.Threading.Tasks.Task> DataInsertLaw_LawRegulationListTableAsync(System.Collections.Generic.List lawRegulationList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_HSSEStandardsListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_HSSEStandardsListTableResponse" +
"")]
- string[] DataInsertLaw_HSSEStandardsListTable(BLL.CNCECHSSEService.Law_HSSEStandardsList[] hsseStandardsList);
+ System.Collections.Generic.List DataInsertLaw_HSSEStandardsListTable(System.Collections.Generic.List hsseStandardsList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_HSSEStandardsListTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_HSSEStandardsListTableResponse" +
"")]
- System.Threading.Tasks.Task DataInsertLaw_HSSEStandardsListTableAsync(BLL.CNCECHSSEService.Law_HSSEStandardsList[] hsseStandardsList);
+ System.Threading.Tasks.Task> DataInsertLaw_HSSEStandardsListTableAsync(System.Collections.Generic.List hsseStandardsList);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_RulesRegulationsTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_RulesRegulationsTableResponse")]
- string[] DataInsertLaw_RulesRegulationsTable(BLL.CNCECHSSEService.Law_RulesRegulations[] rulesRegulations);
+ System.Collections.Generic.List DataInsertLaw_RulesRegulationsTable(System.Collections.Generic.List rulesRegulations);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_RulesRegulationsTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_RulesRegulationsTableResponse")]
- System.Threading.Tasks.Task DataInsertLaw_RulesRegulationsTableAsync(BLL.CNCECHSSEService.Law_RulesRegulations[] rulesRegulations);
+ System.Threading.Tasks.Task> DataInsertLaw_RulesRegulationsTableAsync(System.Collections.Generic.List rulesRegulations);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_ManageRuleTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_ManageRuleTableResponse")]
- string[] DataInsertLaw_ManageRuleTable(BLL.CNCECHSSEService.Law_ManageRule[] manageRule);
+ System.Collections.Generic.List DataInsertLaw_ManageRuleTable(System.Collections.Generic.List manageRule);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertLaw_ManageRuleTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertLaw_ManageRuleTableResponse")]
- System.Threading.Tasks.Task DataInsertLaw_ManageRuleTableAsync(BLL.CNCECHSSEService.Law_ManageRule[] manageRule);
+ System.Threading.Tasks.Task> DataInsertLaw_ManageRuleTableAsync(System.Collections.Generic.List manageRule);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HAZOPTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_HAZOPTableResponse")]
- string[] DataInsertTechnique_HAZOPTable(BLL.CNCECHSSEService.Technique_HAZOP[] hazop);
+ System.Collections.Generic.List DataInsertTechnique_HAZOPTable(System.Collections.Generic.List hazop);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HAZOPTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_HAZOPTableResponse")]
- System.Threading.Tasks.Task DataInsertTechnique_HAZOPTableAsync(BLL.CNCECHSSEService.Technique_HAZOP[] hazop);
+ System.Threading.Tasks.Task> DataInsertTechnique_HAZOPTableAsync(System.Collections.Generic.List hazop);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_AppraiseTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_AppraiseTableResponse")]
- string[] DataInsertTechnique_AppraiseTable(BLL.CNCECHSSEService.Technique_Appraise[] appraise);
+ System.Collections.Generic.List DataInsertTechnique_AppraiseTable(System.Collections.Generic.List appraise);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_AppraiseTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_AppraiseTableResponse")]
- System.Threading.Tasks.Task DataInsertTechnique_AppraiseTableAsync(BLL.CNCECHSSEService.Technique_Appraise[] appraise);
+ System.Threading.Tasks.Task> DataInsertTechnique_AppraiseTableAsync(System.Collections.Generic.List appraise);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_EmergencyTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_EmergencyTableResponse")]
- string[] DataInsertTechnique_EmergencyTable(BLL.CNCECHSSEService.Technique_Emergency[] emergency);
+ System.Collections.Generic.List DataInsertTechnique_EmergencyTable(System.Collections.Generic.List emergency);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_EmergencyTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_EmergencyTableResponse")]
- System.Threading.Tasks.Task DataInsertTechnique_EmergencyTableAsync(BLL.CNCECHSSEService.Technique_Emergency[] emergency);
+ System.Threading.Tasks.Task> DataInsertTechnique_EmergencyTableAsync(System.Collections.Generic.List emergency);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_SpecialSchemeTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_SpecialSchemeTableRespon" +
"se")]
- string[] DataInsertTechnique_SpecialSchemeTable(BLL.CNCECHSSEService.Technique_SpecialScheme[] specialScheme);
+ System.Collections.Generic.List DataInsertTechnique_SpecialSchemeTable(System.Collections.Generic.List specialScheme);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertTechnique_SpecialSchemeTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertTechnique_SpecialSchemeTableRespon" +
"se")]
- System.Threading.Tasks.Task DataInsertTechnique_SpecialSchemeTableAsync(BLL.CNCECHSSEService.Technique_SpecialScheme[] specialScheme);
+ System.Threading.Tasks.Task> DataInsertTechnique_SpecialSchemeTableAsync(System.Collections.Generic.List specialScheme);
[System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_AccidentCauseReportTab" +
"le", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_AccidentCauseReportTab" +
"leResponse")]
- string[] DataInsertInformation_AccidentCauseReportTable(BLL.CNCECHSSEService.Information_AccidentCauseReport[] accidentCauseReportList, BLL.CNCECHSSEService.Information_AccidentCauseReportItem[] accidentCauseReportItemList);
+ System.Collections.Generic.List