From 8932645f5489931f7e945e4ab244bf89bc76175d Mon Sep 17 00:00:00 2001 From: Frane Date: Tue, 30 Nov 2021 10:17:46 +0800 Subject: [PATCH] =?UTF-8?q?20211130=20=E4=B8=8E=E6=9D=90=E6=96=99=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E5=AF=B9=E6=8E=A5=E6=8E=A5=E5=8F=A3=E6=89=93=E9=80=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../版本日志/SGGLDB_V2021-11-26-001.sql | 49 + .../0-10我的(Menu_Personal).sql | 3 + SGGL/BLL/BLL.csproj | 134 +- SGGL/BLL/Person/Person_MeetingService.cs | 73 + .../BLL.CNCECHSSEService.Base_Unit.datasource | 10 + ...vice.Check_CheckInfo_Table8Item.datasource | 10 + ...CHSSEService.Check_CheckRectify.datasource | 10 + ...SEService.EduTrain_AccidentCase.datasource | 10 + ...rvice.EduTrain_AccidentCaseItem.datasource | 10 + ...EService.Information_UrgeReport.datasource | 10 + ...SEService.Law_HSSEStandardsList.datasource | 10 + ...SEService.Law_LawRegulationList.datasource | 10 + ...CNCECHSSEService.Law_ManageRule.datasource | 10 + ...SSEService.Law_RulesRegulations.datasource | 10 + ...Service.Supervise_SubUnitReport.datasource | 10 + ...ice.Supervise_SubUnitReportItem.datasource | 10 + ...Supervise_SuperviseCheckRectify.datasource | 10 + ...LL.CNCECHSSEService.Sys_Version.datasource | 10 + ...CHSSEService.Technique_Appraise.datasource | 10 + ...HSSEService.Technique_Emergency.datasource | 10 + ...CECHSSEService.Technique_Expert.datasource | 10 + ...NCECHSSEService.Technique_HAZOP.datasource | 10 + ...SSEService.Technique_HazardList.datasource | 10 + ...ervice.Technique_HazardListType.datasource | 10 + ...ECHSSEService.Technique_Rectify.datasource | 10 + ...SEService.Technique_RectifyItem.datasource | 10 + ...Service.Technique_SpecialScheme.datasource | 10 + ...CHSSEService.Training_Knowledge.datasource | 10 + ...EService.Training_KnowledgeItem.datasource | 10 + ...SSEService.Training_TrainTestDB.datasource | 10 + ...ervice.Training_TrainTestDBItem.datasource | 10 + ...ECHSSEService.Training_Training.datasource | 10 + ...SEService.Training_TrainingItem.datasource | 10 + .../CNCECHSSEService/HSSEService.disco | 4 + .../CNCECHSSEService/HSSEService.wsdl | 520 + .../CNCECHSSEService/HSSEService.xsd | 1219 ++ .../CNCECHSSEService/HSSEService1.wsdl | 582 + .../CNCECHSSEService/HSSEService1.xsd | 15 + .../CNCECHSSEService/HSSEService2.xsd | 747 + .../CNCECHSSEService/HSSEService3.xsd | 42 + .../CNCECHSSEService/Reference.cs | 13962 ++++++++++++++++ .../CNCECHSSEService/Reference.svcmap | 37 + .../CNCECHSSEService/configuration.svcinfo | 10 + .../CNCECHSSEService/configuration91.svcinfo | 216 + .../MCSService/Reference.cs | 271 + .../MCSService/Reference.svcmap | 32 + .../MCSService/WebService1.disco | 6 + .../MCSService/WebService1.wsdl | 1245 ++ .../MCSService/configuration.svcinfo | 12 + .../MCSService/configuration91.svcinfo | 437 + SGGL/BLL/WebService/CNCECHSSEWebService.cs | 18 + SGGL/BLL/WebService/MCSWebService.cs | 54 + SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 16 + SGGL/FineUIPro.Web/Login.aspx.cs | 1 + .../FineUIPro.Web/Personal/PersonMeeting.aspx | 95 + .../Personal/PersonMeeting.aspx.cs | 125 + .../Personal/PersonMeeting.aspx.designer.cs | 159 + .../Personal/PersonMeetingEdit.aspx | 62 + .../Personal/PersonMeetingEdit.aspx.cs | 100 + .../PersonMeetingEdit.aspx.designer.cs | 123 + SGGL/FineUIPro.Web/common/Menu_JDGL.xml | 11 +- SGGL/FineUIPro.Web/common/Menu_Personal.xml | 1 + SGGL/Model/Model.cs | 298 +- 63 files changed, 20961 insertions(+), 8 deletions(-) create mode 100644 DataBase/版本日志/SGGLDB_V2021-11-26-001.sql create mode 100644 SGGL/BLL/Person/Person_MeetingService.cs create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Base_Unit.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckInfo_Table8Item.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckRectify.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCase.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCaseItem.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Information_UrgeReport.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_HSSEStandardsList.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_LawRegulationList.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_ManageRule.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_RulesRegulations.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReport.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReportItem.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Sys_Version.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Appraise.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Emergency.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Expert.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HAZOP.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardList.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardListType.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Rectify.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_RectifyItem.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_SpecialScheme.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Knowledge.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_KnowledgeItem.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDB.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDBItem.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Training.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainingItem.datasource create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/HSSEService.disco create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/HSSEService.wsdl create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/HSSEService.xsd create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.wsdl create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.xsd create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/HSSEService2.xsd create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/HSSEService3.xsd create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/Reference.cs create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/Reference.svcmap create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/configuration.svcinfo create mode 100644 SGGL/BLL/Service References/CNCECHSSEService/configuration91.svcinfo create mode 100644 SGGL/BLL/Service References/MCSService/Reference.cs create mode 100644 SGGL/BLL/Service References/MCSService/Reference.svcmap create mode 100644 SGGL/BLL/Service References/MCSService/WebService1.disco create mode 100644 SGGL/BLL/Service References/MCSService/WebService1.wsdl create mode 100644 SGGL/BLL/Service References/MCSService/configuration.svcinfo create mode 100644 SGGL/BLL/Service References/MCSService/configuration91.svcinfo create mode 100644 SGGL/BLL/WebService/CNCECHSSEWebService.cs create mode 100644 SGGL/BLL/WebService/MCSWebService.cs create mode 100644 SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx create mode 100644 SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx create mode 100644 SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.designer.cs diff --git a/DataBase/版本日志/SGGLDB_V2021-11-26-001.sql b/DataBase/版本日志/SGGLDB_V2021-11-26-001.sql new file mode 100644 index 00000000..7493ba6b --- /dev/null +++ b/DataBase/版本日志/SGGLDB_V2021-11-26-001.sql @@ -0,0 +1,49 @@ + +CREATE TABLE [dbo].[Person_Meeting]( + [MeetingId] [nvarchar](50) NOT NULL, + [CompileManId] [nvarchar](50) NULL, + [MeetingDate] [datetime] NULL, + [MeetingTitle] [nvarchar](500) NULL, + [AttendeeManIds] [nvarchar](max) NULL, + [ConferenceLink] [nvarchar](2000) NULL, + [Remark] [nvarchar](max) NULL, + CONSTRAINT [PK_Person_Meeting] PRIMARY KEY CLUSTERED +( + [MeetingId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] + +GO + +ALTER TABLE [dbo].[Person_Meeting] WITH CHECK ADD CONSTRAINT [FK_Person_Meeting_Sys_User] FOREIGN KEY([CompileManId]) +REFERENCES [dbo].[Sys_User] ([UserId]) +GO + +ALTER TABLE [dbo].[Person_Meeting] CHECK CONSTRAINT [FK_Person_Meeting_Sys_User] +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_Meeting', @level2type=N'COLUMN',@level2name=N'MeetingId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_Meeting', @level2type=N'COLUMN',@level2name=N'CompileManId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ʱ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_Meeting', @level2type=N'COLUMN',@level2name=N'MeetingDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_Meeting', @level2type=N'COLUMN',@level2name=N'MeetingTitle' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'λIDs' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_Meeting', @level2type=N'COLUMN',@level2name=N'AttendeeManIds' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_Meeting', @level2type=N'COLUMN',@level2name=N'ConferenceLink' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_Meeting', @level2type=N'COLUMN',@level2name=N'Remark' +GO + + +INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +VALUES('6549EF60-1DED-4912-8D2D-7B32A80A2DEC','Ƶ','Personal/PersonMeeting.aspx',60,'0','Menu_Personal',0,1,1) +GO \ No newline at end of file diff --git a/DataBase/菜单初始化脚本/0-10我的(Menu_Personal).sql b/DataBase/菜单初始化脚本/0-10我的(Menu_Personal).sql index 46ebd884..9df5d351 100644 --- a/DataBase/菜单初始化脚本/0-10我的(Menu_Personal).sql +++ b/DataBase/菜单初始化脚本/0-10我的(Menu_Personal).sql @@ -40,3 +40,6 @@ INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffi VALUES('CB373458-30B0-4850-ABFF-B38D40A04D43','员工绩效考核结果','Personal/PersonCheckInfo.aspx',50,'0','Menu_Personal',0,1,1) GO +INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +VALUES('6549EF60-1DED-4912-8D2D-7B32A80A2DEC','视频会议','Personal/PersonMeeting.aspx',60,'0','Menu_Personal',0,1,1) +GO diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index 0cd706c7..691252ae 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -587,6 +587,7 @@ + @@ -629,6 +630,16 @@ + + True + True + Reference.svcmap + + + True + True + Reference.svcmap + @@ -694,6 +705,8 @@ + + @@ -763,6 +776,108 @@ + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + + Designer + + + + Designer + + + Designer + + + Designer + + @@ -780,8 +895,25 @@ + + WCF Proxy Generator + Reference.cs + + + + + + WCF Proxy Generator + Reference.cs + + + + + + + + - + + BLL.CNCECHSSEService.Base_Unit, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckInfo_Table8Item.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckInfo_Table8Item.datasource new file mode 100644 index 00000000..f5cab609 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckInfo_Table8Item.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Check_CheckInfo_Table8Item, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckRectify.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckRectify.datasource new file mode 100644 index 00000000..fd6a8685 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Check_CheckRectify.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Check_CheckRectify, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCase.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCase.datasource new file mode 100644 index 00000000..252cad99 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCase.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.EduTrain_AccidentCase, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCaseItem.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCaseItem.datasource new file mode 100644 index 00000000..74de1a57 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.EduTrain_AccidentCaseItem.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.EduTrain_AccidentCaseItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Information_UrgeReport.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Information_UrgeReport.datasource new file mode 100644 index 00000000..4666e760 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Information_UrgeReport.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Information_UrgeReport, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_HSSEStandardsList.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_HSSEStandardsList.datasource new file mode 100644 index 00000000..27eb9dc2 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_HSSEStandardsList.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Law_HSSEStandardsList, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_LawRegulationList.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_LawRegulationList.datasource new file mode 100644 index 00000000..ba5dda3a --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_LawRegulationList.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Law_LawRegulationList, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_ManageRule.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_ManageRule.datasource new file mode 100644 index 00000000..3fec8b09 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_ManageRule.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Law_ManageRule, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_RulesRegulations.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_RulesRegulations.datasource new file mode 100644 index 00000000..a6289152 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Law_RulesRegulations.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Law_RulesRegulations, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReport.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReport.datasource new file mode 100644 index 00000000..65f07242 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReport.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Supervise_SubUnitReport, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReportItem.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReportItem.datasource new file mode 100644 index 00000000..a4931747 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SubUnitReportItem.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Supervise_SubUnitReportItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify.datasource new file mode 100644 index 00000000..6bd40775 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Sys_Version.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Sys_Version.datasource new file mode 100644 index 00000000..228ee0fe --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Sys_Version.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Sys_Version, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Appraise.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Appraise.datasource new file mode 100644 index 00000000..1957495b --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Appraise.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_Appraise, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Emergency.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Emergency.datasource new file mode 100644 index 00000000..b162358e --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Emergency.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_Emergency, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Expert.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Expert.datasource new file mode 100644 index 00000000..a8694e46 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Expert.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_Expert, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HAZOP.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HAZOP.datasource new file mode 100644 index 00000000..d70296aa --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HAZOP.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_HAZOP, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardList.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardList.datasource new file mode 100644 index 00000000..a9c2135a --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardList.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_HazardList, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardListType.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardListType.datasource new file mode 100644 index 00000000..7c3fc16f --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_HazardListType.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_HazardListType, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Rectify.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Rectify.datasource new file mode 100644 index 00000000..7f217341 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_Rectify.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_Rectify, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_RectifyItem.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_RectifyItem.datasource new file mode 100644 index 00000000..22d8cc24 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_RectifyItem.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_RectifyItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_SpecialScheme.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_SpecialScheme.datasource new file mode 100644 index 00000000..5162e13e --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Technique_SpecialScheme.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Technique_SpecialScheme, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Knowledge.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Knowledge.datasource new file mode 100644 index 00000000..073b3c01 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Knowledge.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Training_Knowledge, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_KnowledgeItem.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_KnowledgeItem.datasource new file mode 100644 index 00000000..667ee2aa --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_KnowledgeItem.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Training_KnowledgeItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDB.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDB.datasource new file mode 100644 index 00000000..d2aac733 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDB.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Training_TrainTestDB, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDBItem.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDBItem.datasource new file mode 100644 index 00000000..d29dadb6 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainTestDBItem.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Training_TrainTestDBItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Training.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Training.datasource new file mode 100644 index 00000000..84f6b678 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_Training.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Training_Training, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainingItem.datasource b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainingItem.datasource new file mode 100644 index 00000000..e71b67e6 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/BLL.CNCECHSSEService.Training_TrainingItem.datasource @@ -0,0 +1,10 @@ + + + + BLL.CNCECHSSEService.Training_TrainingItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.disco b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.disco new file mode 100644 index 00000000..ca0641f4 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.disco @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.wsdl b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.wsdl new file mode 100644 index 00000000..f6006de7 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.wsdl @@ -0,0 +1,520 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.xsd b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.xsd new file mode 100644 index 00000000..de13243d --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService.xsd @@ -0,0 +1,1219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.wsdl b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.wsdl new file mode 100644 index 00000000..9dce82c6 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.wsdl @@ -0,0 +1,582 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.xsd b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.xsd new file mode 100644 index 00000000..97612c86 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService1.xsd @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/HSSEService2.xsd b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService2.xsd new file mode 100644 index 00000000..20b92a7a --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService2.xsd @@ -0,0 +1,747 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/HSSEService3.xsd b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService3.xsd new file mode 100644 index 00000000..d58e7f39 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/HSSEService3.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs b/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs new file mode 100644 index 00000000..35343cb3 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs @@ -0,0 +1,13962 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace BLL.CNCECHSSEService { + using System.Runtime.Serialization; + using System; + + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Training_TrainingItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Training_TrainingItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ApproveStateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ResourcesFromField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ResourcesFromTypeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainingIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainingItemCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainingItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainingItemNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string VersionNumField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ApproveState { + get { + return this.ApproveStateField; + } + set { + if ((object.ReferenceEquals(this.ApproveStateField, value) != true)) { + this.ApproveStateField = value; + this.RaisePropertyChanged("ApproveState"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ResourcesFrom { + get { + return this.ResourcesFromField; + } + set { + if ((object.ReferenceEquals(this.ResourcesFromField, value) != true)) { + this.ResourcesFromField = value; + this.RaisePropertyChanged("ResourcesFrom"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ResourcesFromType { + get { + return this.ResourcesFromTypeField; + } + set { + if ((object.ReferenceEquals(this.ResourcesFromTypeField, value) != true)) { + this.ResourcesFromTypeField = value; + this.RaisePropertyChanged("ResourcesFromType"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainingId { + get { + return this.TrainingIdField; + } + set { + if ((object.ReferenceEquals(this.TrainingIdField, value) != true)) { + this.TrainingIdField = value; + this.RaisePropertyChanged("TrainingId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainingItemCode { + get { + return this.TrainingItemCodeField; + } + set { + if ((object.ReferenceEquals(this.TrainingItemCodeField, value) != true)) { + this.TrainingItemCodeField = value; + this.RaisePropertyChanged("TrainingItemCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainingItemId { + get { + return this.TrainingItemIdField; + } + set { + if ((object.ReferenceEquals(this.TrainingItemIdField, value) != true)) { + this.TrainingItemIdField = value; + this.RaisePropertyChanged("TrainingItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainingItemName { + get { + return this.TrainingItemNameField; + } + set { + if ((object.ReferenceEquals(this.TrainingItemNameField, value) != true)) { + this.TrainingItemNameField = value; + this.RaisePropertyChanged("TrainingItemName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string VersionNum { + get { + return this.VersionNumField; + } + set { + if ((object.ReferenceEquals(this.VersionNumField, value) != true)) { + this.VersionNumField = value; + this.RaisePropertyChanged("VersionNum"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Training_TrainTestDBItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Training_TrainTestDBItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TraiinTestItemNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainTestIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainTestItemCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainTestItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TraiinTestItemName { + get { + return this.TraiinTestItemNameField; + } + set { + if ((object.ReferenceEquals(this.TraiinTestItemNameField, value) != true)) { + this.TraiinTestItemNameField = value; + this.RaisePropertyChanged("TraiinTestItemName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainTestId { + get { + return this.TrainTestIdField; + } + set { + if ((object.ReferenceEquals(this.TrainTestIdField, value) != true)) { + this.TrainTestIdField = value; + this.RaisePropertyChanged("TrainTestId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainTestItemCode { + get { + return this.TrainTestItemCodeField; + } + set { + if ((object.ReferenceEquals(this.TrainTestItemCodeField, value) != true)) { + this.TrainTestItemCodeField = value; + this.RaisePropertyChanged("TrainTestItemCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainTestItemId { + get { + return this.TrainTestItemIdField; + } + set { + if ((object.ReferenceEquals(this.TrainTestItemIdField, value) != true)) { + this.TrainTestItemIdField = value; + this.RaisePropertyChanged("TrainTestItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="EduTrain_AccidentCaseItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class EduTrain_AccidentCaseItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCaseIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCaseItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentProfilesField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentReviewField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ActivitiesField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCaseId { + get { + return this.AccidentCaseIdField; + } + set { + if ((object.ReferenceEquals(this.AccidentCaseIdField, value) != true)) { + this.AccidentCaseIdField = value; + this.RaisePropertyChanged("AccidentCaseId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCaseItemId { + get { + return this.AccidentCaseItemIdField; + } + set { + if ((object.ReferenceEquals(this.AccidentCaseItemIdField, value) != true)) { + this.AccidentCaseItemIdField = value; + this.RaisePropertyChanged("AccidentCaseItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentName { + get { + return this.AccidentNameField; + } + set { + if ((object.ReferenceEquals(this.AccidentNameField, value) != true)) { + this.AccidentNameField = value; + this.RaisePropertyChanged("AccidentName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentProfiles { + get { + return this.AccidentProfilesField; + } + set { + if ((object.ReferenceEquals(this.AccidentProfilesField, value) != true)) { + this.AccidentProfilesField = value; + this.RaisePropertyChanged("AccidentProfiles"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentReview { + get { + return this.AccidentReviewField; + } + set { + if ((object.ReferenceEquals(this.AccidentReviewField, value) != true)) { + this.AccidentReviewField = value; + this.RaisePropertyChanged("AccidentReview"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Activities { + get { + return this.ActivitiesField; + } + set { + if ((object.ReferenceEquals(this.ActivitiesField, value) != true)) { + this.ActivitiesField = value; + this.RaisePropertyChanged("Activities"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Training_KnowledgeItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Training_KnowledgeItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KnowledgeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KnowledgeItemCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KnowledgeItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KnowledgeItemNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KnowledgeId { + get { + return this.KnowledgeIdField; + } + set { + if ((object.ReferenceEquals(this.KnowledgeIdField, value) != true)) { + this.KnowledgeIdField = value; + this.RaisePropertyChanged("KnowledgeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KnowledgeItemCode { + get { + return this.KnowledgeItemCodeField; + } + set { + if ((object.ReferenceEquals(this.KnowledgeItemCodeField, value) != true)) { + this.KnowledgeItemCodeField = value; + this.RaisePropertyChanged("KnowledgeItemCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KnowledgeItemId { + get { + return this.KnowledgeItemIdField; + } + set { + if ((object.ReferenceEquals(this.KnowledgeItemIdField, value) != true)) { + this.KnowledgeItemIdField = value; + this.RaisePropertyChanged("KnowledgeItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KnowledgeItemName { + get { + return this.KnowledgeItemNameField; + } + set { + if ((object.ReferenceEquals(this.KnowledgeItemNameField, value) != true)) { + this.KnowledgeItemNameField = value; + this.RaisePropertyChanged("KnowledgeItemName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Remark { + get { + return this.RemarkField; + } + set { + if ((object.ReferenceEquals(this.RemarkField, value) != true)) { + this.RemarkField = value; + this.RaisePropertyChanged("Remark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_HazardList", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_HazardList : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ControlMeasuresField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DefectsTypeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardItemsField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HazardJudge_CField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HazardJudge_DField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HazardJudge_EField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HazardJudge_LField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardLevelField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardListTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HelperMethodField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MayLeadAccidentsField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ControlMeasures { + get { + return this.ControlMeasuresField; + } + set { + if ((object.ReferenceEquals(this.ControlMeasuresField, value) != true)) { + this.ControlMeasuresField = value; + this.RaisePropertyChanged("ControlMeasures"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DefectsType { + get { + return this.DefectsTypeField; + } + set { + if ((object.ReferenceEquals(this.DefectsTypeField, value) != true)) { + this.DefectsTypeField = value; + this.RaisePropertyChanged("DefectsType"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardCode { + get { + return this.HazardCodeField; + } + set { + if ((object.ReferenceEquals(this.HazardCodeField, value) != true)) { + this.HazardCodeField = value; + this.RaisePropertyChanged("HazardCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardId { + get { + return this.HazardIdField; + } + set { + if ((object.ReferenceEquals(this.HazardIdField, value) != true)) { + this.HazardIdField = value; + this.RaisePropertyChanged("HazardId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardItems { + get { + return this.HazardItemsField; + } + set { + if ((object.ReferenceEquals(this.HazardItemsField, value) != true)) { + this.HazardItemsField = value; + this.RaisePropertyChanged("HazardItems"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HazardJudge_C { + get { + return this.HazardJudge_CField; + } + set { + if ((this.HazardJudge_CField.Equals(value) != true)) { + this.HazardJudge_CField = value; + this.RaisePropertyChanged("HazardJudge_C"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HazardJudge_D { + get { + return this.HazardJudge_DField; + } + set { + if ((this.HazardJudge_DField.Equals(value) != true)) { + this.HazardJudge_DField = value; + this.RaisePropertyChanged("HazardJudge_D"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HazardJudge_E { + get { + return this.HazardJudge_EField; + } + set { + if ((this.HazardJudge_EField.Equals(value) != true)) { + this.HazardJudge_EField = value; + this.RaisePropertyChanged("HazardJudge_E"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HazardJudge_L { + get { + return this.HazardJudge_LField; + } + set { + if ((this.HazardJudge_LField.Equals(value) != true)) { + this.HazardJudge_LField = value; + this.RaisePropertyChanged("HazardJudge_L"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardLevel { + get { + return this.HazardLevelField; + } + set { + if ((object.ReferenceEquals(this.HazardLevelField, value) != true)) { + this.HazardLevelField = value; + this.RaisePropertyChanged("HazardLevel"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardListTypeId { + get { + return this.HazardListTypeIdField; + } + set { + if ((object.ReferenceEquals(this.HazardListTypeIdField, value) != true)) { + this.HazardListTypeIdField = value; + this.RaisePropertyChanged("HazardListTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HelperMethod { + get { + return this.HelperMethodField; + } + set { + if ((object.ReferenceEquals(this.HelperMethodField, value) != true)) { + this.HelperMethodField = value; + this.RaisePropertyChanged("HelperMethod"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MayLeadAccidents { + get { + return this.MayLeadAccidentsField; + } + set { + if ((object.ReferenceEquals(this.MayLeadAccidentsField, value) != true)) { + this.MayLeadAccidentsField = value; + this.RaisePropertyChanged("MayLeadAccidents"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_RectifyItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_RectifyItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardSourcePointField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RectifyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RectifyItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RiskAnalysisField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RiskPreventionField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SimilarRiskField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardSourcePoint { + get { + return this.HazardSourcePointField; + } + set { + if ((object.ReferenceEquals(this.HazardSourcePointField, value) != true)) { + this.HazardSourcePointField = value; + this.RaisePropertyChanged("HazardSourcePoint"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RectifyId { + get { + return this.RectifyIdField; + } + set { + if ((object.ReferenceEquals(this.RectifyIdField, value) != true)) { + this.RectifyIdField = value; + this.RaisePropertyChanged("RectifyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RectifyItemId { + get { + return this.RectifyItemIdField; + } + set { + if ((object.ReferenceEquals(this.RectifyItemIdField, value) != true)) { + this.RectifyItemIdField = value; + this.RaisePropertyChanged("RectifyItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RiskAnalysis { + get { + return this.RiskAnalysisField; + } + set { + if ((object.ReferenceEquals(this.RiskAnalysisField, value) != true)) { + this.RiskAnalysisField = value; + this.RaisePropertyChanged("RiskAnalysis"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RiskPrevention { + get { + return this.RiskPreventionField; + } + set { + if ((object.ReferenceEquals(this.RiskPreventionField, value) != true)) { + this.RiskPreventionField = value; + this.RaisePropertyChanged("RiskPrevention"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SimilarRisk { + get { + return this.SimilarRiskField; + } + set { + if ((object.ReferenceEquals(this.SimilarRiskField, value) != true)) { + this.SimilarRiskField = value; + this.RaisePropertyChanged("SimilarRisk"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_Expert", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_Expert : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AgeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] AttachUrlFileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable BirthdayField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EducationField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable EffectiveDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EmailField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ExpertCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ExpertIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ExpertNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ExpertTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ExpertTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ExpertTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HometownField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string IdentityCardField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MarriageField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NationField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PerformanceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PersonSpecialtyCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PersonSpecialtyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PersonSpecialtyNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PhotoUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] PhotoUrlFileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PostTitleCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PostTitleIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PostTitleNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TelephoneField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitNameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Age { + get { + return this.AgeField; + } + set { + if ((this.AgeField.Equals(value) != true)) { + this.AgeField = value; + this.RaisePropertyChanged("Age"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] AttachUrlFileContext { + get { + return this.AttachUrlFileContextField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlFileContextField, value) != true)) { + this.AttachUrlFileContextField = value; + this.RaisePropertyChanged("AttachUrlFileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Birthday { + get { + return this.BirthdayField; + } + set { + if ((this.BirthdayField.Equals(value) != true)) { + this.BirthdayField = value; + this.RaisePropertyChanged("Birthday"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Education { + get { + return this.EducationField; + } + set { + if ((object.ReferenceEquals(this.EducationField, value) != true)) { + this.EducationField = value; + this.RaisePropertyChanged("Education"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable EffectiveDate { + get { + return this.EffectiveDateField; + } + set { + if ((this.EffectiveDateField.Equals(value) != true)) { + this.EffectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Email { + get { + return this.EmailField; + } + set { + if ((object.ReferenceEquals(this.EmailField, value) != true)) { + this.EmailField = value; + this.RaisePropertyChanged("Email"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ExpertCode { + get { + return this.ExpertCodeField; + } + set { + if ((object.ReferenceEquals(this.ExpertCodeField, value) != true)) { + this.ExpertCodeField = value; + this.RaisePropertyChanged("ExpertCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ExpertId { + get { + return this.ExpertIdField; + } + set { + if ((object.ReferenceEquals(this.ExpertIdField, value) != true)) { + this.ExpertIdField = value; + this.RaisePropertyChanged("ExpertId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ExpertName { + get { + return this.ExpertNameField; + } + set { + if ((object.ReferenceEquals(this.ExpertNameField, value) != true)) { + this.ExpertNameField = value; + this.RaisePropertyChanged("ExpertName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ExpertTypeCode { + get { + return this.ExpertTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.ExpertTypeCodeField, value) != true)) { + this.ExpertTypeCodeField = value; + this.RaisePropertyChanged("ExpertTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ExpertTypeId { + get { + return this.ExpertTypeIdField; + } + set { + if ((object.ReferenceEquals(this.ExpertTypeIdField, value) != true)) { + this.ExpertTypeIdField = value; + this.RaisePropertyChanged("ExpertTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ExpertTypeName { + get { + return this.ExpertTypeNameField; + } + set { + if ((object.ReferenceEquals(this.ExpertTypeNameField, value) != true)) { + this.ExpertTypeNameField = value; + this.RaisePropertyChanged("ExpertTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Hometown { + get { + return this.HometownField; + } + set { + if ((object.ReferenceEquals(this.HometownField, value) != true)) { + this.HometownField = value; + this.RaisePropertyChanged("Hometown"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string IdentityCard { + get { + return this.IdentityCardField; + } + set { + if ((object.ReferenceEquals(this.IdentityCardField, value) != true)) { + this.IdentityCardField = value; + this.RaisePropertyChanged("IdentityCard"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Marriage { + get { + return this.MarriageField; + } + set { + if ((object.ReferenceEquals(this.MarriageField, value) != true)) { + this.MarriageField = value; + this.RaisePropertyChanged("Marriage"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Nation { + get { + return this.NationField; + } + set { + if ((object.ReferenceEquals(this.NationField, value) != true)) { + this.NationField = value; + this.RaisePropertyChanged("Nation"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Performance { + get { + return this.PerformanceField; + } + set { + if ((object.ReferenceEquals(this.PerformanceField, value) != true)) { + this.PerformanceField = value; + this.RaisePropertyChanged("Performance"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PersonSpecialtyCode { + get { + return this.PersonSpecialtyCodeField; + } + set { + if ((object.ReferenceEquals(this.PersonSpecialtyCodeField, value) != true)) { + this.PersonSpecialtyCodeField = value; + this.RaisePropertyChanged("PersonSpecialtyCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PersonSpecialtyId { + get { + return this.PersonSpecialtyIdField; + } + set { + if ((object.ReferenceEquals(this.PersonSpecialtyIdField, value) != true)) { + this.PersonSpecialtyIdField = value; + this.RaisePropertyChanged("PersonSpecialtyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PersonSpecialtyName { + get { + return this.PersonSpecialtyNameField; + } + set { + if ((object.ReferenceEquals(this.PersonSpecialtyNameField, value) != true)) { + this.PersonSpecialtyNameField = value; + this.RaisePropertyChanged("PersonSpecialtyName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PhotoUrl { + get { + return this.PhotoUrlField; + } + set { + if ((object.ReferenceEquals(this.PhotoUrlField, value) != true)) { + this.PhotoUrlField = value; + this.RaisePropertyChanged("PhotoUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] PhotoUrlFileContext { + get { + return this.PhotoUrlFileContextField; + } + set { + if ((object.ReferenceEquals(this.PhotoUrlFileContextField, value) != true)) { + this.PhotoUrlFileContextField = value; + this.RaisePropertyChanged("PhotoUrlFileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PostTitleCode { + get { + return this.PostTitleCodeField; + } + set { + if ((object.ReferenceEquals(this.PostTitleCodeField, value) != true)) { + this.PostTitleCodeField = value; + this.RaisePropertyChanged("PostTitleCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PostTitleId { + get { + return this.PostTitleIdField; + } + set { + if ((object.ReferenceEquals(this.PostTitleIdField, value) != true)) { + this.PostTitleIdField = value; + this.RaisePropertyChanged("PostTitleId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PostTitleName { + get { + return this.PostTitleNameField; + } + set { + if ((object.ReferenceEquals(this.PostTitleNameField, value) != true)) { + this.PostTitleNameField = value; + this.RaisePropertyChanged("PostTitleName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Remark { + get { + return this.RemarkField; + } + set { + if ((object.ReferenceEquals(this.RemarkField, value) != true)) { + this.RemarkField = value; + this.RaisePropertyChanged("Remark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Sex { + get { + return this.SexField; + } + set { + if ((object.ReferenceEquals(this.SexField, value) != true)) { + this.SexField = value; + this.RaisePropertyChanged("Sex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Telephone { + get { + return this.TelephoneField; + } + set { + if ((object.ReferenceEquals(this.TelephoneField, value) != true)) { + this.TelephoneField = value; + this.RaisePropertyChanged("Telephone"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitName { + get { + return this.UnitNameField; + } + set { + if ((object.ReferenceEquals(this.UnitNameField, value) != true)) { + this.UnitNameField = value; + this.RaisePropertyChanged("UnitName"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Supervise_SuperviseCheckRectify", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Supervise_SuperviseCheckRectify : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ConfirmDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ConfirmManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HandleStateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsFromMainUnitField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IssueDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string IssueManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable OrderEndDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string OrderEndPersonField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProjectIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable RealEndDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RectifyItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SuperviseCheckRectifyCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SuperviseCheckRectifyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SuperviseCheckRectifyItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SuperviseCheckReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckDate { + get { + return this.CheckDateField; + } + set { + if ((this.CheckDateField.Equals(value) != true)) { + this.CheckDateField = value; + this.RaisePropertyChanged("CheckDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ConfirmDate { + get { + return this.ConfirmDateField; + } + set { + if ((this.ConfirmDateField.Equals(value) != true)) { + this.ConfirmDateField = value; + this.RaisePropertyChanged("ConfirmDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ConfirmMan { + get { + return this.ConfirmManField; + } + set { + if ((object.ReferenceEquals(this.ConfirmManField, value) != true)) { + this.ConfirmManField = value; + this.RaisePropertyChanged("ConfirmMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HandleState { + get { + return this.HandleStateField; + } + set { + if ((object.ReferenceEquals(this.HandleStateField, value) != true)) { + this.HandleStateField = value; + this.RaisePropertyChanged("HandleState"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsFromMainUnit { + get { + return this.IsFromMainUnitField; + } + set { + if ((this.IsFromMainUnitField.Equals(value) != true)) { + this.IsFromMainUnitField = value; + this.RaisePropertyChanged("IsFromMainUnit"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IssueDate { + get { + return this.IssueDateField; + } + set { + if ((this.IssueDateField.Equals(value) != true)) { + this.IssueDateField = value; + this.RaisePropertyChanged("IssueDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string IssueMan { + get { + return this.IssueManField; + } + set { + if ((object.ReferenceEquals(this.IssueManField, value) != true)) { + this.IssueManField = value; + this.RaisePropertyChanged("IssueMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable OrderEndDate { + get { + return this.OrderEndDateField; + } + set { + if ((this.OrderEndDateField.Equals(value) != true)) { + this.OrderEndDateField = value; + this.RaisePropertyChanged("OrderEndDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string OrderEndPerson { + get { + return this.OrderEndPersonField; + } + set { + if ((object.ReferenceEquals(this.OrderEndPersonField, value) != true)) { + this.OrderEndPersonField = value; + this.RaisePropertyChanged("OrderEndPerson"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProjectId { + get { + return this.ProjectIdField; + } + set { + if ((object.ReferenceEquals(this.ProjectIdField, value) != true)) { + this.ProjectIdField = value; + this.RaisePropertyChanged("ProjectId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable RealEndDate { + get { + return this.RealEndDateField; + } + set { + if ((this.RealEndDateField.Equals(value) != true)) { + this.RealEndDateField = value; + this.RaisePropertyChanged("RealEndDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RectifyItemId { + get { + return this.RectifyItemIdField; + } + set { + if ((object.ReferenceEquals(this.RectifyItemIdField, value) != true)) { + this.RectifyItemIdField = value; + this.RaisePropertyChanged("RectifyItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SuperviseCheckRectifyCode { + get { + return this.SuperviseCheckRectifyCodeField; + } + set { + if ((object.ReferenceEquals(this.SuperviseCheckRectifyCodeField, value) != true)) { + this.SuperviseCheckRectifyCodeField = value; + this.RaisePropertyChanged("SuperviseCheckRectifyCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SuperviseCheckRectifyId { + get { + return this.SuperviseCheckRectifyIdField; + } + set { + if ((object.ReferenceEquals(this.SuperviseCheckRectifyIdField, value) != true)) { + this.SuperviseCheckRectifyIdField = value; + this.RaisePropertyChanged("SuperviseCheckRectifyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SuperviseCheckRectifyItemId { + get { + return this.SuperviseCheckRectifyItemIdField; + } + set { + if ((object.ReferenceEquals(this.SuperviseCheckRectifyItemIdField, value) != true)) { + this.SuperviseCheckRectifyItemIdField = value; + this.RaisePropertyChanged("SuperviseCheckRectifyItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SuperviseCheckReportId { + get { + return this.SuperviseCheckReportIdField; + } + set { + if ((object.ReferenceEquals(this.SuperviseCheckReportIdField, value) != true)) { + this.SuperviseCheckReportIdField = value; + this.RaisePropertyChanged("SuperviseCheckReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="HSSESystem_HSSEManageItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class HSSESystem_HSSEManageItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DutyField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EMailField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HSSEManageItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HSSEManageNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MobilePhoneField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NamesField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PostField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SortIndexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TelephoneField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Duty { + get { + return this.DutyField; + } + set { + if ((object.ReferenceEquals(this.DutyField, value) != true)) { + this.DutyField = value; + this.RaisePropertyChanged("Duty"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EMail { + get { + return this.EMailField; + } + set { + if ((object.ReferenceEquals(this.EMailField, value) != true)) { + this.EMailField = value; + this.RaisePropertyChanged("EMail"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HSSEManageItemId { + get { + return this.HSSEManageItemIdField; + } + set { + if ((object.ReferenceEquals(this.HSSEManageItemIdField, value) != true)) { + this.HSSEManageItemIdField = value; + this.RaisePropertyChanged("HSSEManageItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HSSEManageName { + get { + return this.HSSEManageNameField; + } + set { + if ((object.ReferenceEquals(this.HSSEManageNameField, value) != true)) { + this.HSSEManageNameField = value; + this.RaisePropertyChanged("HSSEManageName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MobilePhone { + get { + return this.MobilePhoneField; + } + set { + if ((object.ReferenceEquals(this.MobilePhoneField, value) != true)) { + this.MobilePhoneField = value; + this.RaisePropertyChanged("MobilePhone"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Names { + get { + return this.NamesField; + } + set { + if ((object.ReferenceEquals(this.NamesField, value) != true)) { + this.NamesField = value; + this.RaisePropertyChanged("Names"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Post { + get { + return this.PostField; + } + set { + if ((object.ReferenceEquals(this.PostField, value) != true)) { + this.PostField = value; + this.RaisePropertyChanged("Post"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SortIndex { + get { + return this.SortIndexField; + } + set { + if ((object.ReferenceEquals(this.SortIndexField, value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Telephone { + get { + return this.TelephoneField; + } + set { + if ((object.ReferenceEquals(this.TelephoneField, value) != true)) { + this.TelephoneField = value; + this.RaisePropertyChanged("Telephone"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Supervise_UpCheckReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Supervise_UpCheckReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckEndTimeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckStartTimeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UpCheckReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values1Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values2Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values3Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values4Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values5Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values6Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values7Field; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckEndTime { + get { + return this.CheckEndTimeField; + } + set { + if ((this.CheckEndTimeField.Equals(value) != true)) { + this.CheckEndTimeField = value; + this.RaisePropertyChanged("CheckEndTime"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckStartTime { + get { + return this.CheckStartTimeField; + } + set { + if ((this.CheckStartTimeField.Equals(value) != true)) { + this.CheckStartTimeField = value; + this.RaisePropertyChanged("CheckStartTime"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UpCheckReportId { + get { + return this.UpCheckReportIdField; + } + set { + if ((object.ReferenceEquals(this.UpCheckReportIdField, value) != true)) { + this.UpCheckReportIdField = value; + this.RaisePropertyChanged("UpCheckReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values1 { + get { + return this.Values1Field; + } + set { + if ((object.ReferenceEquals(this.Values1Field, value) != true)) { + this.Values1Field = value; + this.RaisePropertyChanged("Values1"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values2 { + get { + return this.Values2Field; + } + set { + if ((object.ReferenceEquals(this.Values2Field, value) != true)) { + this.Values2Field = value; + this.RaisePropertyChanged("Values2"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values3 { + get { + return this.Values3Field; + } + set { + if ((object.ReferenceEquals(this.Values3Field, value) != true)) { + this.Values3Field = value; + this.RaisePropertyChanged("Values3"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values4 { + get { + return this.Values4Field; + } + set { + if ((object.ReferenceEquals(this.Values4Field, value) != true)) { + this.Values4Field = value; + this.RaisePropertyChanged("Values4"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values5 { + get { + return this.Values5Field; + } + set { + if ((object.ReferenceEquals(this.Values5Field, value) != true)) { + this.Values5Field = value; + this.RaisePropertyChanged("Values5"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values6 { + get { + return this.Values6Field; + } + set { + if ((object.ReferenceEquals(this.Values6Field, value) != true)) { + this.Values6Field = value; + this.RaisePropertyChanged("Values6"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values7 { + get { + return this.Values7Field; + } + set { + if ((object.ReferenceEquals(this.Values7Field, value) != true)) { + this.Values7Field = value; + this.RaisePropertyChanged("Values7"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Supervise_UpCheckReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Supervise_UpCheckReportItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckPostNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PostNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SortIndexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UpCheckReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UpCheckReportItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string WorkTitleField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckDate { + get { + return this.CheckDateField; + } + set { + if ((this.CheckDateField.Equals(value) != true)) { + this.CheckDateField = value; + this.RaisePropertyChanged("CheckDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckPostName { + get { + return this.CheckPostNameField; + } + set { + if ((object.ReferenceEquals(this.CheckPostNameField, value) != true)) { + this.CheckPostNameField = value; + this.RaisePropertyChanged("CheckPostName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PostName { + get { + return this.PostNameField; + } + set { + if ((object.ReferenceEquals(this.PostNameField, value) != true)) { + this.PostNameField = value; + this.RaisePropertyChanged("PostName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Sex { + get { + return this.SexField; + } + set { + if ((object.ReferenceEquals(this.SexField, value) != true)) { + this.SexField = value; + this.RaisePropertyChanged("Sex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SortIndex { + get { + return this.SortIndexField; + } + set { + if ((object.ReferenceEquals(this.SortIndexField, value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitName { + get { + return this.UnitNameField; + } + set { + if ((object.ReferenceEquals(this.UnitNameField, value) != true)) { + this.UnitNameField = value; + this.RaisePropertyChanged("UnitName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UpCheckReportId { + get { + return this.UpCheckReportIdField; + } + set { + if ((object.ReferenceEquals(this.UpCheckReportIdField, value) != true)) { + this.UpCheckReportIdField = value; + this.RaisePropertyChanged("UpCheckReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UpCheckReportItemId { + get { + return this.UpCheckReportItemIdField; + } + set { + if ((object.ReferenceEquals(this.UpCheckReportItemIdField, value) != true)) { + this.UpCheckReportItemIdField = value; + this.RaisePropertyChanged("UpCheckReportItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string WorkTitle { + get { + return this.WorkTitleField; + } + set { + if ((object.ReferenceEquals(this.WorkTitleField, value) != true)) { + this.WorkTitleField = value; + this.RaisePropertyChanged("WorkTitle"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Supervise_UpCheckReportItem2", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Supervise_UpCheckReportItem2 : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompRectifyCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable RectifyCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ResultLevelField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SortIndexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectObjectField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectObjectInfoField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalGetScoreField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitHSSEManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitHSSEManTelField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitManTelField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UpCheckReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UpCheckReportItem2IdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckDate { + get { + return this.CheckDateField; + } + set { + if ((this.CheckDateField.Equals(value) != true)) { + this.CheckDateField = value; + this.RaisePropertyChanged("CheckDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompRectifyCount { + get { + return this.CompRectifyCountField; + } + set { + if ((this.CompRectifyCountField.Equals(value) != true)) { + this.CompRectifyCountField = value; + this.RaisePropertyChanged("CompRectifyCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable RectifyCount { + get { + return this.RectifyCountField; + } + set { + if ((this.RectifyCountField.Equals(value) != true)) { + this.RectifyCountField = value; + this.RaisePropertyChanged("RectifyCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ResultLevel { + get { + return this.ResultLevelField; + } + set { + if ((object.ReferenceEquals(this.ResultLevelField, value) != true)) { + this.ResultLevelField = value; + this.RaisePropertyChanged("ResultLevel"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SortIndex { + get { + return this.SortIndexField; + } + set { + if ((object.ReferenceEquals(this.SortIndexField, value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectObject { + get { + return this.SubjectObjectField; + } + set { + if ((object.ReferenceEquals(this.SubjectObjectField, value) != true)) { + this.SubjectObjectField = value; + this.RaisePropertyChanged("SubjectObject"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectObjectInfo { + get { + return this.SubjectObjectInfoField; + } + set { + if ((object.ReferenceEquals(this.SubjectObjectInfoField, value) != true)) { + this.SubjectObjectInfoField = value; + this.RaisePropertyChanged("SubjectObjectInfo"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalGetScore { + get { + return this.TotalGetScoreField; + } + set { + if ((this.TotalGetScoreField.Equals(value) != true)) { + this.TotalGetScoreField = value; + this.RaisePropertyChanged("TotalGetScore"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitHSSEMan { + get { + return this.UnitHSSEManField; + } + set { + if ((object.ReferenceEquals(this.UnitHSSEManField, value) != true)) { + this.UnitHSSEManField = value; + this.RaisePropertyChanged("UnitHSSEMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitHSSEManTel { + get { + return this.UnitHSSEManTelField; + } + set { + if ((object.ReferenceEquals(this.UnitHSSEManTelField, value) != true)) { + this.UnitHSSEManTelField = value; + this.RaisePropertyChanged("UnitHSSEManTel"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitMan { + get { + return this.UnitManField; + } + set { + if ((object.ReferenceEquals(this.UnitManField, value) != true)) { + this.UnitManField = value; + this.RaisePropertyChanged("UnitMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitManTel { + get { + return this.UnitManTelField; + } + set { + if ((object.ReferenceEquals(this.UnitManTelField, value) != true)) { + this.UnitManTelField = value; + this.RaisePropertyChanged("UnitManTel"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UpCheckReportId { + get { + return this.UpCheckReportIdField; + } + set { + if ((object.ReferenceEquals(this.UpCheckReportIdField, value) != true)) { + this.UpCheckReportIdField = value; + this.RaisePropertyChanged("UpCheckReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UpCheckReportItem2Id { + get { + return this.UpCheckReportItem2IdField; + } + set { + if ((object.ReferenceEquals(this.UpCheckReportItem2IdField, value) != true)) { + this.UpCheckReportItem2IdField = value; + this.RaisePropertyChanged("UpCheckReportItem2Id"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Supervise_SubUnitReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Supervise_SubUnitReportItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable PlanReortDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ReportContentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ReportDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ReportTitleField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string StateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubUnitReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubUnitReportItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable PlanReortDate { + get { + return this.PlanReortDateField; + } + set { + if ((this.PlanReortDateField.Equals(value) != true)) { + this.PlanReortDateField = value; + this.RaisePropertyChanged("PlanReortDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ReportContent { + get { + return this.ReportContentField; + } + set { + if ((object.ReferenceEquals(this.ReportContentField, value) != true)) { + this.ReportContentField = value; + this.RaisePropertyChanged("ReportContent"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ReportDate { + get { + return this.ReportDateField; + } + set { + if ((this.ReportDateField.Equals(value) != true)) { + this.ReportDateField = value; + this.RaisePropertyChanged("ReportDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ReportTitle { + get { + return this.ReportTitleField; + } + set { + if ((object.ReferenceEquals(this.ReportTitleField, value) != true)) { + this.ReportTitleField = value; + this.RaisePropertyChanged("ReportTitle"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string State { + get { + return this.StateField; + } + set { + if ((object.ReferenceEquals(this.StateField, value) != true)) { + this.StateField = value; + this.RaisePropertyChanged("State"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubUnitReportId { + get { + return this.SubUnitReportIdField; + } + set { + if ((object.ReferenceEquals(this.SubUnitReportIdField, value) != true)) { + this.SubUnitReportIdField = value; + this.RaisePropertyChanged("SubUnitReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubUnitReportItemId { + get { + return this.SubUnitReportItemIdField; + } + set { + if ((object.ReferenceEquals(this.SubUnitReportItemIdField, value) != true)) { + this.SubUnitReportItemIdField = value; + this.RaisePropertyChanged("SubUnitReportItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Check_CheckRectify", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Check_CheckRectify : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckRectifyCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckRectifyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckRectifyItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ConfirmDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ConfirmManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DangerPointField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HandleStateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsProjectField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IssueDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string IssueManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable OrderEndDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string OrderEndPersonField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProjectIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable RealEndDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RiskExistsField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SortIndexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectUnitManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Table5ItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string VerificationField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string WorkTypeField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckDate { + get { + return this.CheckDateField; + } + set { + if ((this.CheckDateField.Equals(value) != true)) { + this.CheckDateField = value; + this.RaisePropertyChanged("CheckDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckMan { + get { + return this.CheckManField; + } + set { + if ((object.ReferenceEquals(this.CheckManField, value) != true)) { + this.CheckManField = value; + this.RaisePropertyChanged("CheckMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckRectifyCode { + get { + return this.CheckRectifyCodeField; + } + set { + if ((object.ReferenceEquals(this.CheckRectifyCodeField, value) != true)) { + this.CheckRectifyCodeField = value; + this.RaisePropertyChanged("CheckRectifyCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckRectifyId { + get { + return this.CheckRectifyIdField; + } + set { + if ((object.ReferenceEquals(this.CheckRectifyIdField, value) != true)) { + this.CheckRectifyIdField = value; + this.RaisePropertyChanged("CheckRectifyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckRectifyItemId { + get { + return this.CheckRectifyItemIdField; + } + set { + if ((object.ReferenceEquals(this.CheckRectifyItemIdField, value) != true)) { + this.CheckRectifyItemIdField = value; + this.RaisePropertyChanged("CheckRectifyItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ConfirmDate { + get { + return this.ConfirmDateField; + } + set { + if ((this.ConfirmDateField.Equals(value) != true)) { + this.ConfirmDateField = value; + this.RaisePropertyChanged("ConfirmDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ConfirmMan { + get { + return this.ConfirmManField; + } + set { + if ((object.ReferenceEquals(this.ConfirmManField, value) != true)) { + this.ConfirmManField = value; + this.RaisePropertyChanged("ConfirmMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DangerPoint { + get { + return this.DangerPointField; + } + set { + if ((object.ReferenceEquals(this.DangerPointField, value) != true)) { + this.DangerPointField = value; + this.RaisePropertyChanged("DangerPoint"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HandleState { + get { + return this.HandleStateField; + } + set { + if ((object.ReferenceEquals(this.HandleStateField, value) != true)) { + this.HandleStateField = value; + this.RaisePropertyChanged("HandleState"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsProject { + get { + return this.IsProjectField; + } + set { + if ((this.IsProjectField.Equals(value) != true)) { + this.IsProjectField = value; + this.RaisePropertyChanged("IsProject"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IssueDate { + get { + return this.IssueDateField; + } + set { + if ((this.IssueDateField.Equals(value) != true)) { + this.IssueDateField = value; + this.RaisePropertyChanged("IssueDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string IssueMan { + get { + return this.IssueManField; + } + set { + if ((object.ReferenceEquals(this.IssueManField, value) != true)) { + this.IssueManField = value; + this.RaisePropertyChanged("IssueMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable OrderEndDate { + get { + return this.OrderEndDateField; + } + set { + if ((this.OrderEndDateField.Equals(value) != true)) { + this.OrderEndDateField = value; + this.RaisePropertyChanged("OrderEndDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string OrderEndPerson { + get { + return this.OrderEndPersonField; + } + set { + if ((object.ReferenceEquals(this.OrderEndPersonField, value) != true)) { + this.OrderEndPersonField = value; + this.RaisePropertyChanged("OrderEndPerson"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProjectId { + get { + return this.ProjectIdField; + } + set { + if ((object.ReferenceEquals(this.ProjectIdField, value) != true)) { + this.ProjectIdField = value; + this.RaisePropertyChanged("ProjectId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable RealEndDate { + get { + return this.RealEndDateField; + } + set { + if ((this.RealEndDateField.Equals(value) != true)) { + this.RealEndDateField = value; + this.RaisePropertyChanged("RealEndDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RiskExists { + get { + return this.RiskExistsField; + } + set { + if ((object.ReferenceEquals(this.RiskExistsField, value) != true)) { + this.RiskExistsField = value; + this.RaisePropertyChanged("RiskExists"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SortIndex { + get { + return this.SortIndexField; + } + set { + if ((this.SortIndexField.Equals(value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectUnitMan { + get { + return this.SubjectUnitManField; + } + set { + if ((object.ReferenceEquals(this.SubjectUnitManField, value) != true)) { + this.SubjectUnitManField = value; + this.RaisePropertyChanged("SubjectUnitMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Table5ItemId { + get { + return this.Table5ItemIdField; + } + set { + if ((object.ReferenceEquals(this.Table5ItemIdField, value) != true)) { + this.Table5ItemIdField = value; + this.RaisePropertyChanged("Table5ItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Verification { + get { + return this.VerificationField; + } + set { + if ((object.ReferenceEquals(this.VerificationField, value) != true)) { + this.VerificationField = value; + this.RaisePropertyChanged("Verification"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string WorkType { + get { + return this.WorkTypeField; + } + set { + if ((object.ReferenceEquals(this.WorkTypeField, value) != true)) { + this.WorkTypeField = value; + this.RaisePropertyChanged("WorkType"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="HSSESystem_HSSEOrganize", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class HSSESystem_HSSEOrganize : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SeeFileField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SeeFile { + get { + return this.SeeFileField; + } + set { + if ((object.ReferenceEquals(this.SeeFileField, value) != true)) { + this.SeeFileField = value; + this.RaisePropertyChanged("SeeFile"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Sys_SubUnitLog", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Sys_SubUnitLog : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HostNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string IpField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LogIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable LogSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MenuIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string OperationLogField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string OperationNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable OperationTimeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProjectNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UserNameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HostName { + get { + return this.HostNameField; + } + set { + if ((object.ReferenceEquals(this.HostNameField, value) != true)) { + this.HostNameField = value; + this.RaisePropertyChanged("HostName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Ip { + get { + return this.IpField; + } + set { + if ((object.ReferenceEquals(this.IpField, value) != true)) { + this.IpField = value; + this.RaisePropertyChanged("Ip"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LogId { + get { + return this.LogIdField; + } + set { + if ((object.ReferenceEquals(this.LogIdField, value) != true)) { + this.LogIdField = value; + this.RaisePropertyChanged("LogId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable LogSource { + get { + return this.LogSourceField; + } + set { + if ((this.LogSourceField.Equals(value) != true)) { + this.LogSourceField = value; + this.RaisePropertyChanged("LogSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MenuId { + get { + return this.MenuIdField; + } + set { + if ((object.ReferenceEquals(this.MenuIdField, value) != true)) { + this.MenuIdField = value; + this.RaisePropertyChanged("MenuId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string OperationLog { + get { + return this.OperationLogField; + } + set { + if ((object.ReferenceEquals(this.OperationLogField, value) != true)) { + this.OperationLogField = value; + this.RaisePropertyChanged("OperationLog"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string OperationName { + get { + return this.OperationNameField; + } + set { + if ((object.ReferenceEquals(this.OperationNameField, value) != true)) { + this.OperationNameField = value; + this.RaisePropertyChanged("OperationName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable OperationTime { + get { + return this.OperationTimeField; + } + set { + if ((this.OperationTimeField.Equals(value) != true)) { + this.OperationTimeField = value; + this.RaisePropertyChanged("OperationTime"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProjectName { + get { + return this.ProjectNameField; + } + set { + if ((object.ReferenceEquals(this.ProjectNameField, value) != true)) { + this.ProjectNameField = value; + this.RaisePropertyChanged("ProjectName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UserName { + get { + return this.UserNameField; + } + set { + if ((object.ReferenceEquals(this.UserNameField, value) != true)) { + this.UserNameField = value; + this.RaisePropertyChanged("UserName"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Sys_Version", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Sys_Version : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSubField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable VersionDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string VersionIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string VersionNameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSub { + get { + return this.IsSubField; + } + set { + if ((this.IsSubField.Equals(value) != true)) { + this.IsSubField = value; + this.RaisePropertyChanged("IsSub"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable VersionDate { + get { + return this.VersionDateField; + } + set { + if ((this.VersionDateField.Equals(value) != true)) { + this.VersionDateField = value; + this.RaisePropertyChanged("VersionDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string VersionId { + get { + return this.VersionIdField; + } + set { + if ((object.ReferenceEquals(this.VersionIdField, value) != true)) { + this.VersionIdField = value; + this.RaisePropertyChanged("VersionId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string VersionName { + get { + return this.VersionNameField; + } + set { + if ((object.ReferenceEquals(this.VersionNameField, value) != true)) { + this.VersionNameField = value; + this.RaisePropertyChanged("VersionName"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Base_Unit", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Base_Unit : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AddressField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CorporateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FaxField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProjectRangeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TelephoneField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitTypeNameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Address { + get { + return this.AddressField; + } + set { + if ((object.ReferenceEquals(this.AddressField, value) != true)) { + this.AddressField = value; + this.RaisePropertyChanged("Address"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Corporate { + get { + return this.CorporateField; + } + set { + if ((object.ReferenceEquals(this.CorporateField, value) != true)) { + this.CorporateField = value; + this.RaisePropertyChanged("Corporate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Fax { + get { + return this.FaxField; + } + set { + if ((object.ReferenceEquals(this.FaxField, value) != true)) { + this.FaxField = value; + this.RaisePropertyChanged("Fax"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProjectRange { + get { + return this.ProjectRangeField; + } + set { + if ((object.ReferenceEquals(this.ProjectRangeField, value) != true)) { + this.ProjectRangeField = value; + this.RaisePropertyChanged("ProjectRange"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Telephone { + get { + return this.TelephoneField; + } + set { + if ((object.ReferenceEquals(this.TelephoneField, value) != true)) { + this.TelephoneField = value; + this.RaisePropertyChanged("Telephone"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitCode { + get { + return this.UnitCodeField; + } + set { + if ((object.ReferenceEquals(this.UnitCodeField, value) != true)) { + this.UnitCodeField = value; + this.RaisePropertyChanged("UnitCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitName { + get { + return this.UnitNameField; + } + set { + if ((object.ReferenceEquals(this.UnitNameField, value) != true)) { + this.UnitNameField = value; + this.RaisePropertyChanged("UnitName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitTypeCode { + get { + return this.UnitTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.UnitTypeCodeField, value) != true)) { + this.UnitTypeCodeField = value; + this.RaisePropertyChanged("UnitTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitTypeId { + get { + return this.UnitTypeIdField; + } + set { + if ((object.ReferenceEquals(this.UnitTypeIdField, value) != true)) { + this.UnitTypeIdField = value; + this.RaisePropertyChanged("UnitTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitTypeName { + get { + return this.UnitTypeNameField; + } + set { + if ((object.ReferenceEquals(this.UnitTypeNameField, value) != true)) { + this.UnitTypeNameField = value; + this.RaisePropertyChanged("UnitTypeName"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_UrgeReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_UrgeReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HalfYearIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsCancelField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsCompleteField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MonthIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string QuarterIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ReprotTypeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable UrgeDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UrgeReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string YearIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HalfYearId { + get { + return this.HalfYearIdField; + } + set { + if ((object.ReferenceEquals(this.HalfYearIdField, value) != true)) { + this.HalfYearIdField = value; + this.RaisePropertyChanged("HalfYearId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsCancel { + get { + return this.IsCancelField; + } + set { + if ((this.IsCancelField.Equals(value) != true)) { + this.IsCancelField = value; + this.RaisePropertyChanged("IsCancel"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsComplete { + get { + return this.IsCompleteField; + } + set { + if ((this.IsCompleteField.Equals(value) != true)) { + this.IsCompleteField = value; + this.RaisePropertyChanged("IsComplete"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MonthId { + get { + return this.MonthIdField; + } + set { + if ((object.ReferenceEquals(this.MonthIdField, value) != true)) { + this.MonthIdField = value; + this.RaisePropertyChanged("MonthId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string QuarterId { + get { + return this.QuarterIdField; + } + set { + if ((object.ReferenceEquals(this.QuarterIdField, value) != true)) { + this.QuarterIdField = value; + this.RaisePropertyChanged("QuarterId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ReprotType { + get { + return this.ReprotTypeField; + } + set { + if ((object.ReferenceEquals(this.ReprotTypeField, value) != true)) { + this.ReprotTypeField = value; + this.RaisePropertyChanged("ReprotType"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable UrgeDate { + get { + return this.UrgeDateField; + } + set { + if ((this.UrgeDateField.Equals(value) != true)) { + this.UrgeDateField = value; + this.RaisePropertyChanged("UrgeDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UrgeReportId { + get { + return this.UrgeReportIdField; + } + set { + if ((object.ReferenceEquals(this.UrgeReportIdField, value) != true)) { + this.UrgeReportIdField = value; + this.RaisePropertyChanged("UrgeReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string YearId { + get { + return this.YearIdField; + } + set { + if ((object.ReferenceEquals(this.YearIdField, value) != true)) { + this.YearIdField = value; + this.RaisePropertyChanged("YearId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Law_LawRegulationList", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Law_LawRegulationList : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ApprovalDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DescriptionField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable EffectiveDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LawRegulationCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LawRegulationIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LawRegulationNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LawsRegulationsTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LawsRegulationsTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LawsRegulationsTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LawsRegulationsTypeRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ApprovalDate { + get { + return this.ApprovalDateField; + } + set { + if ((this.ApprovalDateField.Equals(value) != true)) { + this.ApprovalDateField = value; + this.RaisePropertyChanged("ApprovalDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Description { + get { + return this.DescriptionField; + } + set { + if ((object.ReferenceEquals(this.DescriptionField, value) != true)) { + this.DescriptionField = value; + this.RaisePropertyChanged("Description"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable EffectiveDate { + get { + return this.EffectiveDateField; + } + set { + if ((this.EffectiveDateField.Equals(value) != true)) { + this.EffectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LawRegulationCode { + get { + return this.LawRegulationCodeField; + } + set { + if ((object.ReferenceEquals(this.LawRegulationCodeField, value) != true)) { + this.LawRegulationCodeField = value; + this.RaisePropertyChanged("LawRegulationCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LawRegulationId { + get { + return this.LawRegulationIdField; + } + set { + if ((object.ReferenceEquals(this.LawRegulationIdField, value) != true)) { + this.LawRegulationIdField = value; + this.RaisePropertyChanged("LawRegulationId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LawRegulationName { + get { + return this.LawRegulationNameField; + } + set { + if ((object.ReferenceEquals(this.LawRegulationNameField, value) != true)) { + this.LawRegulationNameField = value; + this.RaisePropertyChanged("LawRegulationName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LawsRegulationsTypeCode { + get { + return this.LawsRegulationsTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.LawsRegulationsTypeCodeField, value) != true)) { + this.LawsRegulationsTypeCodeField = value; + this.RaisePropertyChanged("LawsRegulationsTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LawsRegulationsTypeId { + get { + return this.LawsRegulationsTypeIdField; + } + set { + if ((object.ReferenceEquals(this.LawsRegulationsTypeIdField, value) != true)) { + this.LawsRegulationsTypeIdField = value; + this.RaisePropertyChanged("LawsRegulationsTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LawsRegulationsTypeName { + get { + return this.LawsRegulationsTypeNameField; + } + set { + if ((object.ReferenceEquals(this.LawsRegulationsTypeNameField, value) != true)) { + this.LawsRegulationsTypeNameField = value; + this.RaisePropertyChanged("LawsRegulationsTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LawsRegulationsTypeRemark { + get { + return this.LawsRegulationsTypeRemarkField; + } + set { + if ((object.ReferenceEquals(this.LawsRegulationsTypeRemarkField, value) != true)) { + this.LawsRegulationsTypeRemarkField = value; + this.RaisePropertyChanged("LawsRegulationsTypeRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Law_HSSEStandardsList", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Law_HSSEStandardsList : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected1Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected10Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected11Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected12Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected13Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected14Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected15Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected16Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected17Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected18Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected19Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected2Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected20Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected21Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected22Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected23Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected24Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected25Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected3Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected4Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected5Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected6Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected7Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected8Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected9Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsSelected90Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string StandardGradeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string StandardIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string StandardNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string StandardNoField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected1 { + get { + return this.IsSelected1Field; + } + set { + if ((this.IsSelected1Field.Equals(value) != true)) { + this.IsSelected1Field = value; + this.RaisePropertyChanged("IsSelected1"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected10 { + get { + return this.IsSelected10Field; + } + set { + if ((this.IsSelected10Field.Equals(value) != true)) { + this.IsSelected10Field = value; + this.RaisePropertyChanged("IsSelected10"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected11 { + get { + return this.IsSelected11Field; + } + set { + if ((this.IsSelected11Field.Equals(value) != true)) { + this.IsSelected11Field = value; + this.RaisePropertyChanged("IsSelected11"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected12 { + get { + return this.IsSelected12Field; + } + set { + if ((this.IsSelected12Field.Equals(value) != true)) { + this.IsSelected12Field = value; + this.RaisePropertyChanged("IsSelected12"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected13 { + get { + return this.IsSelected13Field; + } + set { + if ((this.IsSelected13Field.Equals(value) != true)) { + this.IsSelected13Field = value; + this.RaisePropertyChanged("IsSelected13"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected14 { + get { + return this.IsSelected14Field; + } + set { + if ((this.IsSelected14Field.Equals(value) != true)) { + this.IsSelected14Field = value; + this.RaisePropertyChanged("IsSelected14"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected15 { + get { + return this.IsSelected15Field; + } + set { + if ((this.IsSelected15Field.Equals(value) != true)) { + this.IsSelected15Field = value; + this.RaisePropertyChanged("IsSelected15"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected16 { + get { + return this.IsSelected16Field; + } + set { + if ((this.IsSelected16Field.Equals(value) != true)) { + this.IsSelected16Field = value; + this.RaisePropertyChanged("IsSelected16"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected17 { + get { + return this.IsSelected17Field; + } + set { + if ((this.IsSelected17Field.Equals(value) != true)) { + this.IsSelected17Field = value; + this.RaisePropertyChanged("IsSelected17"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected18 { + get { + return this.IsSelected18Field; + } + set { + if ((this.IsSelected18Field.Equals(value) != true)) { + this.IsSelected18Field = value; + this.RaisePropertyChanged("IsSelected18"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected19 { + get { + return this.IsSelected19Field; + } + set { + if ((this.IsSelected19Field.Equals(value) != true)) { + this.IsSelected19Field = value; + this.RaisePropertyChanged("IsSelected19"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected2 { + get { + return this.IsSelected2Field; + } + set { + if ((this.IsSelected2Field.Equals(value) != true)) { + this.IsSelected2Field = value; + this.RaisePropertyChanged("IsSelected2"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected20 { + get { + return this.IsSelected20Field; + } + set { + if ((this.IsSelected20Field.Equals(value) != true)) { + this.IsSelected20Field = value; + this.RaisePropertyChanged("IsSelected20"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected21 { + get { + return this.IsSelected21Field; + } + set { + if ((this.IsSelected21Field.Equals(value) != true)) { + this.IsSelected21Field = value; + this.RaisePropertyChanged("IsSelected21"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected22 { + get { + return this.IsSelected22Field; + } + set { + if ((this.IsSelected22Field.Equals(value) != true)) { + this.IsSelected22Field = value; + this.RaisePropertyChanged("IsSelected22"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected23 { + get { + return this.IsSelected23Field; + } + set { + if ((this.IsSelected23Field.Equals(value) != true)) { + this.IsSelected23Field = value; + this.RaisePropertyChanged("IsSelected23"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected24 { + get { + return this.IsSelected24Field; + } + set { + if ((this.IsSelected24Field.Equals(value) != true)) { + this.IsSelected24Field = value; + this.RaisePropertyChanged("IsSelected24"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected25 { + get { + return this.IsSelected25Field; + } + set { + if ((this.IsSelected25Field.Equals(value) != true)) { + this.IsSelected25Field = value; + this.RaisePropertyChanged("IsSelected25"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected3 { + get { + return this.IsSelected3Field; + } + set { + if ((this.IsSelected3Field.Equals(value) != true)) { + this.IsSelected3Field = value; + this.RaisePropertyChanged("IsSelected3"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected4 { + get { + return this.IsSelected4Field; + } + set { + if ((this.IsSelected4Field.Equals(value) != true)) { + this.IsSelected4Field = value; + this.RaisePropertyChanged("IsSelected4"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected5 { + get { + return this.IsSelected5Field; + } + set { + if ((this.IsSelected5Field.Equals(value) != true)) { + this.IsSelected5Field = value; + this.RaisePropertyChanged("IsSelected5"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected6 { + get { + return this.IsSelected6Field; + } + set { + if ((this.IsSelected6Field.Equals(value) != true)) { + this.IsSelected6Field = value; + this.RaisePropertyChanged("IsSelected6"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected7 { + get { + return this.IsSelected7Field; + } + set { + if ((this.IsSelected7Field.Equals(value) != true)) { + this.IsSelected7Field = value; + this.RaisePropertyChanged("IsSelected7"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected8 { + get { + return this.IsSelected8Field; + } + set { + if ((this.IsSelected8Field.Equals(value) != true)) { + this.IsSelected8Field = value; + this.RaisePropertyChanged("IsSelected8"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected9 { + get { + return this.IsSelected9Field; + } + set { + if ((this.IsSelected9Field.Equals(value) != true)) { + this.IsSelected9Field = value; + this.RaisePropertyChanged("IsSelected9"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsSelected90 { + get { + return this.IsSelected90Field; + } + set { + if ((this.IsSelected90Field.Equals(value) != true)) { + this.IsSelected90Field = value; + this.RaisePropertyChanged("IsSelected90"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Remark { + get { + return this.RemarkField; + } + set { + if ((object.ReferenceEquals(this.RemarkField, value) != true)) { + this.RemarkField = value; + this.RaisePropertyChanged("Remark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string StandardGrade { + get { + return this.StandardGradeField; + } + set { + if ((object.ReferenceEquals(this.StandardGradeField, value) != true)) { + this.StandardGradeField = value; + this.RaisePropertyChanged("StandardGrade"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string StandardId { + get { + return this.StandardIdField; + } + set { + if ((object.ReferenceEquals(this.StandardIdField, value) != true)) { + this.StandardIdField = value; + this.RaisePropertyChanged("StandardId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string StandardName { + get { + return this.StandardNameField; + } + set { + if ((object.ReferenceEquals(this.StandardNameField, value) != true)) { + this.StandardNameField = value; + this.RaisePropertyChanged("StandardName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string StandardNo { + get { + return this.StandardNoField; + } + set { + if ((object.ReferenceEquals(this.StandardNoField, value) != true)) { + this.StandardNoField = value; + this.RaisePropertyChanged("StandardNo"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TypeCode { + get { + return this.TypeCodeField; + } + set { + if ((object.ReferenceEquals(this.TypeCodeField, value) != true)) { + this.TypeCodeField = value; + this.RaisePropertyChanged("TypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TypeId { + get { + return this.TypeIdField; + } + set { + if ((object.ReferenceEquals(this.TypeIdField, value) != true)) { + this.TypeIdField = value; + this.RaisePropertyChanged("TypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TypeName { + get { + return this.TypeNameField; + } + set { + if ((object.ReferenceEquals(this.TypeNameField, value) != true)) { + this.TypeNameField = value; + this.RaisePropertyChanged("TypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Law_RulesRegulations", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Law_RulesRegulations : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ApplicableScopeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CustomDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RulesRegulationsCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RulesRegulationsIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RulesRegulationsNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RulesRegulationsTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RulesRegulationsTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RulesRegulationsTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ApplicableScope { + get { + return this.ApplicableScopeField; + } + set { + if ((object.ReferenceEquals(this.ApplicableScopeField, value) != true)) { + this.ApplicableScopeField = value; + this.RaisePropertyChanged("ApplicableScope"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CustomDate { + get { + return this.CustomDateField; + } + set { + if ((this.CustomDateField.Equals(value) != true)) { + this.CustomDateField = value; + this.RaisePropertyChanged("CustomDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Remark { + get { + return this.RemarkField; + } + set { + if ((object.ReferenceEquals(this.RemarkField, value) != true)) { + this.RemarkField = value; + this.RaisePropertyChanged("Remark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RulesRegulationsCode { + get { + return this.RulesRegulationsCodeField; + } + set { + if ((object.ReferenceEquals(this.RulesRegulationsCodeField, value) != true)) { + this.RulesRegulationsCodeField = value; + this.RaisePropertyChanged("RulesRegulationsCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RulesRegulationsId { + get { + return this.RulesRegulationsIdField; + } + set { + if ((object.ReferenceEquals(this.RulesRegulationsIdField, value) != true)) { + this.RulesRegulationsIdField = value; + this.RaisePropertyChanged("RulesRegulationsId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RulesRegulationsName { + get { + return this.RulesRegulationsNameField; + } + set { + if ((object.ReferenceEquals(this.RulesRegulationsNameField, value) != true)) { + this.RulesRegulationsNameField = value; + this.RaisePropertyChanged("RulesRegulationsName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RulesRegulationsTypeCode { + get { + return this.RulesRegulationsTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.RulesRegulationsTypeCodeField, value) != true)) { + this.RulesRegulationsTypeCodeField = value; + this.RaisePropertyChanged("RulesRegulationsTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RulesRegulationsTypeId { + get { + return this.RulesRegulationsTypeIdField; + } + set { + if ((object.ReferenceEquals(this.RulesRegulationsTypeIdField, value) != true)) { + this.RulesRegulationsTypeIdField = value; + this.RaisePropertyChanged("RulesRegulationsTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RulesRegulationsTypeName { + get { + return this.RulesRegulationsTypeNameField; + } + set { + if ((object.ReferenceEquals(this.RulesRegulationsTypeNameField, value) != true)) { + this.RulesRegulationsTypeNameField = value; + this.RaisePropertyChanged("RulesRegulationsTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Law_ManageRule", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Law_ManageRule : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ManageRuleCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ManageRuleIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ManageRuleNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ManageRuleTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ManageRuleTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ManageRuleTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string VersionNoField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ManageRuleCode { + get { + return this.ManageRuleCodeField; + } + set { + if ((object.ReferenceEquals(this.ManageRuleCodeField, value) != true)) { + this.ManageRuleCodeField = value; + this.RaisePropertyChanged("ManageRuleCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ManageRuleId { + get { + return this.ManageRuleIdField; + } + set { + if ((object.ReferenceEquals(this.ManageRuleIdField, value) != true)) { + this.ManageRuleIdField = value; + this.RaisePropertyChanged("ManageRuleId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ManageRuleName { + get { + return this.ManageRuleNameField; + } + set { + if ((object.ReferenceEquals(this.ManageRuleNameField, value) != true)) { + this.ManageRuleNameField = value; + this.RaisePropertyChanged("ManageRuleName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ManageRuleTypeCode { + get { + return this.ManageRuleTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.ManageRuleTypeCodeField, value) != true)) { + this.ManageRuleTypeCodeField = value; + this.RaisePropertyChanged("ManageRuleTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ManageRuleTypeId { + get { + return this.ManageRuleTypeIdField; + } + set { + if ((object.ReferenceEquals(this.ManageRuleTypeIdField, value) != true)) { + this.ManageRuleTypeIdField = value; + this.RaisePropertyChanged("ManageRuleTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ManageRuleTypeName { + get { + return this.ManageRuleTypeNameField; + } + set { + if ((object.ReferenceEquals(this.ManageRuleTypeNameField, value) != true)) { + this.ManageRuleTypeNameField = value; + this.RaisePropertyChanged("ManageRuleTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Remark { + get { + return this.RemarkField; + } + set { + if ((object.ReferenceEquals(this.RemarkField, value) != true)) { + this.RemarkField = value; + this.RaisePropertyChanged("Remark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string VersionNo { + get { + return this.VersionNoField; + } + set { + if ((object.ReferenceEquals(this.VersionNoField, value) != true)) { + this.VersionNoField = value; + this.RaisePropertyChanged("VersionNo"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_HAZOP", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_HAZOP : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AbstractField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HAZOPDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HAZOPIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HAZOPTitleField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Abstract { + get { + return this.AbstractField; + } + set { + if ((object.ReferenceEquals(this.AbstractField, value) != true)) { + this.AbstractField = value; + this.RaisePropertyChanged("Abstract"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HAZOPDate { + get { + return this.HAZOPDateField; + } + set { + if ((this.HAZOPDateField.Equals(value) != true)) { + this.HAZOPDateField = value; + this.RaisePropertyChanged("HAZOPDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HAZOPId { + get { + return this.HAZOPIdField; + } + set { + if ((object.ReferenceEquals(this.HAZOPIdField, value) != true)) { + this.HAZOPIdField = value; + this.RaisePropertyChanged("HAZOPId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HAZOPTitle { + get { + return this.HAZOPTitleField; + } + set { + if ((object.ReferenceEquals(this.HAZOPTitleField, value) != true)) { + this.HAZOPTitleField = value; + this.RaisePropertyChanged("HAZOPTitle"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_Appraise", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_Appraise : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AbstractField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AppraiseCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AppraiseDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AppraiseIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AppraiseTitleField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ArrangementDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ArrangementPersonField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Abstract { + get { + return this.AbstractField; + } + set { + if ((object.ReferenceEquals(this.AbstractField, value) != true)) { + this.AbstractField = value; + this.RaisePropertyChanged("Abstract"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AppraiseCode { + get { + return this.AppraiseCodeField; + } + set { + if ((object.ReferenceEquals(this.AppraiseCodeField, value) != true)) { + this.AppraiseCodeField = value; + this.RaisePropertyChanged("AppraiseCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AppraiseDate { + get { + return this.AppraiseDateField; + } + set { + if ((this.AppraiseDateField.Equals(value) != true)) { + this.AppraiseDateField = value; + this.RaisePropertyChanged("AppraiseDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AppraiseId { + get { + return this.AppraiseIdField; + } + set { + if ((object.ReferenceEquals(this.AppraiseIdField, value) != true)) { + this.AppraiseIdField = value; + this.RaisePropertyChanged("AppraiseId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AppraiseTitle { + get { + return this.AppraiseTitleField; + } + set { + if ((object.ReferenceEquals(this.AppraiseTitleField, value) != true)) { + this.AppraiseTitleField = value; + this.RaisePropertyChanged("AppraiseTitle"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ArrangementDate { + get { + return this.ArrangementDateField; + } + set { + if ((this.ArrangementDateField.Equals(value) != true)) { + this.ArrangementDateField = value; + this.RaisePropertyChanged("ArrangementDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ArrangementPerson { + get { + return this.ArrangementPersonField; + } + set { + if ((object.ReferenceEquals(this.ArrangementPersonField, value) != true)) { + this.ArrangementPersonField = value; + this.RaisePropertyChanged("ArrangementPerson"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_Emergency", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_Emergency : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EmergencyCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EmergencyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EmergencyNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EmergencyTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EmergencyTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EmergencyTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SummaryField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EmergencyCode { + get { + return this.EmergencyCodeField; + } + set { + if ((object.ReferenceEquals(this.EmergencyCodeField, value) != true)) { + this.EmergencyCodeField = value; + this.RaisePropertyChanged("EmergencyCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EmergencyId { + get { + return this.EmergencyIdField; + } + set { + if ((object.ReferenceEquals(this.EmergencyIdField, value) != true)) { + this.EmergencyIdField = value; + this.RaisePropertyChanged("EmergencyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EmergencyName { + get { + return this.EmergencyNameField; + } + set { + if ((object.ReferenceEquals(this.EmergencyNameField, value) != true)) { + this.EmergencyNameField = value; + this.RaisePropertyChanged("EmergencyName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EmergencyTypeCode { + get { + return this.EmergencyTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.EmergencyTypeCodeField, value) != true)) { + this.EmergencyTypeCodeField = value; + this.RaisePropertyChanged("EmergencyTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EmergencyTypeId { + get { + return this.EmergencyTypeIdField; + } + set { + if ((object.ReferenceEquals(this.EmergencyTypeIdField, value) != true)) { + this.EmergencyTypeIdField = value; + this.RaisePropertyChanged("EmergencyTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EmergencyTypeName { + get { + return this.EmergencyTypeNameField; + } + set { + if ((object.ReferenceEquals(this.EmergencyTypeNameField, value) != true)) { + this.EmergencyTypeNameField = value; + this.RaisePropertyChanged("EmergencyTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Remark { + get { + return this.RemarkField; + } + set { + if ((object.ReferenceEquals(this.RemarkField, value) != true)) { + this.RemarkField = value; + this.RaisePropertyChanged("Remark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Summary { + get { + return this.SummaryField; + } + set { + if ((object.ReferenceEquals(this.SummaryField, value) != true)) { + this.SummaryField = value; + this.RaisePropertyChanged("Summary"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_SpecialScheme", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_SpecialScheme : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachFileIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachSourceField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AuditDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsPassField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SpecialSchemeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SpecialSchemeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SpecialSchemeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SpecialSchemeTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SpecialSchemeTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SpecialSchemeTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SummaryField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ToKeyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachFileId { + get { + return this.AttachFileIdField; + } + set { + if ((object.ReferenceEquals(this.AttachFileIdField, value) != true)) { + this.AttachFileIdField = value; + this.RaisePropertyChanged("AttachFileId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachSource { + get { + return this.AttachSourceField; + } + set { + if ((object.ReferenceEquals(this.AttachSourceField, value) != true)) { + this.AttachSourceField = value; + this.RaisePropertyChanged("AttachSource"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AttachUrl { + get { + return this.AttachUrlField; + } + set { + if ((object.ReferenceEquals(this.AttachUrlField, value) != true)) { + this.AttachUrlField = value; + this.RaisePropertyChanged("AttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AuditDate { + get { + return this.AuditDateField; + } + set { + if ((this.AuditDateField.Equals(value) != true)) { + this.AuditDateField = value; + this.RaisePropertyChanged("AuditDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditMan { + get { + return this.AuditManField; + } + set { + if ((object.ReferenceEquals(this.AuditManField, value) != true)) { + this.AuditManField = value; + this.RaisePropertyChanged("AuditMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FileContext { + get { + return this.FileContextField; + } + set { + if ((object.ReferenceEquals(this.FileContextField, value) != true)) { + this.FileContextField = value; + this.RaisePropertyChanged("FileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsPass { + get { + return this.IsPassField; + } + set { + if ((this.IsPassField.Equals(value) != true)) { + this.IsPassField = value; + this.RaisePropertyChanged("IsPass"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SpecialSchemeCode { + get { + return this.SpecialSchemeCodeField; + } + set { + if ((object.ReferenceEquals(this.SpecialSchemeCodeField, value) != true)) { + this.SpecialSchemeCodeField = value; + this.RaisePropertyChanged("SpecialSchemeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SpecialSchemeId { + get { + return this.SpecialSchemeIdField; + } + set { + if ((object.ReferenceEquals(this.SpecialSchemeIdField, value) != true)) { + this.SpecialSchemeIdField = value; + this.RaisePropertyChanged("SpecialSchemeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SpecialSchemeName { + get { + return this.SpecialSchemeNameField; + } + set { + if ((object.ReferenceEquals(this.SpecialSchemeNameField, value) != true)) { + this.SpecialSchemeNameField = value; + this.RaisePropertyChanged("SpecialSchemeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SpecialSchemeTypeCode { + get { + return this.SpecialSchemeTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.SpecialSchemeTypeCodeField, value) != true)) { + this.SpecialSchemeTypeCodeField = value; + this.RaisePropertyChanged("SpecialSchemeTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SpecialSchemeTypeId { + get { + return this.SpecialSchemeTypeIdField; + } + set { + if ((object.ReferenceEquals(this.SpecialSchemeTypeIdField, value) != true)) { + this.SpecialSchemeTypeIdField = value; + this.RaisePropertyChanged("SpecialSchemeTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SpecialSchemeTypeName { + get { + return this.SpecialSchemeTypeNameField; + } + set { + if ((object.ReferenceEquals(this.SpecialSchemeTypeNameField, value) != true)) { + this.SpecialSchemeTypeNameField = value; + this.RaisePropertyChanged("SpecialSchemeTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Summary { + get { + return this.SummaryField; + } + set { + if ((object.ReferenceEquals(this.SummaryField, value) != true)) { + this.SummaryField = value; + this.RaisePropertyChanged("Summary"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ToKeyId { + get { + return this.ToKeyIdField; + } + set { + if ((object.ReferenceEquals(this.ToKeyIdField, value) != true)) { + this.ToKeyIdField = value; + this.RaisePropertyChanged("ToKeyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Training_Training", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Training_Training : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsEndLeverField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SupTrainingIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainingCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainingIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainingNameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsEndLever { + get { + return this.IsEndLeverField; + } + set { + if ((this.IsEndLeverField.Equals(value) != true)) { + this.IsEndLeverField = value; + this.RaisePropertyChanged("IsEndLever"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SupTrainingId { + get { + return this.SupTrainingIdField; + } + set { + if ((object.ReferenceEquals(this.SupTrainingIdField, value) != true)) { + this.SupTrainingIdField = value; + this.RaisePropertyChanged("SupTrainingId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainingCode { + get { + return this.TrainingCodeField; + } + set { + if ((object.ReferenceEquals(this.TrainingCodeField, value) != true)) { + this.TrainingCodeField = value; + this.RaisePropertyChanged("TrainingCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainingId { + get { + return this.TrainingIdField; + } + set { + if ((object.ReferenceEquals(this.TrainingIdField, value) != true)) { + this.TrainingIdField = value; + this.RaisePropertyChanged("TrainingId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainingName { + get { + return this.TrainingNameField; + } + set { + if ((object.ReferenceEquals(this.TrainingNameField, value) != true)) { + this.TrainingNameField = value; + this.RaisePropertyChanged("TrainingName"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Training_TrainTestDB", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Training_TrainTestDB : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsEndLeverField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SupTrainTestIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainTestCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainTestIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TrainTestNameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsEndLever { + get { + return this.IsEndLeverField; + } + set { + if ((this.IsEndLeverField.Equals(value) != true)) { + this.IsEndLeverField = value; + this.RaisePropertyChanged("IsEndLever"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SupTrainTestId { + get { + return this.SupTrainTestIdField; + } + set { + if ((object.ReferenceEquals(this.SupTrainTestIdField, value) != true)) { + this.SupTrainTestIdField = value; + this.RaisePropertyChanged("SupTrainTestId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainTestCode { + get { + return this.TrainTestCodeField; + } + set { + if ((object.ReferenceEquals(this.TrainTestCodeField, value) != true)) { + this.TrainTestCodeField = value; + this.RaisePropertyChanged("TrainTestCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainTestId { + get { + return this.TrainTestIdField; + } + set { + if ((object.ReferenceEquals(this.TrainTestIdField, value) != true)) { + this.TrainTestIdField = value; + this.RaisePropertyChanged("TrainTestId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TrainTestName { + get { + return this.TrainTestNameField; + } + set { + if ((object.ReferenceEquals(this.TrainTestNameField, value) != true)) { + this.TrainTestNameField = value; + this.RaisePropertyChanged("TrainTestName"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="EduTrain_AccidentCase", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class EduTrain_AccidentCase : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCaseCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCaseIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCaseNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsEndLeverField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SupAccidentCaseIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCaseCode { + get { + return this.AccidentCaseCodeField; + } + set { + if ((object.ReferenceEquals(this.AccidentCaseCodeField, value) != true)) { + this.AccidentCaseCodeField = value; + this.RaisePropertyChanged("AccidentCaseCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCaseId { + get { + return this.AccidentCaseIdField; + } + set { + if ((object.ReferenceEquals(this.AccidentCaseIdField, value) != true)) { + this.AccidentCaseIdField = value; + this.RaisePropertyChanged("AccidentCaseId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCaseName { + get { + return this.AccidentCaseNameField; + } + set { + if ((object.ReferenceEquals(this.AccidentCaseNameField, value) != true)) { + this.AccidentCaseNameField = value; + this.RaisePropertyChanged("AccidentCaseName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsEndLever { + get { + return this.IsEndLeverField; + } + set { + if ((this.IsEndLeverField.Equals(value) != true)) { + this.IsEndLeverField = value; + this.RaisePropertyChanged("IsEndLever"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SupAccidentCaseId { + get { + return this.SupAccidentCaseIdField; + } + set { + if ((object.ReferenceEquals(this.SupAccidentCaseIdField, value) != true)) { + this.SupAccidentCaseIdField = value; + this.RaisePropertyChanged("SupAccidentCaseId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Training_Knowledge", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Training_Knowledge : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsEndLeverField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KnowledgeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KnowledgeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KnowledgeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SupKnowledgeIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsEndLever { + get { + return this.IsEndLeverField; + } + set { + if ((this.IsEndLeverField.Equals(value) != true)) { + this.IsEndLeverField = value; + this.RaisePropertyChanged("IsEndLever"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KnowledgeCode { + get { + return this.KnowledgeCodeField; + } + set { + if ((object.ReferenceEquals(this.KnowledgeCodeField, value) != true)) { + this.KnowledgeCodeField = value; + this.RaisePropertyChanged("KnowledgeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KnowledgeId { + get { + return this.KnowledgeIdField; + } + set { + if ((object.ReferenceEquals(this.KnowledgeIdField, value) != true)) { + this.KnowledgeIdField = value; + this.RaisePropertyChanged("KnowledgeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KnowledgeName { + get { + return this.KnowledgeNameField; + } + set { + if ((object.ReferenceEquals(this.KnowledgeNameField, value) != true)) { + this.KnowledgeNameField = value; + this.RaisePropertyChanged("KnowledgeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SupKnowledgeId { + get { + return this.SupKnowledgeIdField; + } + set { + if ((object.ReferenceEquals(this.SupKnowledgeIdField, value) != true)) { + this.SupKnowledgeIdField = value; + this.RaisePropertyChanged("SupKnowledgeId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_HazardListType", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_HazardListType : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardListTypeCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardListTypeIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HazardListTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsEndLevelField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SupHazardListTypeIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardListTypeCode { + get { + return this.HazardListTypeCodeField; + } + set { + if ((object.ReferenceEquals(this.HazardListTypeCodeField, value) != true)) { + this.HazardListTypeCodeField = value; + this.RaisePropertyChanged("HazardListTypeCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardListTypeId { + get { + return this.HazardListTypeIdField; + } + set { + if ((object.ReferenceEquals(this.HazardListTypeIdField, value) != true)) { + this.HazardListTypeIdField = value; + this.RaisePropertyChanged("HazardListTypeId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HazardListTypeName { + get { + return this.HazardListTypeNameField; + } + set { + if ((object.ReferenceEquals(this.HazardListTypeNameField, value) != true)) { + this.HazardListTypeNameField = value; + this.RaisePropertyChanged("HazardListTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsEndLevel { + get { + return this.IsEndLevelField; + } + set { + if ((this.IsEndLevelField.Equals(value) != true)) { + this.IsEndLevelField = value; + this.RaisePropertyChanged("IsEndLevel"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SupHazardListTypeId { + get { + return this.SupHazardListTypeIdField; + } + set { + if ((object.ReferenceEquals(this.SupHazardListTypeIdField, value) != true)) { + this.SupHazardListTypeIdField = value; + this.RaisePropertyChanged("SupHazardListTypeId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Technique_Rectify", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Technique_Rectify : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsEndLeverField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RectifyCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RectifyIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RectifyNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SupRectifyIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsEndLever { + get { + return this.IsEndLeverField; + } + set { + if ((this.IsEndLeverField.Equals(value) != true)) { + this.IsEndLeverField = value; + this.RaisePropertyChanged("IsEndLever"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RectifyCode { + get { + return this.RectifyCodeField; + } + set { + if ((object.ReferenceEquals(this.RectifyCodeField, value) != true)) { + this.RectifyCodeField = value; + this.RaisePropertyChanged("RectifyCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RectifyId { + get { + return this.RectifyIdField; + } + set { + if ((object.ReferenceEquals(this.RectifyIdField, value) != true)) { + this.RectifyIdField = value; + this.RaisePropertyChanged("RectifyId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RectifyName { + get { + return this.RectifyNameField; + } + set { + if ((object.ReferenceEquals(this.RectifyNameField, value) != true)) { + this.RectifyNameField = value; + this.RaisePropertyChanged("RectifyName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SupRectifyId { + get { + return this.SupRectifyIdField; + } + set { + if ((object.ReferenceEquals(this.SupRectifyIdField, value) != true)) { + this.SupRectifyIdField = value; + this.RaisePropertyChanged("SupRectifyId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Supervise_SubUnitReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Supervise_SubUnitReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IsEndLeverField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubUnitReportCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubUnitReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubUnitReportNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SupSubUnitReportIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IsEndLever { + get { + return this.IsEndLeverField; + } + set { + if ((this.IsEndLeverField.Equals(value) != true)) { + this.IsEndLeverField = value; + this.RaisePropertyChanged("IsEndLever"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubUnitReportCode { + get { + return this.SubUnitReportCodeField; + } + set { + if ((object.ReferenceEquals(this.SubUnitReportCodeField, value) != true)) { + this.SubUnitReportCodeField = value; + this.RaisePropertyChanged("SubUnitReportCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubUnitReportId { + get { + return this.SubUnitReportIdField; + } + set { + if ((object.ReferenceEquals(this.SubUnitReportIdField, value) != true)) { + this.SubUnitReportIdField = value; + this.RaisePropertyChanged("SubUnitReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubUnitReportName { + get { + return this.SubUnitReportNameField; + } + set { + if ((object.ReferenceEquals(this.SubUnitReportNameField, value) != true)) { + this.SubUnitReportNameField = value; + this.RaisePropertyChanged("SubUnitReportName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SupSubUnitReportId { + get { + return this.SupSubUnitReportIdField; + } + set { + if ((object.ReferenceEquals(this.SupSubUnitReportIdField, value) != true)) { + this.SupSubUnitReportIdField = value; + this.RaisePropertyChanged("SupSubUnitReportId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Check_CheckInfo_Table8Item", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Check_CheckInfo_Table8Item : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckEndTimeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckInfoIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckPostNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CheckStartTimeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CheckTypeNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string IDField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PostNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SortIndexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectObjectField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectUnitAddField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectUnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectUnitManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SubjectUnitTelField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values1Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values2Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values3Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values4Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values5Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values6Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values7Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string Values8Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string WorkTitleField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckDate { + get { + return this.CheckDateField; + } + set { + if ((this.CheckDateField.Equals(value) != true)) { + this.CheckDateField = value; + this.RaisePropertyChanged("CheckDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckEndTime { + get { + return this.CheckEndTimeField; + } + set { + if ((this.CheckEndTimeField.Equals(value) != true)) { + this.CheckEndTimeField = value; + this.RaisePropertyChanged("CheckEndTime"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckInfoId { + get { + return this.CheckInfoIdField; + } + set { + if ((object.ReferenceEquals(this.CheckInfoIdField, value) != true)) { + this.CheckInfoIdField = value; + this.RaisePropertyChanged("CheckInfoId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckItemId { + get { + return this.CheckItemIdField; + } + set { + if ((object.ReferenceEquals(this.CheckItemIdField, value) != true)) { + this.CheckItemIdField = value; + this.RaisePropertyChanged("CheckItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckPostName { + get { + return this.CheckPostNameField; + } + set { + if ((object.ReferenceEquals(this.CheckPostNameField, value) != true)) { + this.CheckPostNameField = value; + this.RaisePropertyChanged("CheckPostName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CheckStartTime { + get { + return this.CheckStartTimeField; + } + set { + if ((this.CheckStartTimeField.Equals(value) != true)) { + this.CheckStartTimeField = value; + this.RaisePropertyChanged("CheckStartTime"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CheckTypeName { + get { + return this.CheckTypeNameField; + } + set { + if ((object.ReferenceEquals(this.CheckTypeNameField, value) != true)) { + this.CheckTypeNameField = value; + this.RaisePropertyChanged("CheckTypeName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ID { + get { + return this.IDField; + } + set { + if ((object.ReferenceEquals(this.IDField, value) != true)) { + this.IDField = value; + this.RaisePropertyChanged("ID"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PostName { + get { + return this.PostNameField; + } + set { + if ((object.ReferenceEquals(this.PostNameField, value) != true)) { + this.PostNameField = value; + this.RaisePropertyChanged("PostName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Sex { + get { + return this.SexField; + } + set { + if ((object.ReferenceEquals(this.SexField, value) != true)) { + this.SexField = value; + this.RaisePropertyChanged("Sex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SortIndex { + get { + return this.SortIndexField; + } + set { + if ((object.ReferenceEquals(this.SortIndexField, value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectObject { + get { + return this.SubjectObjectField; + } + set { + if ((object.ReferenceEquals(this.SubjectObjectField, value) != true)) { + this.SubjectObjectField = value; + this.RaisePropertyChanged("SubjectObject"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectUnitAdd { + get { + return this.SubjectUnitAddField; + } + set { + if ((object.ReferenceEquals(this.SubjectUnitAddField, value) != true)) { + this.SubjectUnitAddField = value; + this.RaisePropertyChanged("SubjectUnitAdd"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectUnitId { + get { + return this.SubjectUnitIdField; + } + set { + if ((object.ReferenceEquals(this.SubjectUnitIdField, value) != true)) { + this.SubjectUnitIdField = value; + this.RaisePropertyChanged("SubjectUnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectUnitMan { + get { + return this.SubjectUnitManField; + } + set { + if ((object.ReferenceEquals(this.SubjectUnitManField, value) != true)) { + this.SubjectUnitManField = value; + this.RaisePropertyChanged("SubjectUnitMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SubjectUnitTel { + get { + return this.SubjectUnitTelField; + } + set { + if ((object.ReferenceEquals(this.SubjectUnitTelField, value) != true)) { + this.SubjectUnitTelField = value; + this.RaisePropertyChanged("SubjectUnitTel"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitName { + get { + return this.UnitNameField; + } + set { + if ((object.ReferenceEquals(this.UnitNameField, value) != true)) { + this.UnitNameField = value; + this.RaisePropertyChanged("UnitName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values1 { + get { + return this.Values1Field; + } + set { + if ((object.ReferenceEquals(this.Values1Field, value) != true)) { + this.Values1Field = value; + this.RaisePropertyChanged("Values1"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values2 { + get { + return this.Values2Field; + } + set { + if ((object.ReferenceEquals(this.Values2Field, value) != true)) { + this.Values2Field = value; + this.RaisePropertyChanged("Values2"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values3 { + get { + return this.Values3Field; + } + set { + if ((object.ReferenceEquals(this.Values3Field, value) != true)) { + this.Values3Field = value; + this.RaisePropertyChanged("Values3"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values4 { + get { + return this.Values4Field; + } + set { + if ((object.ReferenceEquals(this.Values4Field, value) != true)) { + this.Values4Field = value; + this.RaisePropertyChanged("Values4"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values5 { + get { + return this.Values5Field; + } + set { + if ((object.ReferenceEquals(this.Values5Field, value) != true)) { + this.Values5Field = value; + this.RaisePropertyChanged("Values5"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values6 { + get { + return this.Values6Field; + } + set { + if ((object.ReferenceEquals(this.Values6Field, value) != true)) { + this.Values6Field = value; + this.RaisePropertyChanged("Values6"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values7 { + get { + return this.Values7Field; + } + set { + if ((object.ReferenceEquals(this.Values7Field, value) != true)) { + this.Values7Field = value; + this.RaisePropertyChanged("Values7"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Values8 { + get { + return this.Values8Field; + } + set { + if ((object.ReferenceEquals(this.Values8Field, value) != true)) { + this.Values8Field = value; + this.RaisePropertyChanged("Values8"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string WorkTitle { + get { + return this.WorkTitleField; + } + set { + if ((object.ReferenceEquals(this.WorkTitleField, value) != true)) { + this.WorkTitleField = value; + this.RaisePropertyChanged("WorkTitle"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_AccidentCauseReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_AccidentCauseReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCauseReportCodeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCauseReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AuditPersonField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AverageManHoursField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AverageTotalHoursField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable DeathAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable DeathTollField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable DirectLossField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FillCompanyPersonChargeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FillingDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable IndirectLossesField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable InjuredAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable InjuredTollField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable KnockOffTotalField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable LastMonthLossHoursTotalField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorWoundAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorWoundTollField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MonthField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TabPeopleField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalLossField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalLossManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalLossTimeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable YearField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCauseReportCode { + get { + return this.AccidentCauseReportCodeField; + } + set { + if ((object.ReferenceEquals(this.AccidentCauseReportCodeField, value) != true)) { + this.AccidentCauseReportCodeField = value; + this.RaisePropertyChanged("AccidentCauseReportCode"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCauseReportId { + get { + return this.AccidentCauseReportIdField; + } + set { + if ((object.ReferenceEquals(this.AccidentCauseReportIdField, value) != true)) { + this.AccidentCauseReportIdField = value; + this.RaisePropertyChanged("AccidentCauseReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AuditPerson { + get { + return this.AuditPersonField; + } + set { + if ((object.ReferenceEquals(this.AuditPersonField, value) != true)) { + this.AuditPersonField = value; + this.RaisePropertyChanged("AuditPerson"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AverageManHours { + get { + return this.AverageManHoursField; + } + set { + if ((this.AverageManHoursField.Equals(value) != true)) { + this.AverageManHoursField = value; + this.RaisePropertyChanged("AverageManHours"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AverageTotalHours { + get { + return this.AverageTotalHoursField; + } + set { + if ((this.AverageTotalHoursField.Equals(value) != true)) { + this.AverageTotalHoursField = value; + this.RaisePropertyChanged("AverageTotalHours"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable DeathAccident { + get { + return this.DeathAccidentField; + } + set { + if ((this.DeathAccidentField.Equals(value) != true)) { + this.DeathAccidentField = value; + this.RaisePropertyChanged("DeathAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable DeathToll { + get { + return this.DeathTollField; + } + set { + if ((this.DeathTollField.Equals(value) != true)) { + this.DeathTollField = value; + this.RaisePropertyChanged("DeathToll"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable DirectLoss { + get { + return this.DirectLossField; + } + set { + if ((this.DirectLossField.Equals(value) != true)) { + this.DirectLossField = value; + this.RaisePropertyChanged("DirectLoss"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FillCompanyPersonCharge { + get { + return this.FillCompanyPersonChargeField; + } + set { + if ((object.ReferenceEquals(this.FillCompanyPersonChargeField, value) != true)) { + this.FillCompanyPersonChargeField = value; + this.RaisePropertyChanged("FillCompanyPersonCharge"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FillingDate { + get { + return this.FillingDateField; + } + set { + if ((this.FillingDateField.Equals(value) != true)) { + this.FillingDateField = value; + this.RaisePropertyChanged("FillingDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable IndirectLosses { + get { + return this.IndirectLossesField; + } + set { + if ((this.IndirectLossesField.Equals(value) != true)) { + this.IndirectLossesField = value; + this.RaisePropertyChanged("IndirectLosses"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable InjuredAccident { + get { + return this.InjuredAccidentField; + } + set { + if ((this.InjuredAccidentField.Equals(value) != true)) { + this.InjuredAccidentField = value; + this.RaisePropertyChanged("InjuredAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable InjuredToll { + get { + return this.InjuredTollField; + } + set { + if ((this.InjuredTollField.Equals(value) != true)) { + this.InjuredTollField = value; + this.RaisePropertyChanged("InjuredToll"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable KnockOffTotal { + get { + return this.KnockOffTotalField; + } + set { + if ((this.KnockOffTotalField.Equals(value) != true)) { + this.KnockOffTotalField = value; + this.RaisePropertyChanged("KnockOffTotal"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable LastMonthLossHoursTotal { + get { + return this.LastMonthLossHoursTotalField; + } + set { + if ((this.LastMonthLossHoursTotalField.Equals(value) != true)) { + this.LastMonthLossHoursTotalField = value; + this.RaisePropertyChanged("LastMonthLossHoursTotal"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorWoundAccident { + get { + return this.MinorWoundAccidentField; + } + set { + if ((this.MinorWoundAccidentField.Equals(value) != true)) { + this.MinorWoundAccidentField = value; + this.RaisePropertyChanged("MinorWoundAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorWoundToll { + get { + return this.MinorWoundTollField; + } + set { + if ((this.MinorWoundTollField.Equals(value) != true)) { + this.MinorWoundTollField = value; + this.RaisePropertyChanged("MinorWoundToll"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Month { + get { + return this.MonthField; + } + set { + if ((this.MonthField.Equals(value) != true)) { + this.MonthField = value; + this.RaisePropertyChanged("Month"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TabPeople { + get { + return this.TabPeopleField; + } + set { + if ((object.ReferenceEquals(this.TabPeopleField, value) != true)) { + this.TabPeopleField = value; + this.RaisePropertyChanged("TabPeople"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalLoss { + get { + return this.TotalLossField; + } + set { + if ((this.TotalLossField.Equals(value) != true)) { + this.TotalLossField = value; + this.RaisePropertyChanged("TotalLoss"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalLossMan { + get { + return this.TotalLossManField; + } + set { + if ((this.TotalLossManField.Equals(value) != true)) { + this.TotalLossManField = value; + this.RaisePropertyChanged("TotalLossMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalLossTime { + get { + return this.TotalLossTimeField; + } + set { + if ((this.TotalLossTimeField.Equals(value) != true)) { + this.TotalLossTimeField = value; + this.RaisePropertyChanged("TotalLossTime"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Year { + get { + return this.YearField; + } + set { + if ((this.YearField.Equals(value) != true)) { + this.YearField = value; + this.RaisePropertyChanged("Year"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_AccidentCauseReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_AccidentCauseReportItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCauseReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentCauseReportItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentTypeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death1Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death10Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death11Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death2Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death3Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death4Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death5Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death6Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death7Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death8Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Death9Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries1Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries10Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries11Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries2Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries3Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries4Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries5Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries6Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries7Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries8Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable Injuries9Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries1Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries10Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries11Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries2Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries3Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries4Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries5Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries6Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries7Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries8Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorInjuries9Field; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalDeathField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalInjuriesField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalMinorInjuriesField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCauseReportId { + get { + return this.AccidentCauseReportIdField; + } + set { + if ((object.ReferenceEquals(this.AccidentCauseReportIdField, value) != true)) { + this.AccidentCauseReportIdField = value; + this.RaisePropertyChanged("AccidentCauseReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentCauseReportItemId { + get { + return this.AccidentCauseReportItemIdField; + } + set { + if ((object.ReferenceEquals(this.AccidentCauseReportItemIdField, value) != true)) { + this.AccidentCauseReportItemIdField = value; + this.RaisePropertyChanged("AccidentCauseReportItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentType { + get { + return this.AccidentTypeField; + } + set { + if ((object.ReferenceEquals(this.AccidentTypeField, value) != true)) { + this.AccidentTypeField = value; + this.RaisePropertyChanged("AccidentType"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death1 { + get { + return this.Death1Field; + } + set { + if ((this.Death1Field.Equals(value) != true)) { + this.Death1Field = value; + this.RaisePropertyChanged("Death1"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death10 { + get { + return this.Death10Field; + } + set { + if ((this.Death10Field.Equals(value) != true)) { + this.Death10Field = value; + this.RaisePropertyChanged("Death10"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death11 { + get { + return this.Death11Field; + } + set { + if ((this.Death11Field.Equals(value) != true)) { + this.Death11Field = value; + this.RaisePropertyChanged("Death11"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death2 { + get { + return this.Death2Field; + } + set { + if ((this.Death2Field.Equals(value) != true)) { + this.Death2Field = value; + this.RaisePropertyChanged("Death2"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death3 { + get { + return this.Death3Field; + } + set { + if ((this.Death3Field.Equals(value) != true)) { + this.Death3Field = value; + this.RaisePropertyChanged("Death3"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death4 { + get { + return this.Death4Field; + } + set { + if ((this.Death4Field.Equals(value) != true)) { + this.Death4Field = value; + this.RaisePropertyChanged("Death4"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death5 { + get { + return this.Death5Field; + } + set { + if ((this.Death5Field.Equals(value) != true)) { + this.Death5Field = value; + this.RaisePropertyChanged("Death5"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death6 { + get { + return this.Death6Field; + } + set { + if ((this.Death6Field.Equals(value) != true)) { + this.Death6Field = value; + this.RaisePropertyChanged("Death6"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death7 { + get { + return this.Death7Field; + } + set { + if ((this.Death7Field.Equals(value) != true)) { + this.Death7Field = value; + this.RaisePropertyChanged("Death7"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death8 { + get { + return this.Death8Field; + } + set { + if ((this.Death8Field.Equals(value) != true)) { + this.Death8Field = value; + this.RaisePropertyChanged("Death8"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Death9 { + get { + return this.Death9Field; + } + set { + if ((this.Death9Field.Equals(value) != true)) { + this.Death9Field = value; + this.RaisePropertyChanged("Death9"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries1 { + get { + return this.Injuries1Field; + } + set { + if ((this.Injuries1Field.Equals(value) != true)) { + this.Injuries1Field = value; + this.RaisePropertyChanged("Injuries1"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries10 { + get { + return this.Injuries10Field; + } + set { + if ((this.Injuries10Field.Equals(value) != true)) { + this.Injuries10Field = value; + this.RaisePropertyChanged("Injuries10"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries11 { + get { + return this.Injuries11Field; + } + set { + if ((this.Injuries11Field.Equals(value) != true)) { + this.Injuries11Field = value; + this.RaisePropertyChanged("Injuries11"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries2 { + get { + return this.Injuries2Field; + } + set { + if ((this.Injuries2Field.Equals(value) != true)) { + this.Injuries2Field = value; + this.RaisePropertyChanged("Injuries2"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries3 { + get { + return this.Injuries3Field; + } + set { + if ((this.Injuries3Field.Equals(value) != true)) { + this.Injuries3Field = value; + this.RaisePropertyChanged("Injuries3"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries4 { + get { + return this.Injuries4Field; + } + set { + if ((this.Injuries4Field.Equals(value) != true)) { + this.Injuries4Field = value; + this.RaisePropertyChanged("Injuries4"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries5 { + get { + return this.Injuries5Field; + } + set { + if ((this.Injuries5Field.Equals(value) != true)) { + this.Injuries5Field = value; + this.RaisePropertyChanged("Injuries5"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries6 { + get { + return this.Injuries6Field; + } + set { + if ((this.Injuries6Field.Equals(value) != true)) { + this.Injuries6Field = value; + this.RaisePropertyChanged("Injuries6"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries7 { + get { + return this.Injuries7Field; + } + set { + if ((this.Injuries7Field.Equals(value) != true)) { + this.Injuries7Field = value; + this.RaisePropertyChanged("Injuries7"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries8 { + get { + return this.Injuries8Field; + } + set { + if ((this.Injuries8Field.Equals(value) != true)) { + this.Injuries8Field = value; + this.RaisePropertyChanged("Injuries8"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Injuries9 { + get { + return this.Injuries9Field; + } + set { + if ((this.Injuries9Field.Equals(value) != true)) { + this.Injuries9Field = value; + this.RaisePropertyChanged("Injuries9"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries1 { + get { + return this.MinorInjuries1Field; + } + set { + if ((this.MinorInjuries1Field.Equals(value) != true)) { + this.MinorInjuries1Field = value; + this.RaisePropertyChanged("MinorInjuries1"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries10 { + get { + return this.MinorInjuries10Field; + } + set { + if ((this.MinorInjuries10Field.Equals(value) != true)) { + this.MinorInjuries10Field = value; + this.RaisePropertyChanged("MinorInjuries10"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries11 { + get { + return this.MinorInjuries11Field; + } + set { + if ((this.MinorInjuries11Field.Equals(value) != true)) { + this.MinorInjuries11Field = value; + this.RaisePropertyChanged("MinorInjuries11"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries2 { + get { + return this.MinorInjuries2Field; + } + set { + if ((this.MinorInjuries2Field.Equals(value) != true)) { + this.MinorInjuries2Field = value; + this.RaisePropertyChanged("MinorInjuries2"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries3 { + get { + return this.MinorInjuries3Field; + } + set { + if ((this.MinorInjuries3Field.Equals(value) != true)) { + this.MinorInjuries3Field = value; + this.RaisePropertyChanged("MinorInjuries3"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries4 { + get { + return this.MinorInjuries4Field; + } + set { + if ((this.MinorInjuries4Field.Equals(value) != true)) { + this.MinorInjuries4Field = value; + this.RaisePropertyChanged("MinorInjuries4"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries5 { + get { + return this.MinorInjuries5Field; + } + set { + if ((this.MinorInjuries5Field.Equals(value) != true)) { + this.MinorInjuries5Field = value; + this.RaisePropertyChanged("MinorInjuries5"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries6 { + get { + return this.MinorInjuries6Field; + } + set { + if ((this.MinorInjuries6Field.Equals(value) != true)) { + this.MinorInjuries6Field = value; + this.RaisePropertyChanged("MinorInjuries6"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries7 { + get { + return this.MinorInjuries7Field; + } + set { + if ((this.MinorInjuries7Field.Equals(value) != true)) { + this.MinorInjuries7Field = value; + this.RaisePropertyChanged("MinorInjuries7"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries8 { + get { + return this.MinorInjuries8Field; + } + set { + if ((this.MinorInjuries8Field.Equals(value) != true)) { + this.MinorInjuries8Field = value; + this.RaisePropertyChanged("MinorInjuries8"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorInjuries9 { + get { + return this.MinorInjuries9Field; + } + set { + if ((this.MinorInjuries9Field.Equals(value) != true)) { + this.MinorInjuries9Field = value; + this.RaisePropertyChanged("MinorInjuries9"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalDeath { + get { + return this.TotalDeathField; + } + set { + if ((this.TotalDeathField.Equals(value) != true)) { + this.TotalDeathField = value; + this.RaisePropertyChanged("TotalDeath"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalInjuries { + get { + return this.TotalInjuriesField; + } + set { + if ((this.TotalInjuriesField.Equals(value) != true)) { + this.TotalInjuriesField = value; + this.RaisePropertyChanged("TotalInjuries"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalMinorInjuries { + get { + return this.TotalMinorInjuriesField; + } + set { + if ((this.TotalMinorInjuriesField.Equals(value) != true)) { + this.TotalMinorInjuriesField = value; + this.RaisePropertyChanged("TotalMinorInjuries"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_DrillConductedQuarterlyReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_DrillConductedQuarterlyReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillConductedQuarterlyReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable QuarterField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ReportDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable YearIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillConductedQuarterlyReportId { + get { + return this.DrillConductedQuarterlyReportIdField; + } + set { + if ((object.ReferenceEquals(this.DrillConductedQuarterlyReportIdField, value) != true)) { + this.DrillConductedQuarterlyReportIdField = value; + this.RaisePropertyChanged("DrillConductedQuarterlyReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Quarter { + get { + return this.QuarterField; + } + set { + if ((this.QuarterField.Equals(value) != true)) { + this.QuarterField = value; + this.RaisePropertyChanged("Quarter"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ReportDate { + get { + return this.ReportDateField; + } + set { + if ((this.ReportDateField.Equals(value) != true)) { + this.ReportDateField = value; + this.RaisePropertyChanged("ReportDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable YearId { + get { + return this.YearIdField; + } + set { + if ((this.YearIdField.Equals(value) != true)) { + this.YearIdField = value; + this.RaisePropertyChanged("YearId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_DrillConductedQuarterlyReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_DrillConductedQuarterlyReportItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable BasicConductCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable BasicInvestmentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable BasicPeopleCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CPDesktopField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CPSceneField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ComprehensivePracticeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillConductedQuarterlyReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillConductedQuarterlyReportItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HQConductCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HQInvestmentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HQPeopleCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string IndustryTypeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SDDesktopField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SDSceneField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SortIndexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SpecialDrillField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalConductCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalInvestmentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalPeopleCountField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable BasicConductCount { + get { + return this.BasicConductCountField; + } + set { + if ((this.BasicConductCountField.Equals(value) != true)) { + this.BasicConductCountField = value; + this.RaisePropertyChanged("BasicConductCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable BasicInvestment { + get { + return this.BasicInvestmentField; + } + set { + if ((this.BasicInvestmentField.Equals(value) != true)) { + this.BasicInvestmentField = value; + this.RaisePropertyChanged("BasicInvestment"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable BasicPeopleCount { + get { + return this.BasicPeopleCountField; + } + set { + if ((this.BasicPeopleCountField.Equals(value) != true)) { + this.BasicPeopleCountField = value; + this.RaisePropertyChanged("BasicPeopleCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CPDesktop { + get { + return this.CPDesktopField; + } + set { + if ((this.CPDesktopField.Equals(value) != true)) { + this.CPDesktopField = value; + this.RaisePropertyChanged("CPDesktop"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CPScene { + get { + return this.CPSceneField; + } + set { + if ((this.CPSceneField.Equals(value) != true)) { + this.CPSceneField = value; + this.RaisePropertyChanged("CPScene"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ComprehensivePractice { + get { + return this.ComprehensivePracticeField; + } + set { + if ((this.ComprehensivePracticeField.Equals(value) != true)) { + this.ComprehensivePracticeField = value; + this.RaisePropertyChanged("ComprehensivePractice"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillConductedQuarterlyReportId { + get { + return this.DrillConductedQuarterlyReportIdField; + } + set { + if ((object.ReferenceEquals(this.DrillConductedQuarterlyReportIdField, value) != true)) { + this.DrillConductedQuarterlyReportIdField = value; + this.RaisePropertyChanged("DrillConductedQuarterlyReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillConductedQuarterlyReportItemId { + get { + return this.DrillConductedQuarterlyReportItemIdField; + } + set { + if ((object.ReferenceEquals(this.DrillConductedQuarterlyReportItemIdField, value) != true)) { + this.DrillConductedQuarterlyReportItemIdField = value; + this.RaisePropertyChanged("DrillConductedQuarterlyReportItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HQConductCount { + get { + return this.HQConductCountField; + } + set { + if ((this.HQConductCountField.Equals(value) != true)) { + this.HQConductCountField = value; + this.RaisePropertyChanged("HQConductCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HQInvestment { + get { + return this.HQInvestmentField; + } + set { + if ((this.HQInvestmentField.Equals(value) != true)) { + this.HQInvestmentField = value; + this.RaisePropertyChanged("HQInvestment"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HQPeopleCount { + get { + return this.HQPeopleCountField; + } + set { + if ((this.HQPeopleCountField.Equals(value) != true)) { + this.HQPeopleCountField = value; + this.RaisePropertyChanged("HQPeopleCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string IndustryType { + get { + return this.IndustryTypeField; + } + set { + if ((object.ReferenceEquals(this.IndustryTypeField, value) != true)) { + this.IndustryTypeField = value; + this.RaisePropertyChanged("IndustryType"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SDDesktop { + get { + return this.SDDesktopField; + } + set { + if ((this.SDDesktopField.Equals(value) != true)) { + this.SDDesktopField = value; + this.RaisePropertyChanged("SDDesktop"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SDScene { + get { + return this.SDSceneField; + } + set { + if ((this.SDSceneField.Equals(value) != true)) { + this.SDSceneField = value; + this.RaisePropertyChanged("SDScene"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SortIndex { + get { + return this.SortIndexField; + } + set { + if ((this.SortIndexField.Equals(value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SpecialDrill { + get { + return this.SpecialDrillField; + } + set { + if ((this.SpecialDrillField.Equals(value) != true)) { + this.SpecialDrillField = value; + this.RaisePropertyChanged("SpecialDrill"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalConductCount { + get { + return this.TotalConductCountField; + } + set { + if ((this.TotalConductCountField.Equals(value) != true)) { + this.TotalConductCountField = value; + this.RaisePropertyChanged("TotalConductCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalInvestment { + get { + return this.TotalInvestmentField; + } + set { + if ((this.TotalInvestmentField.Equals(value) != true)) { + this.TotalInvestmentField = value; + this.RaisePropertyChanged("TotalInvestment"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalPeopleCount { + get { + return this.TotalPeopleCountField; + } + set { + if ((this.TotalPeopleCountField.Equals(value) != true)) { + this.TotalPeopleCountField = value; + this.RaisePropertyChanged("TotalPeopleCount"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_DrillPlanHalfYearReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_DrillPlanHalfYearReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CompileDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillPlanHalfYearReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HalfYearIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TelephoneField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable YearIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CompileDate { + get { + return this.CompileDateField; + } + set { + if ((this.CompileDateField.Equals(value) != true)) { + this.CompileDateField = value; + this.RaisePropertyChanged("CompileDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillPlanHalfYearReportId { + get { + return this.DrillPlanHalfYearReportIdField; + } + set { + if ((object.ReferenceEquals(this.DrillPlanHalfYearReportIdField, value) != true)) { + this.DrillPlanHalfYearReportIdField = value; + this.RaisePropertyChanged("DrillPlanHalfYearReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HalfYearId { + get { + return this.HalfYearIdField; + } + set { + if ((this.HalfYearIdField.Equals(value) != true)) { + this.HalfYearIdField = value; + this.RaisePropertyChanged("HalfYearId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Telephone { + get { + return this.TelephoneField; + } + set { + if ((object.ReferenceEquals(this.TelephoneField, value) != true)) { + this.TelephoneField = value; + this.RaisePropertyChanged("Telephone"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable YearId { + get { + return this.YearIdField; + } + set { + if ((this.YearIdField.Equals(value) != true)) { + this.YearIdField = value; + this.RaisePropertyChanged("YearId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_DrillPlanHalfYearReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_DrillPlanHalfYearReportItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentSceneField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillPlanDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillPlanHalfYearReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillPlanHalfYearReportItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DrillPlanNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ExerciseWayField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string OrganizationUnitField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SortIndexField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentScene { + get { + return this.AccidentSceneField; + } + set { + if ((object.ReferenceEquals(this.AccidentSceneField, value) != true)) { + this.AccidentSceneField = value; + this.RaisePropertyChanged("AccidentScene"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillPlanDate { + get { + return this.DrillPlanDateField; + } + set { + if ((object.ReferenceEquals(this.DrillPlanDateField, value) != true)) { + this.DrillPlanDateField = value; + this.RaisePropertyChanged("DrillPlanDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillPlanHalfYearReportId { + get { + return this.DrillPlanHalfYearReportIdField; + } + set { + if ((object.ReferenceEquals(this.DrillPlanHalfYearReportIdField, value) != true)) { + this.DrillPlanHalfYearReportIdField = value; + this.RaisePropertyChanged("DrillPlanHalfYearReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillPlanHalfYearReportItemId { + get { + return this.DrillPlanHalfYearReportItemIdField; + } + set { + if ((object.ReferenceEquals(this.DrillPlanHalfYearReportItemIdField, value) != true)) { + this.DrillPlanHalfYearReportItemIdField = value; + this.RaisePropertyChanged("DrillPlanHalfYearReportItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DrillPlanName { + get { + return this.DrillPlanNameField; + } + set { + if ((object.ReferenceEquals(this.DrillPlanNameField, value) != true)) { + this.DrillPlanNameField = value; + this.RaisePropertyChanged("DrillPlanName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ExerciseWay { + get { + return this.ExerciseWayField; + } + set { + if ((object.ReferenceEquals(this.ExerciseWayField, value) != true)) { + this.ExerciseWayField = value; + this.RaisePropertyChanged("ExerciseWay"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string OrganizationUnit { + get { + return this.OrganizationUnitField; + } + set { + if ((object.ReferenceEquals(this.OrganizationUnitField, value) != true)) { + this.OrganizationUnitField = value; + this.RaisePropertyChanged("OrganizationUnit"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SortIndex { + get { + return this.SortIndexField; + } + set { + if ((this.SortIndexField.Equals(value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_MillionsMonthlyReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_MillionsMonthlyReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AccidentMortalityField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable DeathAccidentFrequencyField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DutyPersonField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FillingDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FillingManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable LostTimeInjuryRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable LostTimeRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MillionsMonthlyReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MonthField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable RecordableIncidentRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable YearField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AccidentMortality { + get { + return this.AccidentMortalityField; + } + set { + if ((this.AccidentMortalityField.Equals(value) != true)) { + this.AccidentMortalityField = value; + this.RaisePropertyChanged("AccidentMortality"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable DeathAccidentFrequency { + get { + return this.DeathAccidentFrequencyField; + } + set { + if ((this.DeathAccidentFrequencyField.Equals(value) != true)) { + this.DeathAccidentFrequencyField = value; + this.RaisePropertyChanged("DeathAccidentFrequency"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DutyPerson { + get { + return this.DutyPersonField; + } + set { + if ((object.ReferenceEquals(this.DutyPersonField, value) != true)) { + this.DutyPersonField = value; + this.RaisePropertyChanged("DutyPerson"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FillingDate { + get { + return this.FillingDateField; + } + set { + if ((this.FillingDateField.Equals(value) != true)) { + this.FillingDateField = value; + this.RaisePropertyChanged("FillingDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FillingMan { + get { + return this.FillingManField; + } + set { + if ((object.ReferenceEquals(this.FillingManField, value) != true)) { + this.FillingManField = value; + this.RaisePropertyChanged("FillingMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable LostTimeInjuryRate { + get { + return this.LostTimeInjuryRateField; + } + set { + if ((this.LostTimeInjuryRateField.Equals(value) != true)) { + this.LostTimeInjuryRateField = value; + this.RaisePropertyChanged("LostTimeInjuryRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable LostTimeRate { + get { + return this.LostTimeRateField; + } + set { + if ((this.LostTimeRateField.Equals(value) != true)) { + this.LostTimeRateField = value; + this.RaisePropertyChanged("LostTimeRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MillionsMonthlyReportId { + get { + return this.MillionsMonthlyReportIdField; + } + set { + if ((object.ReferenceEquals(this.MillionsMonthlyReportIdField, value) != true)) { + this.MillionsMonthlyReportIdField = value; + this.RaisePropertyChanged("MillionsMonthlyReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Month { + get { + return this.MonthField; + } + set { + if ((this.MonthField.Equals(value) != true)) { + this.MonthField = value; + this.RaisePropertyChanged("Month"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable RecordableIncidentRate { + get { + return this.RecordableIncidentRateField; + } + set { + if ((this.RecordableIncidentRateField.Equals(value) != true)) { + this.RecordableIncidentRateField = value; + this.RaisePropertyChanged("RecordableIncidentRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Year { + get { + return this.YearField; + } + set { + if ((this.YearField.Equals(value) != true)) { + this.YearField = value; + this.RaisePropertyChanged("Year"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_MillionsMonthlyReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_MillionsMonthlyReportItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AffiliationField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AttemptedEventNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ContractorNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable EquipmentNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ExplosionNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FireNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FirstAidDressingsNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable LossDayNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MedicalTreatmentLossHourField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MedicalTreatmentPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MillionsMonthlyReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MillionsMonthlyReportItemIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorAccidentLossHourField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorAccidentNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MinorAccidentPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable OtherAccidentLossHourField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable OtherAccidentNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable OtherAccidentPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable OtherNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable PostPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable QualityNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable RestrictedWorkLossHourField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable RestrictedWorkPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SeriousInjuriesLossHourField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SeriousInjuriesNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SeriousInjuriesPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SnapPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SortIndexField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SumPersonNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalWorkNumField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TrafficNumField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Affiliation { + get { + return this.AffiliationField; + } + set { + if ((object.ReferenceEquals(this.AffiliationField, value) != true)) { + this.AffiliationField = value; + this.RaisePropertyChanged("Affiliation"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AttemptedEventNum { + get { + return this.AttemptedEventNumField; + } + set { + if ((this.AttemptedEventNumField.Equals(value) != true)) { + this.AttemptedEventNumField = value; + this.RaisePropertyChanged("AttemptedEventNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ContractorNum { + get { + return this.ContractorNumField; + } + set { + if ((this.ContractorNumField.Equals(value) != true)) { + this.ContractorNumField = value; + this.RaisePropertyChanged("ContractorNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable EquipmentNum { + get { + return this.EquipmentNumField; + } + set { + if ((this.EquipmentNumField.Equals(value) != true)) { + this.EquipmentNumField = value; + this.RaisePropertyChanged("EquipmentNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ExplosionNum { + get { + return this.ExplosionNumField; + } + set { + if ((this.ExplosionNumField.Equals(value) != true)) { + this.ExplosionNumField = value; + this.RaisePropertyChanged("ExplosionNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FireNum { + get { + return this.FireNumField; + } + set { + if ((this.FireNumField.Equals(value) != true)) { + this.FireNumField = value; + this.RaisePropertyChanged("FireNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FirstAidDressingsNum { + get { + return this.FirstAidDressingsNumField; + } + set { + if ((this.FirstAidDressingsNumField.Equals(value) != true)) { + this.FirstAidDressingsNumField = value; + this.RaisePropertyChanged("FirstAidDressingsNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable LossDayNum { + get { + return this.LossDayNumField; + } + set { + if ((this.LossDayNumField.Equals(value) != true)) { + this.LossDayNumField = value; + this.RaisePropertyChanged("LossDayNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MedicalTreatmentLossHour { + get { + return this.MedicalTreatmentLossHourField; + } + set { + if ((this.MedicalTreatmentLossHourField.Equals(value) != true)) { + this.MedicalTreatmentLossHourField = value; + this.RaisePropertyChanged("MedicalTreatmentLossHour"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MedicalTreatmentPersonNum { + get { + return this.MedicalTreatmentPersonNumField; + } + set { + if ((this.MedicalTreatmentPersonNumField.Equals(value) != true)) { + this.MedicalTreatmentPersonNumField = value; + this.RaisePropertyChanged("MedicalTreatmentPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MillionsMonthlyReportId { + get { + return this.MillionsMonthlyReportIdField; + } + set { + if ((object.ReferenceEquals(this.MillionsMonthlyReportIdField, value) != true)) { + this.MillionsMonthlyReportIdField = value; + this.RaisePropertyChanged("MillionsMonthlyReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MillionsMonthlyReportItemId { + get { + return this.MillionsMonthlyReportItemIdField; + } + set { + if ((object.ReferenceEquals(this.MillionsMonthlyReportItemIdField, value) != true)) { + this.MillionsMonthlyReportItemIdField = value; + this.RaisePropertyChanged("MillionsMonthlyReportItemId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorAccidentLossHour { + get { + return this.MinorAccidentLossHourField; + } + set { + if ((this.MinorAccidentLossHourField.Equals(value) != true)) { + this.MinorAccidentLossHourField = value; + this.RaisePropertyChanged("MinorAccidentLossHour"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorAccidentNum { + get { + return this.MinorAccidentNumField; + } + set { + if ((this.MinorAccidentNumField.Equals(value) != true)) { + this.MinorAccidentNumField = value; + this.RaisePropertyChanged("MinorAccidentNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MinorAccidentPersonNum { + get { + return this.MinorAccidentPersonNumField; + } + set { + if ((this.MinorAccidentPersonNumField.Equals(value) != true)) { + this.MinorAccidentPersonNumField = value; + this.RaisePropertyChanged("MinorAccidentPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable OtherAccidentLossHour { + get { + return this.OtherAccidentLossHourField; + } + set { + if ((this.OtherAccidentLossHourField.Equals(value) != true)) { + this.OtherAccidentLossHourField = value; + this.RaisePropertyChanged("OtherAccidentLossHour"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable OtherAccidentNum { + get { + return this.OtherAccidentNumField; + } + set { + if ((this.OtherAccidentNumField.Equals(value) != true)) { + this.OtherAccidentNumField = value; + this.RaisePropertyChanged("OtherAccidentNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable OtherAccidentPersonNum { + get { + return this.OtherAccidentPersonNumField; + } + set { + if ((this.OtherAccidentPersonNumField.Equals(value) != true)) { + this.OtherAccidentPersonNumField = value; + this.RaisePropertyChanged("OtherAccidentPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable OtherNum { + get { + return this.OtherNumField; + } + set { + if ((this.OtherNumField.Equals(value) != true)) { + this.OtherNumField = value; + this.RaisePropertyChanged("OtherNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable PostPersonNum { + get { + return this.PostPersonNumField; + } + set { + if ((this.PostPersonNumField.Equals(value) != true)) { + this.PostPersonNumField = value; + this.RaisePropertyChanged("PostPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable QualityNum { + get { + return this.QualityNumField; + } + set { + if ((this.QualityNumField.Equals(value) != true)) { + this.QualityNumField = value; + this.RaisePropertyChanged("QualityNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable RestrictedWorkLossHour { + get { + return this.RestrictedWorkLossHourField; + } + set { + if ((this.RestrictedWorkLossHourField.Equals(value) != true)) { + this.RestrictedWorkLossHourField = value; + this.RaisePropertyChanged("RestrictedWorkLossHour"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable RestrictedWorkPersonNum { + get { + return this.RestrictedWorkPersonNumField; + } + set { + if ((this.RestrictedWorkPersonNumField.Equals(value) != true)) { + this.RestrictedWorkPersonNumField = value; + this.RaisePropertyChanged("RestrictedWorkPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SeriousInjuriesLossHour { + get { + return this.SeriousInjuriesLossHourField; + } + set { + if ((this.SeriousInjuriesLossHourField.Equals(value) != true)) { + this.SeriousInjuriesLossHourField = value; + this.RaisePropertyChanged("SeriousInjuriesLossHour"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SeriousInjuriesNum { + get { + return this.SeriousInjuriesNumField; + } + set { + if ((this.SeriousInjuriesNumField.Equals(value) != true)) { + this.SeriousInjuriesNumField = value; + this.RaisePropertyChanged("SeriousInjuriesNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SeriousInjuriesPersonNum { + get { + return this.SeriousInjuriesPersonNumField; + } + set { + if ((this.SeriousInjuriesPersonNumField.Equals(value) != true)) { + this.SeriousInjuriesPersonNumField = value; + this.RaisePropertyChanged("SeriousInjuriesPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SnapPersonNum { + get { + return this.SnapPersonNumField; + } + set { + if ((this.SnapPersonNumField.Equals(value) != true)) { + this.SnapPersonNumField = value; + this.RaisePropertyChanged("SnapPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SortIndex { + get { + return this.SortIndexField; + } + set { + if ((this.SortIndexField.Equals(value) != true)) { + this.SortIndexField = value; + this.RaisePropertyChanged("SortIndex"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SumPersonNum { + get { + return this.SumPersonNumField; + } + set { + if ((this.SumPersonNumField.Equals(value) != true)) { + this.SumPersonNumField = value; + this.RaisePropertyChanged("SumPersonNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalWorkNum { + get { + return this.TotalWorkNumField; + } + set { + if ((this.TotalWorkNumField.Equals(value) != true)) { + this.TotalWorkNumField = value; + this.RaisePropertyChanged("TotalWorkNum"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TrafficNum { + get { + return this.TrafficNumField; + } + set { + if ((this.TrafficNumField.Equals(value) != true)) { + this.TrafficNumField = value; + this.RaisePropertyChanged("TrafficNum"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Information_SafetyQuarterlyReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] + [System.SerializableAttribute()] + public partial class Information_SafetyQuarterlyReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable AccidentFrequencyField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string AccidentFrequencyRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable BillionsOutputMortalityField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string BillionsOutputMortalityRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ChemicalAreaProjectCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ChemicalAreaProjectCountRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CompileManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ConstructionRevenueField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ConstructionRevenueRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable CorporateDirectorEduField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string CorporateDirectorEduRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable EducationTrainInField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EducationTrainInRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable EquipmentAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string EquipmentAccidentRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FillingDateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FireAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FireAccidentRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FullTimeEduField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FullTimeEduRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable FullTimeManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FullTimeManAttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] FullTimeManAttachUrlFileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FullTimeManRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HarmfulMediumCoverCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HarmfulMediumCoverCountRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable HarmfulMediumCoverRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string HarmfulMediumCoverRateRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable KeyEquipmentReportCountField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KeyEquipmentReportCountRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable KeyEquipmentTotalField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string KeyEquipmentTotalRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable LaboAndHealthInField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LaborAndHealthInRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MainBusinessIncomeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MainBusinessIncomeRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MajorEquipAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MajorEquipAccidentRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable MajorFireAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string MajorFireAccidentRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable PMManField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PMManAttachUrlField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private byte[][] PMManAttachUrlFileContextField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PMManRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable PoisoningAndInjuriesField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string PoisoningAndInjuriesRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ProductionInputField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProductionInputRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ProductionSafetyInTotalField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProductionSafetyInTotalRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ProjectCostRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProjectCostRateRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ProjectLeaderEduField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProjectLeaderEduRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ProtectionInputField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ProtectionInputRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable QuartersField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RemarksField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable RevenueField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string RevenueRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SafetyQuarterlyReportIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable SeriousInjuryAccidentField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string SeriousInjuryAccidentRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TechnologyProgressInField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TechnologyProgressInRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable ThreeKidsEduRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string ThreeKidsEduRateRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalInWorkHoursField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TotalInWorkHoursRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable TotalOutWorkHoursField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string TotalOutWorkHoursRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable UnitTimeIncomeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UnitTimeIncomeRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable UplinReportRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string UplinReportRateRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable WorkHoursAccuracyField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string WorkHoursAccuracyRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable WorkHoursLossRateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string WorkHoursLossRateRemarkField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.Nullable YearIdField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AccidentFrequency { + get { + return this.AccidentFrequencyField; + } + set { + if ((this.AccidentFrequencyField.Equals(value) != true)) { + this.AccidentFrequencyField = value; + this.RaisePropertyChanged("AccidentFrequency"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AccidentFrequencyRemark { + get { + return this.AccidentFrequencyRemarkField; + } + set { + if ((object.ReferenceEquals(this.AccidentFrequencyRemarkField, value) != true)) { + this.AccidentFrequencyRemarkField = value; + this.RaisePropertyChanged("AccidentFrequencyRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable BillionsOutputMortality { + get { + return this.BillionsOutputMortalityField; + } + set { + if ((this.BillionsOutputMortalityField.Equals(value) != true)) { + this.BillionsOutputMortalityField = value; + this.RaisePropertyChanged("BillionsOutputMortality"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string BillionsOutputMortalityRemark { + get { + return this.BillionsOutputMortalityRemarkField; + } + set { + if ((object.ReferenceEquals(this.BillionsOutputMortalityRemarkField, value) != true)) { + this.BillionsOutputMortalityRemarkField = value; + this.RaisePropertyChanged("BillionsOutputMortalityRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ChemicalAreaProjectCount { + get { + return this.ChemicalAreaProjectCountField; + } + set { + if ((this.ChemicalAreaProjectCountField.Equals(value) != true)) { + this.ChemicalAreaProjectCountField = value; + this.RaisePropertyChanged("ChemicalAreaProjectCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ChemicalAreaProjectCountRemark { + get { + return this.ChemicalAreaProjectCountRemarkField; + } + set { + if ((object.ReferenceEquals(this.ChemicalAreaProjectCountRemarkField, value) != true)) { + this.ChemicalAreaProjectCountRemarkField = value; + this.RaisePropertyChanged("ChemicalAreaProjectCountRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompileMan { + get { + return this.CompileManField; + } + set { + if ((object.ReferenceEquals(this.CompileManField, value) != true)) { + this.CompileManField = value; + this.RaisePropertyChanged("CompileMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ConstructionRevenue { + get { + return this.ConstructionRevenueField; + } + set { + if ((this.ConstructionRevenueField.Equals(value) != true)) { + this.ConstructionRevenueField = value; + this.RaisePropertyChanged("ConstructionRevenue"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ConstructionRevenueRemark { + get { + return this.ConstructionRevenueRemarkField; + } + set { + if ((object.ReferenceEquals(this.ConstructionRevenueRemarkField, value) != true)) { + this.ConstructionRevenueRemarkField = value; + this.RaisePropertyChanged("ConstructionRevenueRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable CorporateDirectorEdu { + get { + return this.CorporateDirectorEduField; + } + set { + if ((this.CorporateDirectorEduField.Equals(value) != true)) { + this.CorporateDirectorEduField = value; + this.RaisePropertyChanged("CorporateDirectorEdu"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CorporateDirectorEduRemark { + get { + return this.CorporateDirectorEduRemarkField; + } + set { + if ((object.ReferenceEquals(this.CorporateDirectorEduRemarkField, value) != true)) { + this.CorporateDirectorEduRemarkField = value; + this.RaisePropertyChanged("CorporateDirectorEduRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable EducationTrainIn { + get { + return this.EducationTrainInField; + } + set { + if ((this.EducationTrainInField.Equals(value) != true)) { + this.EducationTrainInField = value; + this.RaisePropertyChanged("EducationTrainIn"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EducationTrainInRemark { + get { + return this.EducationTrainInRemarkField; + } + set { + if ((object.ReferenceEquals(this.EducationTrainInRemarkField, value) != true)) { + this.EducationTrainInRemarkField = value; + this.RaisePropertyChanged("EducationTrainInRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable EquipmentAccident { + get { + return this.EquipmentAccidentField; + } + set { + if ((this.EquipmentAccidentField.Equals(value) != true)) { + this.EquipmentAccidentField = value; + this.RaisePropertyChanged("EquipmentAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EquipmentAccidentRemark { + get { + return this.EquipmentAccidentRemarkField; + } + set { + if ((object.ReferenceEquals(this.EquipmentAccidentRemarkField, value) != true)) { + this.EquipmentAccidentRemarkField = value; + this.RaisePropertyChanged("EquipmentAccidentRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FillingDate { + get { + return this.FillingDateField; + } + set { + if ((this.FillingDateField.Equals(value) != true)) { + this.FillingDateField = value; + this.RaisePropertyChanged("FillingDate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FireAccident { + get { + return this.FireAccidentField; + } + set { + if ((this.FireAccidentField.Equals(value) != true)) { + this.FireAccidentField = value; + this.RaisePropertyChanged("FireAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FireAccidentRemark { + get { + return this.FireAccidentRemarkField; + } + set { + if ((object.ReferenceEquals(this.FireAccidentRemarkField, value) != true)) { + this.FireAccidentRemarkField = value; + this.RaisePropertyChanged("FireAccidentRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FullTimeEdu { + get { + return this.FullTimeEduField; + } + set { + if ((this.FullTimeEduField.Equals(value) != true)) { + this.FullTimeEduField = value; + this.RaisePropertyChanged("FullTimeEdu"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FullTimeEduRemark { + get { + return this.FullTimeEduRemarkField; + } + set { + if ((object.ReferenceEquals(this.FullTimeEduRemarkField, value) != true)) { + this.FullTimeEduRemarkField = value; + this.RaisePropertyChanged("FullTimeEduRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable FullTimeMan { + get { + return this.FullTimeManField; + } + set { + if ((this.FullTimeManField.Equals(value) != true)) { + this.FullTimeManField = value; + this.RaisePropertyChanged("FullTimeMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FullTimeManAttachUrl { + get { + return this.FullTimeManAttachUrlField; + } + set { + if ((object.ReferenceEquals(this.FullTimeManAttachUrlField, value) != true)) { + this.FullTimeManAttachUrlField = value; + this.RaisePropertyChanged("FullTimeManAttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] FullTimeManAttachUrlFileContext { + get { + return this.FullTimeManAttachUrlFileContextField; + } + set { + if ((object.ReferenceEquals(this.FullTimeManAttachUrlFileContextField, value) != true)) { + this.FullTimeManAttachUrlFileContextField = value; + this.RaisePropertyChanged("FullTimeManAttachUrlFileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FullTimeManRemark { + get { + return this.FullTimeManRemarkField; + } + set { + if ((object.ReferenceEquals(this.FullTimeManRemarkField, value) != true)) { + this.FullTimeManRemarkField = value; + this.RaisePropertyChanged("FullTimeManRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HarmfulMediumCoverCount { + get { + return this.HarmfulMediumCoverCountField; + } + set { + if ((this.HarmfulMediumCoverCountField.Equals(value) != true)) { + this.HarmfulMediumCoverCountField = value; + this.RaisePropertyChanged("HarmfulMediumCoverCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HarmfulMediumCoverCountRemark { + get { + return this.HarmfulMediumCoverCountRemarkField; + } + set { + if ((object.ReferenceEquals(this.HarmfulMediumCoverCountRemarkField, value) != true)) { + this.HarmfulMediumCoverCountRemarkField = value; + this.RaisePropertyChanged("HarmfulMediumCoverCountRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable HarmfulMediumCoverRate { + get { + return this.HarmfulMediumCoverRateField; + } + set { + if ((this.HarmfulMediumCoverRateField.Equals(value) != true)) { + this.HarmfulMediumCoverRateField = value; + this.RaisePropertyChanged("HarmfulMediumCoverRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string HarmfulMediumCoverRateRemark { + get { + return this.HarmfulMediumCoverRateRemarkField; + } + set { + if ((object.ReferenceEquals(this.HarmfulMediumCoverRateRemarkField, value) != true)) { + this.HarmfulMediumCoverRateRemarkField = value; + this.RaisePropertyChanged("HarmfulMediumCoverRateRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable KeyEquipmentReportCount { + get { + return this.KeyEquipmentReportCountField; + } + set { + if ((this.KeyEquipmentReportCountField.Equals(value) != true)) { + this.KeyEquipmentReportCountField = value; + this.RaisePropertyChanged("KeyEquipmentReportCount"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KeyEquipmentReportCountRemark { + get { + return this.KeyEquipmentReportCountRemarkField; + } + set { + if ((object.ReferenceEquals(this.KeyEquipmentReportCountRemarkField, value) != true)) { + this.KeyEquipmentReportCountRemarkField = value; + this.RaisePropertyChanged("KeyEquipmentReportCountRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable KeyEquipmentTotal { + get { + return this.KeyEquipmentTotalField; + } + set { + if ((this.KeyEquipmentTotalField.Equals(value) != true)) { + this.KeyEquipmentTotalField = value; + this.RaisePropertyChanged("KeyEquipmentTotal"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string KeyEquipmentTotalRemark { + get { + return this.KeyEquipmentTotalRemarkField; + } + set { + if ((object.ReferenceEquals(this.KeyEquipmentTotalRemarkField, value) != true)) { + this.KeyEquipmentTotalRemarkField = value; + this.RaisePropertyChanged("KeyEquipmentTotalRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable LaboAndHealthIn { + get { + return this.LaboAndHealthInField; + } + set { + if ((this.LaboAndHealthInField.Equals(value) != true)) { + this.LaboAndHealthInField = value; + this.RaisePropertyChanged("LaboAndHealthIn"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LaborAndHealthInRemark { + get { + return this.LaborAndHealthInRemarkField; + } + set { + if ((object.ReferenceEquals(this.LaborAndHealthInRemarkField, value) != true)) { + this.LaborAndHealthInRemarkField = value; + this.RaisePropertyChanged("LaborAndHealthInRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MainBusinessIncome { + get { + return this.MainBusinessIncomeField; + } + set { + if ((this.MainBusinessIncomeField.Equals(value) != true)) { + this.MainBusinessIncomeField = value; + this.RaisePropertyChanged("MainBusinessIncome"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MainBusinessIncomeRemark { + get { + return this.MainBusinessIncomeRemarkField; + } + set { + if ((object.ReferenceEquals(this.MainBusinessIncomeRemarkField, value) != true)) { + this.MainBusinessIncomeRemarkField = value; + this.RaisePropertyChanged("MainBusinessIncomeRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MajorEquipAccident { + get { + return this.MajorEquipAccidentField; + } + set { + if ((this.MajorEquipAccidentField.Equals(value) != true)) { + this.MajorEquipAccidentField = value; + this.RaisePropertyChanged("MajorEquipAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MajorEquipAccidentRemark { + get { + return this.MajorEquipAccidentRemarkField; + } + set { + if ((object.ReferenceEquals(this.MajorEquipAccidentRemarkField, value) != true)) { + this.MajorEquipAccidentRemarkField = value; + this.RaisePropertyChanged("MajorEquipAccidentRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable MajorFireAccident { + get { + return this.MajorFireAccidentField; + } + set { + if ((this.MajorFireAccidentField.Equals(value) != true)) { + this.MajorFireAccidentField = value; + this.RaisePropertyChanged("MajorFireAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string MajorFireAccidentRemark { + get { + return this.MajorFireAccidentRemarkField; + } + set { + if ((object.ReferenceEquals(this.MajorFireAccidentRemarkField, value) != true)) { + this.MajorFireAccidentRemarkField = value; + this.RaisePropertyChanged("MajorFireAccidentRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable PMMan { + get { + return this.PMManField; + } + set { + if ((this.PMManField.Equals(value) != true)) { + this.PMManField = value; + this.RaisePropertyChanged("PMMan"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PMManAttachUrl { + get { + return this.PMManAttachUrlField; + } + set { + if ((object.ReferenceEquals(this.PMManAttachUrlField, value) != true)) { + this.PMManAttachUrlField = value; + this.RaisePropertyChanged("PMManAttachUrl"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public byte[][] PMManAttachUrlFileContext { + get { + return this.PMManAttachUrlFileContextField; + } + set { + if ((object.ReferenceEquals(this.PMManAttachUrlFileContextField, value) != true)) { + this.PMManAttachUrlFileContextField = value; + this.RaisePropertyChanged("PMManAttachUrlFileContext"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PMManRemark { + get { + return this.PMManRemarkField; + } + set { + if ((object.ReferenceEquals(this.PMManRemarkField, value) != true)) { + this.PMManRemarkField = value; + this.RaisePropertyChanged("PMManRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable PoisoningAndInjuries { + get { + return this.PoisoningAndInjuriesField; + } + set { + if ((this.PoisoningAndInjuriesField.Equals(value) != true)) { + this.PoisoningAndInjuriesField = value; + this.RaisePropertyChanged("PoisoningAndInjuries"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PoisoningAndInjuriesRemark { + get { + return this.PoisoningAndInjuriesRemarkField; + } + set { + if ((object.ReferenceEquals(this.PoisoningAndInjuriesRemarkField, value) != true)) { + this.PoisoningAndInjuriesRemarkField = value; + this.RaisePropertyChanged("PoisoningAndInjuriesRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ProductionInput { + get { + return this.ProductionInputField; + } + set { + if ((this.ProductionInputField.Equals(value) != true)) { + this.ProductionInputField = value; + this.RaisePropertyChanged("ProductionInput"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProductionInputRemark { + get { + return this.ProductionInputRemarkField; + } + set { + if ((object.ReferenceEquals(this.ProductionInputRemarkField, value) != true)) { + this.ProductionInputRemarkField = value; + this.RaisePropertyChanged("ProductionInputRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ProductionSafetyInTotal { + get { + return this.ProductionSafetyInTotalField; + } + set { + if ((this.ProductionSafetyInTotalField.Equals(value) != true)) { + this.ProductionSafetyInTotalField = value; + this.RaisePropertyChanged("ProductionSafetyInTotal"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProductionSafetyInTotalRemark { + get { + return this.ProductionSafetyInTotalRemarkField; + } + set { + if ((object.ReferenceEquals(this.ProductionSafetyInTotalRemarkField, value) != true)) { + this.ProductionSafetyInTotalRemarkField = value; + this.RaisePropertyChanged("ProductionSafetyInTotalRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ProjectCostRate { + get { + return this.ProjectCostRateField; + } + set { + if ((this.ProjectCostRateField.Equals(value) != true)) { + this.ProjectCostRateField = value; + this.RaisePropertyChanged("ProjectCostRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProjectCostRateRemark { + get { + return this.ProjectCostRateRemarkField; + } + set { + if ((object.ReferenceEquals(this.ProjectCostRateRemarkField, value) != true)) { + this.ProjectCostRateRemarkField = value; + this.RaisePropertyChanged("ProjectCostRateRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ProjectLeaderEdu { + get { + return this.ProjectLeaderEduField; + } + set { + if ((this.ProjectLeaderEduField.Equals(value) != true)) { + this.ProjectLeaderEduField = value; + this.RaisePropertyChanged("ProjectLeaderEdu"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProjectLeaderEduRemark { + get { + return this.ProjectLeaderEduRemarkField; + } + set { + if ((object.ReferenceEquals(this.ProjectLeaderEduRemarkField, value) != true)) { + this.ProjectLeaderEduRemarkField = value; + this.RaisePropertyChanged("ProjectLeaderEduRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ProtectionInput { + get { + return this.ProtectionInputField; + } + set { + if ((this.ProtectionInputField.Equals(value) != true)) { + this.ProtectionInputField = value; + this.RaisePropertyChanged("ProtectionInput"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ProtectionInputRemark { + get { + return this.ProtectionInputRemarkField; + } + set { + if ((object.ReferenceEquals(this.ProtectionInputRemarkField, value) != true)) { + this.ProtectionInputRemarkField = value; + this.RaisePropertyChanged("ProtectionInputRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Quarters { + get { + return this.QuartersField; + } + set { + if ((this.QuartersField.Equals(value) != true)) { + this.QuartersField = value; + this.RaisePropertyChanged("Quarters"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Remarks { + get { + return this.RemarksField; + } + set { + if ((object.ReferenceEquals(this.RemarksField, value) != true)) { + this.RemarksField = value; + this.RaisePropertyChanged("Remarks"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Revenue { + get { + return this.RevenueField; + } + set { + if ((this.RevenueField.Equals(value) != true)) { + this.RevenueField = value; + this.RaisePropertyChanged("Revenue"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string RevenueRemark { + get { + return this.RevenueRemarkField; + } + set { + if ((object.ReferenceEquals(this.RevenueRemarkField, value) != true)) { + this.RevenueRemarkField = value; + this.RaisePropertyChanged("RevenueRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SafetyQuarterlyReportId { + get { + return this.SafetyQuarterlyReportIdField; + } + set { + if ((object.ReferenceEquals(this.SafetyQuarterlyReportIdField, value) != true)) { + this.SafetyQuarterlyReportIdField = value; + this.RaisePropertyChanged("SafetyQuarterlyReportId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable SeriousInjuryAccident { + get { + return this.SeriousInjuryAccidentField; + } + set { + if ((this.SeriousInjuryAccidentField.Equals(value) != true)) { + this.SeriousInjuryAccidentField = value; + this.RaisePropertyChanged("SeriousInjuryAccident"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string SeriousInjuryAccidentRemark { + get { + return this.SeriousInjuryAccidentRemarkField; + } + set { + if ((object.ReferenceEquals(this.SeriousInjuryAccidentRemarkField, value) != true)) { + this.SeriousInjuryAccidentRemarkField = value; + this.RaisePropertyChanged("SeriousInjuryAccidentRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TechnologyProgressIn { + get { + return this.TechnologyProgressInField; + } + set { + if ((this.TechnologyProgressInField.Equals(value) != true)) { + this.TechnologyProgressInField = value; + this.RaisePropertyChanged("TechnologyProgressIn"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TechnologyProgressInRemark { + get { + return this.TechnologyProgressInRemarkField; + } + set { + if ((object.ReferenceEquals(this.TechnologyProgressInRemarkField, value) != true)) { + this.TechnologyProgressInRemarkField = value; + this.RaisePropertyChanged("TechnologyProgressInRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ThreeKidsEduRate { + get { + return this.ThreeKidsEduRateField; + } + set { + if ((this.ThreeKidsEduRateField.Equals(value) != true)) { + this.ThreeKidsEduRateField = value; + this.RaisePropertyChanged("ThreeKidsEduRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ThreeKidsEduRateRemark { + get { + return this.ThreeKidsEduRateRemarkField; + } + set { + if ((object.ReferenceEquals(this.ThreeKidsEduRateRemarkField, value) != true)) { + this.ThreeKidsEduRateRemarkField = value; + this.RaisePropertyChanged("ThreeKidsEduRateRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalInWorkHours { + get { + return this.TotalInWorkHoursField; + } + set { + if ((this.TotalInWorkHoursField.Equals(value) != true)) { + this.TotalInWorkHoursField = value; + this.RaisePropertyChanged("TotalInWorkHours"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TotalInWorkHoursRemark { + get { + return this.TotalInWorkHoursRemarkField; + } + set { + if ((object.ReferenceEquals(this.TotalInWorkHoursRemarkField, value) != true)) { + this.TotalInWorkHoursRemarkField = value; + this.RaisePropertyChanged("TotalInWorkHoursRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable TotalOutWorkHours { + get { + return this.TotalOutWorkHoursField; + } + set { + if ((this.TotalOutWorkHoursField.Equals(value) != true)) { + this.TotalOutWorkHoursField = value; + this.RaisePropertyChanged("TotalOutWorkHours"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TotalOutWorkHoursRemark { + get { + return this.TotalOutWorkHoursRemarkField; + } + set { + if ((object.ReferenceEquals(this.TotalOutWorkHoursRemarkField, value) != true)) { + this.TotalOutWorkHoursRemarkField = value; + this.RaisePropertyChanged("TotalOutWorkHoursRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitId { + get { + return this.UnitIdField; + } + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { + this.UnitIdField = value; + this.RaisePropertyChanged("UnitId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable UnitTimeIncome { + get { + return this.UnitTimeIncomeField; + } + set { + if ((this.UnitTimeIncomeField.Equals(value) != true)) { + this.UnitTimeIncomeField = value; + this.RaisePropertyChanged("UnitTimeIncome"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UnitTimeIncomeRemark { + get { + return this.UnitTimeIncomeRemarkField; + } + set { + if ((object.ReferenceEquals(this.UnitTimeIncomeRemarkField, value) != true)) { + this.UnitTimeIncomeRemarkField = value; + this.RaisePropertyChanged("UnitTimeIncomeRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable UplinReportRate { + get { + return this.UplinReportRateField; + } + set { + if ((this.UplinReportRateField.Equals(value) != true)) { + this.UplinReportRateField = value; + this.RaisePropertyChanged("UplinReportRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string UplinReportRateRemark { + get { + return this.UplinReportRateRemarkField; + } + set { + if ((object.ReferenceEquals(this.UplinReportRateRemarkField, value) != true)) { + this.UplinReportRateRemarkField = value; + this.RaisePropertyChanged("UplinReportRateRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable WorkHoursAccuracy { + get { + return this.WorkHoursAccuracyField; + } + set { + if ((this.WorkHoursAccuracyField.Equals(value) != true)) { + this.WorkHoursAccuracyField = value; + this.RaisePropertyChanged("WorkHoursAccuracy"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string WorkHoursAccuracyRemark { + get { + return this.WorkHoursAccuracyRemarkField; + } + set { + if ((object.ReferenceEquals(this.WorkHoursAccuracyRemarkField, value) != true)) { + this.WorkHoursAccuracyRemarkField = value; + this.RaisePropertyChanged("WorkHoursAccuracyRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable WorkHoursLossRate { + get { + return this.WorkHoursLossRateField; + } + set { + if ((this.WorkHoursLossRateField.Equals(value) != true)) { + this.WorkHoursLossRateField = value; + this.RaisePropertyChanged("WorkHoursLossRate"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string WorkHoursLossRateRemark { + get { + return this.WorkHoursLossRateRemarkField; + } + set { + if ((object.ReferenceEquals(this.WorkHoursLossRateRemarkField, value) != true)) { + this.WorkHoursLossRateRemarkField = value; + this.RaisePropertyChanged("WorkHoursLossRateRemark"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable YearId { + get { + return this.YearIdField; + } + set { + if ((this.YearIdField.Equals(value) != true)) { + this.YearIdField = value; + this.RaisePropertyChanged("YearId"); + } + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ServiceModel.ServiceContractAttribute(Namespace="http://www.localhost.com", ConfigurationName="CNCECHSSEService.HSSEService")] + public interface HSSEService { + + [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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTableRespon" + + "se")] + string DataInsertHSSESystem_HSSEOrganizeTable(BLL.CNCECHSSEService.HSSESystem_HSSEOrganize hsseOrganize); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTableRespon" + + "se")] + 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_AccidentCauseReportTab" + + "le", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_AccidentCauseReportTab" + + "leResponse")] + System.Threading.Tasks.Task DataInsertInformation_AccidentCauseReportTableAsync(BLL.CNCECHSSEService.Information_AccidentCauseReport[] accidentCauseReportList, BLL.CNCECHSSEService.Information_AccidentCauseReportItem[] accidentCauseReportItemList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillConductedQuarterl" + + "yReportTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_DrillConductedQuarterl" + + "yReportTableResponse")] + string[] DataInsertInformation_DrillConductedQuarterlyReportTable(BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReport[] drillConductedQuarterlyReportList, BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReportItem[] drillConductedQuarterlyReportItemList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillConductedQuarterl" + + "yReportTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_DrillConductedQuarterl" + + "yReportTableResponse")] + System.Threading.Tasks.Task DataInsertInformation_DrillConductedQuarterlyReportTableAsync(BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReport[] drillConductedQuarterlyReportList, BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReportItem[] drillConductedQuarterlyReportItemList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillPlanHalfYearRepor" + + "tTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_DrillPlanHalfYearRepor" + + "tTableResponse")] + string[] DataInsertInformation_DrillPlanHalfYearReportTable(BLL.CNCECHSSEService.Information_DrillPlanHalfYearReport[] drillPlanHalfYearReportList, BLL.CNCECHSSEService.Information_DrillPlanHalfYearReportItem[] drillPlanHalfYearReportItemList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillPlanHalfYearRepor" + + "tTable", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_DrillPlanHalfYearRepor" + + "tTableResponse")] + System.Threading.Tasks.Task DataInsertInformation_DrillPlanHalfYearReportTableAsync(BLL.CNCECHSSEService.Information_DrillPlanHalfYearReport[] drillPlanHalfYearReportList, BLL.CNCECHSSEService.Information_DrillPlanHalfYearReportItem[] drillPlanHalfYearReportItemList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_MillionsMonthlyReportT" + + "able", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_MillionsMonthlyReportT" + + "ableResponse")] + string[] DataInsertInformation_MillionsMonthlyReportTable(BLL.CNCECHSSEService.Information_MillionsMonthlyReport[] millionsMonthlyReportList, BLL.CNCECHSSEService.Information_MillionsMonthlyReportItem[] millionsMonthlyReportItemList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_MillionsMonthlyReportT" + + "able", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_MillionsMonthlyReportT" + + "ableResponse")] + System.Threading.Tasks.Task DataInsertInformation_MillionsMonthlyReportTableAsync(BLL.CNCECHSSEService.Information_MillionsMonthlyReport[] millionsMonthlyReportList, BLL.CNCECHSSEService.Information_MillionsMonthlyReportItem[] millionsMonthlyReportItemList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_SafetyQuarterlyReportT" + + "able", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_SafetyQuarterlyReportT" + + "ableResponse")] + string[] DataInsertInformation_SafetyQuarterlyReportTable(BLL.CNCECHSSEService.Information_SafetyQuarterlyReport[] safetyQuarterlyReportList); + + [System.ServiceModel.OperationContractAttribute(Action="http://www.localhost.com/HSSEService/DataInsertInformation_SafetyQuarterlyReportT" + + "able", ReplyAction="http://www.localhost.com/HSSEService/DataInsertInformation_SafetyQuarterlyReportT" + + "ableResponse")] + System.Threading.Tasks.Task DataInsertInformation_SafetyQuarterlyReportTableAsync(BLL.CNCECHSSEService.Information_SafetyQuarterlyReport[] safetyQuarterlyReportList); + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public interface HSSEServiceChannel : BLL.CNCECHSSEService.HSSEService, System.ServiceModel.IClientChannel { + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public partial class HSSEServiceClient : System.ServiceModel.ClientBase, BLL.CNCECHSSEService.HSSEService { + + public HSSEServiceClient() { + } + + public HSSEServiceClient(string endpointConfigurationName) : + base(endpointConfigurationName) { + } + + public HSSEServiceClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public HSSEServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public HSSEServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) { + } + + public string[] DataInsertTraining_TrainingItemTable(BLL.CNCECHSSEService.Training_TrainingItem[] trainingItem) { + return base.Channel.DataInsertTraining_TrainingItemTable(trainingItem); + } + + public System.Threading.Tasks.Task DataInsertTraining_TrainingItemTableAsync(BLL.CNCECHSSEService.Training_TrainingItem[] trainingItem) { + return base.Channel.DataInsertTraining_TrainingItemTableAsync(trainingItem); + } + + public string[] DataInsertTraining_TrainTestDBItemTable(BLL.CNCECHSSEService.Training_TrainTestDBItem[] trainTestDBItem) { + return base.Channel.DataInsertTraining_TrainTestDBItemTable(trainTestDBItem); + } + + public System.Threading.Tasks.Task DataInsertTraining_TrainTestDBItemTableAsync(BLL.CNCECHSSEService.Training_TrainTestDBItem[] trainTestDBItem) { + return base.Channel.DataInsertTraining_TrainTestDBItemTableAsync(trainTestDBItem); + } + + public string[] DataInsertEduTrain_AccidentCaseItemTable(BLL.CNCECHSSEService.EduTrain_AccidentCaseItem[] accidentCaseItem) { + return base.Channel.DataInsertEduTrain_AccidentCaseItemTable(accidentCaseItem); + } + + public System.Threading.Tasks.Task DataInsertEduTrain_AccidentCaseItemTableAsync(BLL.CNCECHSSEService.EduTrain_AccidentCaseItem[] accidentCaseItem) { + return base.Channel.DataInsertEduTrain_AccidentCaseItemTableAsync(accidentCaseItem); + } + + public string[] DataInsertTraining_KnowledgeItemTable(BLL.CNCECHSSEService.Training_KnowledgeItem[] knowledgeItem) { + return base.Channel.DataInsertTraining_KnowledgeItemTable(knowledgeItem); + } + + public System.Threading.Tasks.Task DataInsertTraining_KnowledgeItemTableAsync(BLL.CNCECHSSEService.Training_KnowledgeItem[] knowledgeItem) { + return base.Channel.DataInsertTraining_KnowledgeItemTableAsync(knowledgeItem); + } + + public string[] DataInsertTechnique_HazardListTable(BLL.CNCECHSSEService.Technique_HazardList[] hazardList) { + return base.Channel.DataInsertTechnique_HazardListTable(hazardList); + } + + public System.Threading.Tasks.Task DataInsertTechnique_HazardListTableAsync(BLL.CNCECHSSEService.Technique_HazardList[] hazardList) { + return base.Channel.DataInsertTechnique_HazardListTableAsync(hazardList); + } + + public string[] DataInsertTechnique_RectifyItemTable(BLL.CNCECHSSEService.Technique_RectifyItem[] rectifyItem) { + return base.Channel.DataInsertTechnique_RectifyItemTable(rectifyItem); + } + + public System.Threading.Tasks.Task DataInsertTechnique_RectifyItemTableAsync(BLL.CNCECHSSEService.Technique_RectifyItem[] rectifyItem) { + return base.Channel.DataInsertTechnique_RectifyItemTableAsync(rectifyItem); + } + + public string[] DataInsertTechnique_ExpertTable(BLL.CNCECHSSEService.Technique_Expert[] expert) { + return base.Channel.DataInsertTechnique_ExpertTable(expert); + } + + public System.Threading.Tasks.Task DataInsertTechnique_ExpertTableAsync(BLL.CNCECHSSEService.Technique_Expert[] expert) { + return base.Channel.DataInsertTechnique_ExpertTableAsync(expert); + } + + public string[] DataInsertSupervise_SuperviseCheckRectifyTable(BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify[] superviseCheckRectify) { + return base.Channel.DataInsertSupervise_SuperviseCheckRectifyTable(superviseCheckRectify); + } + + public System.Threading.Tasks.Task DataInsertSupervise_SuperviseCheckRectifyTableAsync(BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify[] superviseCheckRectify) { + return base.Channel.DataInsertSupervise_SuperviseCheckRectifyTableAsync(superviseCheckRectify); + } + + public string[] DataInsertHSSESystem_HSSEManageItemTable(BLL.CNCECHSSEService.HSSESystem_HSSEManageItem[] HSSEManageItem) { + return base.Channel.DataInsertHSSESystem_HSSEManageItemTable(HSSEManageItem); + } + + public System.Threading.Tasks.Task DataInsertHSSESystem_HSSEManageItemTableAsync(BLL.CNCECHSSEService.HSSESystem_HSSEManageItem[] HSSEManageItem) { + return base.Channel.DataInsertHSSESystem_HSSEManageItemTableAsync(HSSEManageItem); + } + + public string[] DataInsertSupervise_UpCheckReportTable(BLL.CNCECHSSEService.Supervise_UpCheckReport[] upCheckReport, BLL.CNCECHSSEService.Supervise_UpCheckReportItem[] upCheckReportItem, BLL.CNCECHSSEService.Supervise_UpCheckReportItem2[] upCheckReportItem2) { + return base.Channel.DataInsertSupervise_UpCheckReportTable(upCheckReport, upCheckReportItem, upCheckReportItem2); + } + + public System.Threading.Tasks.Task DataInsertSupervise_UpCheckReportTableAsync(BLL.CNCECHSSEService.Supervise_UpCheckReport[] upCheckReport, BLL.CNCECHSSEService.Supervise_UpCheckReportItem[] upCheckReportItem, BLL.CNCECHSSEService.Supervise_UpCheckReportItem2[] upCheckReportItem2) { + return base.Channel.DataInsertSupervise_UpCheckReportTableAsync(upCheckReport, upCheckReportItem, upCheckReportItem2); + } + + public string[] DataInsertSupervise_SubUnitReportItemItemTable(BLL.CNCECHSSEService.Supervise_SubUnitReportItem[] subUnitReportItem) { + return base.Channel.DataInsertSupervise_SubUnitReportItemItemTable(subUnitReportItem); + } + + public System.Threading.Tasks.Task DataInsertSupervise_SubUnitReportItemItemTableAsync(BLL.CNCECHSSEService.Supervise_SubUnitReportItem[] subUnitReportItem) { + return base.Channel.DataInsertSupervise_SubUnitReportItemItemTableAsync(subUnitReportItem); + } + + public string[] DataInsertCheck_CheckRectifyTable(BLL.CNCECHSSEService.Check_CheckRectify[] checkRectify) { + return base.Channel.DataInsertCheck_CheckRectifyTable(checkRectify); + } + + public System.Threading.Tasks.Task DataInsertCheck_CheckRectifyTableAsync(BLL.CNCECHSSEService.Check_CheckRectify[] checkRectify) { + return base.Channel.DataInsertCheck_CheckRectifyTableAsync(checkRectify); + } + + public string DataInsertHSSESystem_HSSEOrganizeTable(BLL.CNCECHSSEService.HSSESystem_HSSEOrganize hsseOrganize) { + return base.Channel.DataInsertHSSESystem_HSSEOrganizeTable(hsseOrganize); + } + + public System.Threading.Tasks.Task DataInsertHSSESystem_HSSEOrganizeTableAsync(BLL.CNCECHSSEService.HSSESystem_HSSEOrganize hsseOrganize) { + return base.Channel.DataInsertHSSESystem_HSSEOrganizeTableAsync(hsseOrganize); + } + + public string[] DataInsertSys_SubUnitLogListTable(BLL.CNCECHSSEService.Sys_SubUnitLog[] subUnitLogList) { + return base.Channel.DataInsertSys_SubUnitLogListTable(subUnitLogList); + } + + public System.Threading.Tasks.Task DataInsertSys_SubUnitLogListTableAsync(BLL.CNCECHSSEService.Sys_SubUnitLog[] subUnitLogList) { + return base.Channel.DataInsertSys_SubUnitLogListTableAsync(subUnitLogList); + } + + public BLL.CNCECHSSEService.Sys_Version[] GetSys_VersionToSUB() { + return base.Channel.GetSys_VersionToSUB(); + } + + public System.Threading.Tasks.Task GetSys_VersionToSUBAsync() { + return base.Channel.GetSys_VersionToSUBAsync(); + } + + public BLL.CNCECHSSEService.Base_Unit[] GetBase_UnitToSUB() { + return base.Channel.GetBase_UnitToSUB(); + } + + public System.Threading.Tasks.Task GetBase_UnitToSUBAsync() { + return base.Channel.GetBase_UnitToSUBAsync(); + } + + public BLL.CNCECHSSEService.Information_UrgeReport[] GetInformation_UrgeReportToSUB(string unitId) { + return base.Channel.GetInformation_UrgeReportToSUB(unitId); + } + + public System.Threading.Tasks.Task GetInformation_UrgeReportToSUBAsync(string unitId) { + return base.Channel.GetInformation_UrgeReportToSUBAsync(unitId); + } + + public BLL.CNCECHSSEService.Law_LawRegulationList[] GetLaw_LawRegulationListToSUB() { + return base.Channel.GetLaw_LawRegulationListToSUB(); + } + + public System.Threading.Tasks.Task GetLaw_LawRegulationListToSUBAsync() { + return base.Channel.GetLaw_LawRegulationListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Law_HSSEStandardsList[] GetLaw_HSSEStandardsListToSUB() { + return base.Channel.GetLaw_HSSEStandardsListToSUB(); + } + + public System.Threading.Tasks.Task GetLaw_HSSEStandardsListToSUBAsync() { + return base.Channel.GetLaw_HSSEStandardsListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Law_RulesRegulations[] GetLaw_RulesRegulationsToSUB() { + return base.Channel.GetLaw_RulesRegulationsToSUB(); + } + + public System.Threading.Tasks.Task GetLaw_RulesRegulationsToSUBAsync() { + return base.Channel.GetLaw_RulesRegulationsToSUBAsync(); + } + + public BLL.CNCECHSSEService.Law_ManageRule[] GetLaw_ManageRuleToSUB() { + return base.Channel.GetLaw_ManageRuleToSUB(); + } + + public System.Threading.Tasks.Task GetLaw_ManageRuleToSUBAsync() { + return base.Channel.GetLaw_ManageRuleToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_HAZOP[] GetTechnique_HAZOPToSUB() { + return base.Channel.GetTechnique_HAZOPToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_HAZOPToSUBAsync() { + return base.Channel.GetTechnique_HAZOPToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_Appraise[] GetTechnique_AppraiseToSUB() { + return base.Channel.GetTechnique_AppraiseToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_AppraiseToSUBAsync() { + return base.Channel.GetTechnique_AppraiseToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_Emergency[] GetTechnique_EmergencyToSUB() { + return base.Channel.GetTechnique_EmergencyToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_EmergencyToSUBAsync() { + return base.Channel.GetTechnique_EmergencyToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_SpecialScheme[] GetTechnique_SpecialSchemeToSUB() { + return base.Channel.GetTechnique_SpecialSchemeToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_SpecialSchemeToSUBAsync() { + return base.Channel.GetTechnique_SpecialSchemeToSUBAsync(); + } + + public BLL.CNCECHSSEService.Training_Training[] GetTraining_TrainingListToSUB() { + return base.Channel.GetTraining_TrainingListToSUB(); + } + + public System.Threading.Tasks.Task GetTraining_TrainingListToSUBAsync() { + return base.Channel.GetTraining_TrainingListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Training_TrainingItem[] GetTraining_TrainingItemListToSUB() { + return base.Channel.GetTraining_TrainingItemListToSUB(); + } + + public System.Threading.Tasks.Task GetTraining_TrainingItemListToSUBAsync() { + return base.Channel.GetTraining_TrainingItemListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Training_TrainTestDB[] GetTraining_TrainTestDBListToSUB() { + return base.Channel.GetTraining_TrainTestDBListToSUB(); + } + + public System.Threading.Tasks.Task GetTraining_TrainTestDBListToSUBAsync() { + return base.Channel.GetTraining_TrainTestDBListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Training_TrainTestDBItem[] GetTraining_TrainTestDBItemListToSUB() { + return base.Channel.GetTraining_TrainTestDBItemListToSUB(); + } + + public System.Threading.Tasks.Task GetTraining_TrainTestDBItemListToSUBAsync() { + return base.Channel.GetTraining_TrainTestDBItemListToSUBAsync(); + } + + public BLL.CNCECHSSEService.EduTrain_AccidentCase[] GetEduTrain_AccidentCaseListToSUB() { + return base.Channel.GetEduTrain_AccidentCaseListToSUB(); + } + + public System.Threading.Tasks.Task GetEduTrain_AccidentCaseListToSUBAsync() { + return base.Channel.GetEduTrain_AccidentCaseListToSUBAsync(); + } + + public BLL.CNCECHSSEService.EduTrain_AccidentCaseItem[] GetEduTrain_AccidentCaseItemListToSUB() { + return base.Channel.GetEduTrain_AccidentCaseItemListToSUB(); + } + + public System.Threading.Tasks.Task GetEduTrain_AccidentCaseItemListToSUBAsync() { + return base.Channel.GetEduTrain_AccidentCaseItemListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Training_Knowledge[] GetTraining_KnowledgeListToSUB() { + return base.Channel.GetTraining_KnowledgeListToSUB(); + } + + public System.Threading.Tasks.Task GetTraining_KnowledgeListToSUBAsync() { + return base.Channel.GetTraining_KnowledgeListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Training_KnowledgeItem[] GetTraining_KnowledgeItemListToSUB() { + return base.Channel.GetTraining_KnowledgeItemListToSUB(); + } + + public System.Threading.Tasks.Task GetTraining_KnowledgeItemListToSUBAsync() { + return base.Channel.GetTraining_KnowledgeItemListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_HazardListType[] GetTechnique_HazardListTypeListToSUB() { + return base.Channel.GetTechnique_HazardListTypeListToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_HazardListTypeListToSUBAsync() { + return base.Channel.GetTechnique_HazardListTypeListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_HazardList[] GetTechnique_HazardListListToSUB() { + return base.Channel.GetTechnique_HazardListListToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_HazardListListToSUBAsync() { + return base.Channel.GetTechnique_HazardListListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_Rectify[] GetTechnique_RectifyListToSUB() { + return base.Channel.GetTechnique_RectifyListToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_RectifyListToSUBAsync() { + return base.Channel.GetTechnique_RectifyListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_RectifyItem[] GetTechnique_RectifyItemListToSUB() { + return base.Channel.GetTechnique_RectifyItemListToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_RectifyItemListToSUBAsync() { + return base.Channel.GetTechnique_RectifyItemListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Technique_Expert[] GetTechnique_ExpertListToSUB() { + return base.Channel.GetTechnique_ExpertListToSUB(); + } + + public System.Threading.Tasks.Task GetTechnique_ExpertListToSUBAsync() { + return base.Channel.GetTechnique_ExpertListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify[] GetSupervise_SuperviseCheckRectifyListToSUB(string unitId) { + return base.Channel.GetSupervise_SuperviseCheckRectifyListToSUB(unitId); + } + + public System.Threading.Tasks.Task GetSupervise_SuperviseCheckRectifyListToSUBAsync(string unitId) { + return base.Channel.GetSupervise_SuperviseCheckRectifyListToSUBAsync(unitId); + } + + public BLL.CNCECHSSEService.Supervise_SubUnitReport[] GetSupervise_SubUnitReportListToSUB() { + return base.Channel.GetSupervise_SubUnitReportListToSUB(); + } + + public System.Threading.Tasks.Task GetSupervise_SubUnitReportListToSUBAsync() { + return base.Channel.GetSupervise_SubUnitReportListToSUBAsync(); + } + + public BLL.CNCECHSSEService.Supervise_SubUnitReportItem[] GetSupervise_SubUnitReportItemListToSUB(string unitId) { + return base.Channel.GetSupervise_SubUnitReportItemListToSUB(unitId); + } + + public System.Threading.Tasks.Task GetSupervise_SubUnitReportItemListToSUBAsync(string unitId) { + return base.Channel.GetSupervise_SubUnitReportItemListToSUBAsync(unitId); + } + + public BLL.CNCECHSSEService.Check_CheckRectify[] GetCheck_CheckRectifyListToSUB(string unitId) { + return base.Channel.GetCheck_CheckRectifyListToSUB(unitId); + } + + public System.Threading.Tasks.Task GetCheck_CheckRectifyListToSUBAsync(string unitId) { + return base.Channel.GetCheck_CheckRectifyListToSUBAsync(unitId); + } + + public BLL.CNCECHSSEService.Check_CheckInfo_Table8Item[] GetCheck_CheckInfo_Table8ItemListToSUB(string unitId) { + return base.Channel.GetCheck_CheckInfo_Table8ItemListToSUB(unitId); + } + + public System.Threading.Tasks.Task GetCheck_CheckInfo_Table8ItemListToSUBAsync(string unitId) { + return base.Channel.GetCheck_CheckInfo_Table8ItemListToSUBAsync(unitId); + } + + public string[] DataInsertLaw_LawRegulationListTable(BLL.CNCECHSSEService.Law_LawRegulationList[] lawRegulationList) { + return base.Channel.DataInsertLaw_LawRegulationListTable(lawRegulationList); + } + + public System.Threading.Tasks.Task DataInsertLaw_LawRegulationListTableAsync(BLL.CNCECHSSEService.Law_LawRegulationList[] lawRegulationList) { + return base.Channel.DataInsertLaw_LawRegulationListTableAsync(lawRegulationList); + } + + public string[] DataInsertLaw_HSSEStandardsListTable(BLL.CNCECHSSEService.Law_HSSEStandardsList[] hsseStandardsList) { + return base.Channel.DataInsertLaw_HSSEStandardsListTable(hsseStandardsList); + } + + public System.Threading.Tasks.Task DataInsertLaw_HSSEStandardsListTableAsync(BLL.CNCECHSSEService.Law_HSSEStandardsList[] hsseStandardsList) { + return base.Channel.DataInsertLaw_HSSEStandardsListTableAsync(hsseStandardsList); + } + + public string[] DataInsertLaw_RulesRegulationsTable(BLL.CNCECHSSEService.Law_RulesRegulations[] rulesRegulations) { + return base.Channel.DataInsertLaw_RulesRegulationsTable(rulesRegulations); + } + + public System.Threading.Tasks.Task DataInsertLaw_RulesRegulationsTableAsync(BLL.CNCECHSSEService.Law_RulesRegulations[] rulesRegulations) { + return base.Channel.DataInsertLaw_RulesRegulationsTableAsync(rulesRegulations); + } + + public string[] DataInsertLaw_ManageRuleTable(BLL.CNCECHSSEService.Law_ManageRule[] manageRule) { + return base.Channel.DataInsertLaw_ManageRuleTable(manageRule); + } + + public System.Threading.Tasks.Task DataInsertLaw_ManageRuleTableAsync(BLL.CNCECHSSEService.Law_ManageRule[] manageRule) { + return base.Channel.DataInsertLaw_ManageRuleTableAsync(manageRule); + } + + public string[] DataInsertTechnique_HAZOPTable(BLL.CNCECHSSEService.Technique_HAZOP[] hazop) { + return base.Channel.DataInsertTechnique_HAZOPTable(hazop); + } + + public System.Threading.Tasks.Task DataInsertTechnique_HAZOPTableAsync(BLL.CNCECHSSEService.Technique_HAZOP[] hazop) { + return base.Channel.DataInsertTechnique_HAZOPTableAsync(hazop); + } + + public string[] DataInsertTechnique_AppraiseTable(BLL.CNCECHSSEService.Technique_Appraise[] appraise) { + return base.Channel.DataInsertTechnique_AppraiseTable(appraise); + } + + public System.Threading.Tasks.Task DataInsertTechnique_AppraiseTableAsync(BLL.CNCECHSSEService.Technique_Appraise[] appraise) { + return base.Channel.DataInsertTechnique_AppraiseTableAsync(appraise); + } + + public string[] DataInsertTechnique_EmergencyTable(BLL.CNCECHSSEService.Technique_Emergency[] emergency) { + return base.Channel.DataInsertTechnique_EmergencyTable(emergency); + } + + public System.Threading.Tasks.Task DataInsertTechnique_EmergencyTableAsync(BLL.CNCECHSSEService.Technique_Emergency[] emergency) { + return base.Channel.DataInsertTechnique_EmergencyTableAsync(emergency); + } + + public string[] DataInsertTechnique_SpecialSchemeTable(BLL.CNCECHSSEService.Technique_SpecialScheme[] specialScheme) { + return base.Channel.DataInsertTechnique_SpecialSchemeTable(specialScheme); + } + + public System.Threading.Tasks.Task DataInsertTechnique_SpecialSchemeTableAsync(BLL.CNCECHSSEService.Technique_SpecialScheme[] specialScheme) { + return base.Channel.DataInsertTechnique_SpecialSchemeTableAsync(specialScheme); + } + + public string[] DataInsertInformation_AccidentCauseReportTable(BLL.CNCECHSSEService.Information_AccidentCauseReport[] accidentCauseReportList, BLL.CNCECHSSEService.Information_AccidentCauseReportItem[] accidentCauseReportItemList) { + return base.Channel.DataInsertInformation_AccidentCauseReportTable(accidentCauseReportList, accidentCauseReportItemList); + } + + public System.Threading.Tasks.Task DataInsertInformation_AccidentCauseReportTableAsync(BLL.CNCECHSSEService.Information_AccidentCauseReport[] accidentCauseReportList, BLL.CNCECHSSEService.Information_AccidentCauseReportItem[] accidentCauseReportItemList) { + return base.Channel.DataInsertInformation_AccidentCauseReportTableAsync(accidentCauseReportList, accidentCauseReportItemList); + } + + public string[] DataInsertInformation_DrillConductedQuarterlyReportTable(BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReport[] drillConductedQuarterlyReportList, BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReportItem[] drillConductedQuarterlyReportItemList) { + return base.Channel.DataInsertInformation_DrillConductedQuarterlyReportTable(drillConductedQuarterlyReportList, drillConductedQuarterlyReportItemList); + } + + public System.Threading.Tasks.Task DataInsertInformation_DrillConductedQuarterlyReportTableAsync(BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReport[] drillConductedQuarterlyReportList, BLL.CNCECHSSEService.Information_DrillConductedQuarterlyReportItem[] drillConductedQuarterlyReportItemList) { + return base.Channel.DataInsertInformation_DrillConductedQuarterlyReportTableAsync(drillConductedQuarterlyReportList, drillConductedQuarterlyReportItemList); + } + + public string[] DataInsertInformation_DrillPlanHalfYearReportTable(BLL.CNCECHSSEService.Information_DrillPlanHalfYearReport[] drillPlanHalfYearReportList, BLL.CNCECHSSEService.Information_DrillPlanHalfYearReportItem[] drillPlanHalfYearReportItemList) { + return base.Channel.DataInsertInformation_DrillPlanHalfYearReportTable(drillPlanHalfYearReportList, drillPlanHalfYearReportItemList); + } + + public System.Threading.Tasks.Task DataInsertInformation_DrillPlanHalfYearReportTableAsync(BLL.CNCECHSSEService.Information_DrillPlanHalfYearReport[] drillPlanHalfYearReportList, BLL.CNCECHSSEService.Information_DrillPlanHalfYearReportItem[] drillPlanHalfYearReportItemList) { + return base.Channel.DataInsertInformation_DrillPlanHalfYearReportTableAsync(drillPlanHalfYearReportList, drillPlanHalfYearReportItemList); + } + + public string[] DataInsertInformation_MillionsMonthlyReportTable(BLL.CNCECHSSEService.Information_MillionsMonthlyReport[] millionsMonthlyReportList, BLL.CNCECHSSEService.Information_MillionsMonthlyReportItem[] millionsMonthlyReportItemList) { + return base.Channel.DataInsertInformation_MillionsMonthlyReportTable(millionsMonthlyReportList, millionsMonthlyReportItemList); + } + + public System.Threading.Tasks.Task DataInsertInformation_MillionsMonthlyReportTableAsync(BLL.CNCECHSSEService.Information_MillionsMonthlyReport[] millionsMonthlyReportList, BLL.CNCECHSSEService.Information_MillionsMonthlyReportItem[] millionsMonthlyReportItemList) { + return base.Channel.DataInsertInformation_MillionsMonthlyReportTableAsync(millionsMonthlyReportList, millionsMonthlyReportItemList); + } + + public string[] DataInsertInformation_SafetyQuarterlyReportTable(BLL.CNCECHSSEService.Information_SafetyQuarterlyReport[] safetyQuarterlyReportList) { + return base.Channel.DataInsertInformation_SafetyQuarterlyReportTable(safetyQuarterlyReportList); + } + + public System.Threading.Tasks.Task DataInsertInformation_SafetyQuarterlyReportTableAsync(BLL.CNCECHSSEService.Information_SafetyQuarterlyReport[] safetyQuarterlyReportList) { + return base.Channel.DataInsertInformation_SafetyQuarterlyReportTableAsync(safetyQuarterlyReportList); + } + } +} diff --git a/SGGL/BLL/Service References/CNCECHSSEService/Reference.svcmap b/SGGL/BLL/Service References/CNCECHSSEService/Reference.svcmap new file mode 100644 index 00000000..ce8df991 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/Reference.svcmap @@ -0,0 +1,37 @@ + + + + false + true + true + + false + false + false + + + true + Auto + true + true + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/configuration.svcinfo b/SGGL/BLL/Service References/CNCECHSSEService/configuration.svcinfo new file mode 100644 index 00000000..94b71eb4 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/configuration.svcinfo @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/CNCECHSSEService/configuration91.svcinfo b/SGGL/BLL/Service References/CNCECHSSEService/configuration91.svcinfo new file mode 100644 index 00000000..e7794eb6 --- /dev/null +++ b/SGGL/BLL/Service References/CNCECHSSEService/configuration91.svcinfo @@ -0,0 +1,216 @@ + + + + + + + HSSEServiceEndpoint + + + + + + + + + + + + + + + + + + False + + + StrongWildcard + + + + + + + + + Text + + + + + + System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + System.ServiceModel.Configuration.StandardBindingOptionalReliableSessionElement + + + True + + + 00:10:00 + + + False + + + System.Text.UTF8Encoding + + + + + + + + + System.ServiceModel.Configuration.WSHttpSecurityElement + + + None + + + System.ServiceModel.Configuration.WSHttpTransportSecurityElement + + + Windows + + + None + + + System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement + + + Never + + + TransportSelected + + + (集合) + + + + + + System.ServiceModel.Configuration.NonDualMessageSecurityOverHttpElement + + + Windows + + + True + + + Default + + + True + + + + + + + + + http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc + + + + + + wsHttpBinding + + + HSSEServiceEndpoint + + + CNCECHSSEService.HSSEService + + + System.ServiceModel.Configuration.AddressHeaderCollectionElement + + + <Header /> + + + System.ServiceModel.Configuration.IdentityElement + + + System.ServiceModel.Configuration.UserPrincipalNameElement + + + + + + System.ServiceModel.Configuration.ServicePrincipalNameElement + + + + + + System.ServiceModel.Configuration.DnsElement + + + + + + System.ServiceModel.Configuration.RsaElement + + + + + + System.ServiceModel.Configuration.CertificateElement + + + + + + System.ServiceModel.Configuration.CertificateReferenceElement + + + My + + + LocalMachine + + + FindBySubjectDistinguishedName + + + + + + False + + + HSSEServiceEndpoint + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/MCSService/Reference.cs b/SGGL/BLL/Service References/MCSService/Reference.cs new file mode 100644 index 00000000..e1b2dca2 --- /dev/null +++ b/SGGL/BLL/Service References/MCSService/Reference.cs @@ -0,0 +1,271 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace BLL.MCSService { + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ServiceModel.ServiceContractAttribute(ConfigurationName="MCSService.WebService1Soap")] + public interface WebService1Soap { + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getVendorUserNameAndPwd", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getVendorUserNameAndPwd(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getVendorUserNameAndPwd", ReplyAction="*")] + System.Threading.Tasks.Task getVendorUserNameAndPwdAsync(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPoDetails", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getPoDetails(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPoDetails", ReplyAction="*")] + System.Threading.Tasks.Task getPoDetailsAsync(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeShelvesNo", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string writeShelvesNo(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeShelvesNo", ReplyAction="*")] + System.Threading.Tasks.Task writeShelvesNoAsync(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/overIssue", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string overIssue(string isguid, string username); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/overIssue", ReplyAction="*")] + System.Threading.Tasks.Task overIssueAsync(string isguid, string username); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeDeliveryDetails", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string writeDeliveryDetails(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeDeliveryDetails", ReplyAction="*")] + System.Threading.Tasks.Task writeDeliveryDetailsAsync(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getIssueDetails", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getIssueDetails(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getIssueDetails", ReplyAction="*")] + System.Threading.Tasks.Task getIssueDetailsAsync(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeMakeInventoryDetails", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string writeMakeInventoryDetails(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeMakeInventoryDetails", ReplyAction="*")] + System.Threading.Tasks.Task writeMakeInventoryDetailsAsync(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeIssueDetails", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string writeIssueDetails(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeIssueDetails", ReplyAction="*")] + System.Threading.Tasks.Task writeIssueDetailsAsync(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeMoveInventoryDetails", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string writeMoveInventoryDetails(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeMoveInventoryDetails", ReplyAction="*")] + System.Threading.Tasks.Task writeMoveInventoryDetailsAsync(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPartNoInfo", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getPartNoInfo(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPartNoInfo", ReplyAction="*")] + System.Threading.Tasks.Task getPartNoInfoAsync(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getShelvesNo", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getShelvesNo(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getShelvesNo", ReplyAction="*")] + System.Threading.Tasks.Task getShelvesNoAsync(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getSubcontractor", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getSubcontractor(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getSubcontractor", ReplyAction="*")] + System.Threading.Tasks.Task getSubcontractorAsync(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getVendor", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getVendor(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getVendor", ReplyAction="*")] + System.Threading.Tasks.Task getVendorAsync(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writePackingLists", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string writePackingLists(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writePackingLists", ReplyAction="*")] + System.Threading.Tasks.Task writePackingListsAsync(string JsonVoiceArray, long ProjectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getReqDetails", ReplyAction="*")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + string getReqDetails(long projectID); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getReqDetails", ReplyAction="*")] + System.Threading.Tasks.Task getReqDetailsAsync(long projectID); + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public interface WebService1SoapChannel : BLL.MCSService.WebService1Soap, System.ServiceModel.IClientChannel { + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public partial class WebService1SoapClient : System.ServiceModel.ClientBase, BLL.MCSService.WebService1Soap { + + public WebService1SoapClient() { + } + + public WebService1SoapClient(string endpointConfigurationName) : + base(endpointConfigurationName) { + } + + public WebService1SoapClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public WebService1SoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public WebService1SoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) { + } + + public string getVendorUserNameAndPwd() { + return base.Channel.getVendorUserNameAndPwd(); + } + + public System.Threading.Tasks.Task getVendorUserNameAndPwdAsync() { + return base.Channel.getVendorUserNameAndPwdAsync(); + } + + public string getPoDetails(long projectID) { + return base.Channel.getPoDetails(projectID); + } + + public System.Threading.Tasks.Task getPoDetailsAsync(long projectID) { + return base.Channel.getPoDetailsAsync(projectID); + } + + public string writeShelvesNo(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeShelvesNo(JsonVoiceArray, ProjectID); + } + + public System.Threading.Tasks.Task writeShelvesNoAsync(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeShelvesNoAsync(JsonVoiceArray, ProjectID); + } + + public string overIssue(string isguid, string username) { + return base.Channel.overIssue(isguid, username); + } + + public System.Threading.Tasks.Task overIssueAsync(string isguid, string username) { + return base.Channel.overIssueAsync(isguid, username); + } + + public string writeDeliveryDetails(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeDeliveryDetails(JsonVoiceArray, ProjectID); + } + + public System.Threading.Tasks.Task writeDeliveryDetailsAsync(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeDeliveryDetailsAsync(JsonVoiceArray, ProjectID); + } + + public string getIssueDetails(long projectID) { + return base.Channel.getIssueDetails(projectID); + } + + public System.Threading.Tasks.Task getIssueDetailsAsync(long projectID) { + return base.Channel.getIssueDetailsAsync(projectID); + } + + public string writeMakeInventoryDetails(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeMakeInventoryDetails(JsonVoiceArray, ProjectID); + } + + public System.Threading.Tasks.Task writeMakeInventoryDetailsAsync(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeMakeInventoryDetailsAsync(JsonVoiceArray, ProjectID); + } + + public string writeIssueDetails(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeIssueDetails(JsonVoiceArray, ProjectID); + } + + public System.Threading.Tasks.Task writeIssueDetailsAsync(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeIssueDetailsAsync(JsonVoiceArray, ProjectID); + } + + public string writeMoveInventoryDetails(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeMoveInventoryDetails(JsonVoiceArray, ProjectID); + } + + public System.Threading.Tasks.Task writeMoveInventoryDetailsAsync(string JsonVoiceArray, long ProjectID) { + return base.Channel.writeMoveInventoryDetailsAsync(JsonVoiceArray, ProjectID); + } + + public string getPartNoInfo(long projectID) { + return base.Channel.getPartNoInfo(projectID); + } + + public System.Threading.Tasks.Task getPartNoInfoAsync(long projectID) { + return base.Channel.getPartNoInfoAsync(projectID); + } + + public string getShelvesNo(long projectID) { + return base.Channel.getShelvesNo(projectID); + } + + public System.Threading.Tasks.Task getShelvesNoAsync(long projectID) { + return base.Channel.getShelvesNoAsync(projectID); + } + + public string getSubcontractor(long projectID) { + return base.Channel.getSubcontractor(projectID); + } + + public System.Threading.Tasks.Task getSubcontractorAsync(long projectID) { + return base.Channel.getSubcontractorAsync(projectID); + } + + public string getVendor() { + return base.Channel.getVendor(); + } + + public System.Threading.Tasks.Task getVendorAsync() { + return base.Channel.getVendorAsync(); + } + + public string writePackingLists(string JsonVoiceArray, long ProjectID) { + return base.Channel.writePackingLists(JsonVoiceArray, ProjectID); + } + + public System.Threading.Tasks.Task writePackingListsAsync(string JsonVoiceArray, long ProjectID) { + return base.Channel.writePackingListsAsync(JsonVoiceArray, ProjectID); + } + + public string getReqDetails(long projectID) { + return base.Channel.getReqDetails(projectID); + } + + public System.Threading.Tasks.Task getReqDetailsAsync(long projectID) { + return base.Channel.getReqDetailsAsync(projectID); + } + } +} diff --git a/SGGL/BLL/Service References/MCSService/Reference.svcmap b/SGGL/BLL/Service References/MCSService/Reference.svcmap new file mode 100644 index 00000000..a956ae6b --- /dev/null +++ b/SGGL/BLL/Service References/MCSService/Reference.svcmap @@ -0,0 +1,32 @@ + + + + false + true + true + + false + false + false + + + true + Auto + true + true + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/MCSService/WebService1.disco b/SGGL/BLL/Service References/MCSService/WebService1.disco new file mode 100644 index 00000000..ace8e1c1 --- /dev/null +++ b/SGGL/BLL/Service References/MCSService/WebService1.disco @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/MCSService/WebService1.wsdl b/SGGL/BLL/Service References/MCSService/WebService1.wsdl new file mode 100644 index 00000000..86737fd5 --- /dev/null +++ b/SGGL/BLL/Service References/MCSService/WebService1.wsdl @@ -0,0 +1,1245 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/MCSService/configuration.svcinfo b/SGGL/BLL/Service References/MCSService/configuration.svcinfo new file mode 100644 index 00000000..18934f29 --- /dev/null +++ b/SGGL/BLL/Service References/MCSService/configuration.svcinfo @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/Service References/MCSService/configuration91.svcinfo b/SGGL/BLL/Service References/MCSService/configuration91.svcinfo new file mode 100644 index 00000000..27c45c76 --- /dev/null +++ b/SGGL/BLL/Service References/MCSService/configuration91.svcinfo @@ -0,0 +1,437 @@ + + + + + + + WebService1Soap + + + + + + + + + + + + + + + + + + + + + StrongWildcard + + + + + + 65536 + + + + + + + + + System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + System.Text.UTF8Encoding + + + Buffered + + + + + + Text + + + System.ServiceModel.Configuration.BasicHttpSecurityElement + + + None + + + System.ServiceModel.Configuration.HttpTransportSecurityElement + + + None + + + None + + + System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement + + + Never + + + TransportSelected + + + (集合) + + + + + + System.ServiceModel.Configuration.BasicHttpMessageSecurityElement + + + UserName + + + Default + + + + + + + WebService1Soap12 + + + + + + + + + + + + + + + System.ServiceModel.Configuration.TextMessageEncodingElement + + + 64 + + + 16 + + + Soap12 + + + System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + System.Text.UTF8Encoding + + + System.ServiceModel.Configuration.HttpTransportElement + + + False + + + 524288 + + + 65536 + + + False + + + 00:00:00 + + + Anonymous + + + False + + + True + + + StrongWildcard + + + True + + + 65536 + + + 0 + + + System.ServiceModel.Configuration.HttpMessageHandlerFactoryElement + + + (集合) + + + + + + + + + Anonymous + + + + + + Buffered + + + False + + + True + + + System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement + + + Never + + + TransportSelected + + + (集合) + + + System.ServiceModel.Configuration.WebSocketTransportSettingsElement + + + Never + + + False + + + 00:00:00 + + + + + + False + + + 0 + + + + + + + + + http://mattest.cwcec.com/LocWebServices/WebService1.asmx + + + + + + basicHttpBinding + + + WebService1Soap + + + MCSService.WebService1Soap + + + System.ServiceModel.Configuration.AddressHeaderCollectionElement + + + <Header /> + + + System.ServiceModel.Configuration.IdentityElement + + + System.ServiceModel.Configuration.UserPrincipalNameElement + + + + + + System.ServiceModel.Configuration.ServicePrincipalNameElement + + + + + + System.ServiceModel.Configuration.DnsElement + + + + + + System.ServiceModel.Configuration.RsaElement + + + + + + System.ServiceModel.Configuration.CertificateElement + + + + + + System.ServiceModel.Configuration.CertificateReferenceElement + + + My + + + LocalMachine + + + FindBySubjectDistinguishedName + + + + + + False + + + WebService1Soap + + + + + + + + + + + + + http://mattest.cwcec.com/LocWebServices/WebService1.asmx + + + + + + customBinding + + + WebService1Soap12 + + + MCSService.WebService1Soap + + + System.ServiceModel.Configuration.AddressHeaderCollectionElement + + + <Header /> + + + System.ServiceModel.Configuration.IdentityElement + + + System.ServiceModel.Configuration.UserPrincipalNameElement + + + + + + System.ServiceModel.Configuration.ServicePrincipalNameElement + + + + + + System.ServiceModel.Configuration.DnsElement + + + + + + System.ServiceModel.Configuration.RsaElement + + + + + + System.ServiceModel.Configuration.CertificateElement + + + + + + System.ServiceModel.Configuration.CertificateReferenceElement + + + My + + + LocalMachine + + + FindBySubjectDistinguishedName + + + + + + False + + + WebService1Soap12 + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/BLL/WebService/CNCECHSSEWebService.cs b/SGGL/BLL/WebService/CNCECHSSEWebService.cs new file mode 100644 index 00000000..ba1e8bda --- /dev/null +++ b/SGGL/BLL/WebService/CNCECHSSEWebService.cs @@ -0,0 +1,18 @@ +namespace BLL +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; + using System.Threading.Tasks; + + public static class CNCECHSSEWebService + { + public static void getLaw() + { + CNCECHSSEService.HSSEServiceClient hsseC = new CNCECHSSEService.HSSEServiceClient(); + var getlaw = hsseC.GetLaw_LawRegulationListToSUB(); + // var getlaw= hsseC.GetLaw_LawRegulationListToSUBAsync(); + } + } +} diff --git a/SGGL/BLL/WebService/MCSWebService.cs b/SGGL/BLL/WebService/MCSWebService.cs new file mode 100644 index 00000000..b5b0c1b2 --- /dev/null +++ b/SGGL/BLL/WebService/MCSWebService.cs @@ -0,0 +1,54 @@ +namespace BLL +{ + using Newtonsoft.Json.Linq; + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; + using System.Threading.Tasks; + + public static class MCSWebService + { + + public static void getPoDetails(long projectId) + { + MCSService.WebService1SoapClient mscsC = new MCSService.WebService1SoapClient(); + var details = mscsC.getPoDetails(3919); + if (!string.IsNullOrEmpty(details)) + { + JArray arr = JArray.Parse(details); + foreach (var item in arr) + { + string a0 = item["PPGUID"].ToString(); + string a1 = item["材料用途"].ToString(); + string a2= item["合同号"].ToString(); + string a3= item["专业"].ToString(); + string a4 = item["PSGUID"].ToString(); + string a5 = item["RDGUID"].ToString(); + string a6 = item["材料编码"].ToString(); + string a7 = item["位号"].ToString(); + string a8 = item["采购量"].ToString(); + string a9 = item["备注"].ToString(); + string a10 = item["装置号"].ToString(); + string a11 = item["主项号"].ToString(); + string a12= item["企业中文名称"].ToString(); + } + } + } + + public static void getIssueDetails(long projectId) + { + MCSService.WebService1SoapClient mscsC = new MCSService.WebService1SoapClient(); + var details = mscsC.getIssueDetails(3919); + if (!string.IsNullOrEmpty(details)) + { + JArray arr = JArray.Parse(details); + foreach (var item in arr) + { + string a = item[""].ToString(); + } + } + // var getlaw= hsseC.GetLaw_LawRegulationListToSUBAsync(); + } + } +} diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 2fc4bb0b..8a82f38c 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1223,6 +1223,8 @@ + + @@ -12486,6 +12488,20 @@ WorkPlanEdit.aspx + + PersonMeeting.aspx + ASPXCodeBehind + + + PersonMeeting.aspx + + + PersonMeetingEdit.aspx + ASPXCodeBehind + + + PersonMeetingEdit.aspx + FileSearch.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/Login.aspx.cs b/SGGL/FineUIPro.Web/Login.aspx.cs index 6ef49a7b..eb4a37ea 100644 --- a/SGGL/FineUIPro.Web/Login.aspx.cs +++ b/SGGL/FineUIPro.Web/Login.aspx.cs @@ -64,6 +64,7 @@ { if (!IsPostBack) { + //BLL.MCSWebService.getPoDetails(3919); string userdata = Request.Params["basedata"]; if (!string.IsNullOrEmpty(userdata)) { diff --git a/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx b/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx new file mode 100644 index 00000000..51863578 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx @@ -0,0 +1,95 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonMeeting.aspx.cs" ValidateRequest="false" + Inherits="FineUIPro.Web.Personal.PersonMeeting" %> + + + + + + 视频会议 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.cs b/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.cs new file mode 100644 index 00000000..2af4fd18 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.cs @@ -0,0 +1,125 @@ +using BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; + +namespace FineUIPro.Web.Personal +{ + public partial class PersonMeeting : PageBase + { + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + Funs.DropDownPageSize(ddlPageSize); + ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); + // 绑定表格 + BindGrid(); + btnNew.OnClientClick = Window1.GetShowReference("PersonMeetingEdit.aspx") + "return false;"; + } + } + /// + /// 绑定数据 + /// + public void BindGrid() + { + DataTable tb = BindData(); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + + protected DataTable BindData() + { + string strSql = @"SELECT MeetingId,CompileManId,MeetingDate,MeetingTitle,AttendeeManIds,ConferenceLink,Remark + FROM dbo.Person_Meeting + where 1=1 "; + List listStr = new List(); + strSql += " AND ( AttendeeManIds like @UserId or CompileManId like @UserId or CompileManId= '"+Const.sysglyId+ "' or CompileManId= '" + Const.hfnbdId + "' or CompileManId is null)"; + listStr.Add(new SqlParameter("@UserId", "%" + this.CurrUser.UserId + "%")); + if (!string.IsNullOrEmpty(this.txtMeetingTitle.Text.Trim())) + { + strSql += " AND MeetingTitle like @MeetingTitle"; + listStr.Add(new SqlParameter("@MeetingTitle", "%" + this.txtMeetingTitle.Text.Trim() + "%")); + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + return tb; + } + + protected void btnMenuModify_Click(object sender, EventArgs e) + { + EditData(); + } + + /// + /// 删除 + /// + /// + /// + protected void btnMenuDel_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + Person_MeetingService.DeletePerson_MeetingById(rowID); + } + BindGrid(); + ShowNotify("删除数据成功!", MessageBoxIcon.Success); + } + } + + /// + /// 编辑数据方法 + /// + private void EditData() + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning); + return; + } + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("PersonMeetingEdit.aspx?MeetingId={0}", Grid1.SelectedRowID, "查看 - "))); + } + + + /// + /// + /// + /// + /// + protected void btnSearch_Click(object sender, EventArgs e) + { + BindGrid(); + } + + protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e) + { + EditData(); + } + + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + BindGrid(); + } + + /// + /// + /// + /// + /// + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.designer.cs b/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.designer.cs new file mode 100644 index 00000000..b9f7c69d --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/PersonMeeting.aspx.designer.cs @@ -0,0 +1,159 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Personal { + + + public partial class PersonMeeting { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// txtMeetingTitle 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtMeetingTitle; + + /// + /// btnSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSearch; + + /// + /// btnNew 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnNew; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + + /// + /// ToolbarSeparator1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Menu1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuModify 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuModify; + + /// + /// btnMenuDel 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuDel; + } +} diff --git a/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx b/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx new file mode 100644 index 00000000..390196e4 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx @@ -0,0 +1,62 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.Personal.PersonMeetingEdit" %> + + + + + + 设计专业 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.cs b/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.cs new file mode 100644 index 00000000..9ce0c223 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.cs @@ -0,0 +1,100 @@ +using BLL; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.Personal +{ + public partial class PersonMeetingEdit : PageBase + { + #region 定义项 + /// + /// 主键 + /// + public string MeetingId + { + get + { + return (string)ViewState["MeetingId"]; + } + set + { + ViewState["MeetingId"] = value; + } + } + #endregion + + /// + /// + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.btnClose.OnClientClick = ActiveWindow.GetHideReference(); + UserService.InitUserDropDownList(this.drpAttendeeManIds, this.CurrUser.LoginProjectId, true); + UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true); + this.MeetingId = Request.Params["MeetingId"]; + if (!string.IsNullOrEmpty(this.MeetingId)) + { + var getMeet = BLL.Person_MeetingService.GetPerson_MeetingById(this.MeetingId); + if (getMeet != null) + { + this.txtMeetingTitle.Text = getMeet.MeetingTitle; + if (!string.IsNullOrEmpty(getMeet.AttendeeManIds)) + { + this.drpAttendeeManIds.SelectedValueArray = getMeet.AttendeeManIds.Split(','); + } + this.txtMeetingDate.Text = string.Format("{0:yyyy-MM-dd HH:mm:ss}", getMeet.MeetingDate); + this.drpCompileMan.SelectedValue = getMeet.CompileManId; + this.txtConferenceLink.Text = getMeet.ConferenceLink; + } + }else + { + this.txtMeetingDate.Text = string.Format("{0:yyyy-MM-dd HH:mm:ss}", DateTime.Now); + this.drpCompileMan.SelectedValue = this.CurrUser.UserId; + } + } + } + + protected void btnSave_Click(object sender, EventArgs e) + { + Model.Person_Meeting newMeet = new Model.Person_Meeting() + { + CompileManId = (this.drpCompileMan.SelectedValue ==Const._Null ? null : this.drpCompileMan.SelectedValue), + MeetingDate = Funs.GetNewDateTime(this.txtMeetingDate.Text), + MeetingTitle = this.txtMeetingTitle.Text.Trim(), + ConferenceLink =this.txtConferenceLink.Text.Trim(), + }; + if (this.drpAttendeeManIds.SelectedValue != BLL.Const._Null) + { + newMeet.AttendeeManIds = Funs.GetStringByArray(this.drpAttendeeManIds.SelectedValueArray); + } + + if (!string.IsNullOrEmpty(this.MeetingId)) + { + newMeet.MeetingId = this.MeetingId; + BLL.Person_MeetingService.UpdatePerson_Meeting(newMeet); + } + else + { + newMeet.MeetingId = SQLHelper.GetNewID(); + BLL.Person_MeetingService.AddPerson_Meeting(newMeet); + } + + ShowNotify("保存成功!", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + + protected void drpAttendeeManIds_SelectedIndexChanged(object sender, EventArgs e) + { + this.drpAttendeeManIds.SelectedValueArray = Funs.RemoveDropDownListNull(this.drpAttendeeManIds.SelectedValueArray); + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.designer.cs new file mode 100644 index 00000000..da6ecfc2 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/PersonMeetingEdit.aspx.designer.cs @@ -0,0 +1,123 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Personal { + + + public partial class PersonMeetingEdit { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// txtMeetingTitle 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtMeetingTitle; + + /// + /// drpAttendeeManIds 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList drpAttendeeManIds; + + /// + /// txtConferenceLink 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtConferenceLink; + + /// + /// txtMeetingDate 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtMeetingDate; + + /// + /// drpCompileMan 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList drpCompileMan; + + /// + /// Toolbar1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// hdCheckerId 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdCheckerId; + + /// + /// btnSave 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSave; + + /// + /// btnClose 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnClose; + } +} diff --git a/SGGL/FineUIPro.Web/common/Menu_JDGL.xml b/SGGL/FineUIPro.Web/common/Menu_JDGL.xml index f9bb63a0..c8033189 100644 --- a/SGGL/FineUIPro.Web/common/Menu_JDGL.xml +++ b/SGGL/FineUIPro.Web/common/Menu_JDGL.xml @@ -6,5 +6,14 @@ - + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/common/Menu_Personal.xml b/SGGL/FineUIPro.Web/common/Menu_Personal.xml index 2854ffd9..ac8364da 100644 --- a/SGGL/FineUIPro.Web/common/Menu_Personal.xml +++ b/SGGL/FineUIPro.Web/common/Menu_Personal.xml @@ -6,4 +6,5 @@ + \ No newline at end of file diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index b497a238..923acf18 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -1271,6 +1271,9 @@ namespace Model partial void InsertPerson_DutyTemplate(Person_DutyTemplate instance); partial void UpdatePerson_DutyTemplate(Person_DutyTemplate instance); partial void DeletePerson_DutyTemplate(Person_DutyTemplate instance); + partial void InsertPerson_Meeting(Person_Meeting instance); + partial void UpdatePerson_Meeting(Person_Meeting instance); + partial void DeletePerson_Meeting(Person_Meeting instance); partial void InsertPerson_PersonPlan(Person_PersonPlan instance); partial void UpdatePerson_PersonPlan(Person_PersonPlan instance); partial void DeletePerson_PersonPlan(Person_PersonPlan instance); @@ -5364,6 +5367,14 @@ namespace Model } } + public System.Data.Linq.Table Person_Meeting + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table Person_PersonPlan { get @@ -71204,7 +71215,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QualifiedProjectCode", DbType="NVarChar(500)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QualifiedProjectCode", DbType="NVarChar(50)")] public string QualifiedProjectCode { get @@ -201937,6 +201948,253 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Person_Meeting")] + public partial class Person_Meeting : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _MeetingId; + + private string _CompileManId; + + private System.Nullable _MeetingDate; + + private string _MeetingTitle; + + private string _AttendeeManIds; + + private string _ConferenceLink; + + private string _Remark; + + private EntityRef _Sys_User; + + #region 可扩展性方法定义 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnMeetingIdChanging(string value); + partial void OnMeetingIdChanged(); + partial void OnCompileManIdChanging(string value); + partial void OnCompileManIdChanged(); + partial void OnMeetingDateChanging(System.Nullable value); + partial void OnMeetingDateChanged(); + partial void OnMeetingTitleChanging(string value); + partial void OnMeetingTitleChanged(); + partial void OnAttendeeManIdsChanging(string value); + partial void OnAttendeeManIdsChanged(); + partial void OnConferenceLinkChanging(string value); + partial void OnConferenceLinkChanged(); + partial void OnRemarkChanging(string value); + partial void OnRemarkChanged(); + #endregion + + public Person_Meeting() + { + this._Sys_User = default(EntityRef); + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MeetingId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string MeetingId + { + get + { + return this._MeetingId; + } + set + { + if ((this._MeetingId != value)) + { + this.OnMeetingIdChanging(value); + this.SendPropertyChanging(); + this._MeetingId = value; + this.SendPropertyChanged("MeetingId"); + this.OnMeetingIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileManId", DbType="NVarChar(50)")] + public string CompileManId + { + get + { + return this._CompileManId; + } + set + { + if ((this._CompileManId != value)) + { + if (this._Sys_User.HasLoadedOrAssignedValue) + { + throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); + } + this.OnCompileManIdChanging(value); + this.SendPropertyChanging(); + this._CompileManId = value; + this.SendPropertyChanged("CompileManId"); + this.OnCompileManIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MeetingDate", DbType="DateTime")] + public System.Nullable MeetingDate + { + get + { + return this._MeetingDate; + } + set + { + if ((this._MeetingDate != value)) + { + this.OnMeetingDateChanging(value); + this.SendPropertyChanging(); + this._MeetingDate = value; + this.SendPropertyChanged("MeetingDate"); + this.OnMeetingDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MeetingTitle", DbType="NVarChar(500)")] + public string MeetingTitle + { + get + { + return this._MeetingTitle; + } + set + { + if ((this._MeetingTitle != value)) + { + this.OnMeetingTitleChanging(value); + this.SendPropertyChanging(); + this._MeetingTitle = value; + this.SendPropertyChanged("MeetingTitle"); + this.OnMeetingTitleChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttendeeManIds", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string AttendeeManIds + { + get + { + return this._AttendeeManIds; + } + set + { + if ((this._AttendeeManIds != value)) + { + this.OnAttendeeManIdsChanging(value); + this.SendPropertyChanging(); + this._AttendeeManIds = value; + this.SendPropertyChanged("AttendeeManIds"); + this.OnAttendeeManIdsChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ConferenceLink", DbType="NVarChar(2000)")] + public string ConferenceLink + { + get + { + return this._ConferenceLink; + } + set + { + if ((this._ConferenceLink != value)) + { + this.OnConferenceLinkChanging(value); + this.SendPropertyChanging(); + this._ConferenceLink = value; + this.SendPropertyChanged("ConferenceLink"); + this.OnConferenceLinkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string Remark + { + get + { + return this._Remark; + } + set + { + if ((this._Remark != value)) + { + this.OnRemarkChanging(value); + this.SendPropertyChanging(); + this._Remark = value; + this.SendPropertyChanged("Remark"); + this.OnRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_Meeting_Sys_User", Storage="_Sys_User", ThisKey="CompileManId", OtherKey="UserId", IsForeignKey=true)] + public Sys_User Sys_User + { + get + { + return this._Sys_User.Entity; + } + set + { + Sys_User previousValue = this._Sys_User.Entity; + if (((previousValue != value) + || (this._Sys_User.HasLoadedOrAssignedValue == false))) + { + this.SendPropertyChanging(); + if ((previousValue != null)) + { + this._Sys_User.Entity = null; + previousValue.Person_Meeting.Remove(this); + } + this._Sys_User.Entity = value; + if ((value != null)) + { + value.Person_Meeting.Add(this); + this._CompileManId = value.UserId; + } + else + { + this._CompileManId = default(string); + } + this.SendPropertyChanged("Sys_User"); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Person_PersonPlan")] public partial class Person_PersonPlan : INotifyPropertyChanging, INotifyPropertyChanged { @@ -245489,7 +245747,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(200)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(2000)")] public string Address { get @@ -245553,7 +245811,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(200)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] public string WorkAreaName { get @@ -264495,6 +264753,8 @@ namespace Model private EntitySet _Person_Duty_Sys_User2; + private EntitySet _Person_Meeting; + private EntitySet _Person_PersonPlan; private EntitySet _Person_QuarterCheck; @@ -265018,6 +265278,7 @@ namespace Model this._Person_Duty = new EntitySet(new Action(this.attach_Person_Duty), new Action(this.detach_Person_Duty)); this._Person_Duty_Sys_User1 = new EntitySet(new Action(this.attach_Person_Duty_Sys_User1), new Action(this.detach_Person_Duty_Sys_User1)); this._Person_Duty_Sys_User2 = new EntitySet(new Action(this.attach_Person_Duty_Sys_User2), new Action(this.detach_Person_Duty_Sys_User2)); + this._Person_Meeting = new EntitySet(new Action(this.attach_Person_Meeting), new Action(this.detach_Person_Meeting)); this._Person_PersonPlan = new EntitySet(new Action(this.attach_Person_PersonPlan), new Action(this.detach_Person_PersonPlan)); this._Person_QuarterCheck = new EntitySet(new Action(this.attach_Person_QuarterCheck), new Action(this.detach_Person_QuarterCheck)); this._Person_QuarterCheckApprove = new EntitySet(new Action(this.attach_Person_QuarterCheckApprove), new Action(this.detach_Person_QuarterCheckApprove)); @@ -269013,6 +269274,19 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_Meeting_Sys_User", Storage="_Person_Meeting", ThisKey="UserId", OtherKey="CompileManId", DeleteRule="NO ACTION")] + public EntitySet Person_Meeting + { + get + { + return this._Person_Meeting; + } + set + { + this._Person_Meeting.Assign(value); + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_PersonPlan_Sys_User", Storage="_Person_PersonPlan", ThisKey="UserId", OtherKey="UserId", DeleteRule="NO ACTION")] public EntitySet Person_PersonPlan { @@ -273054,6 +273328,18 @@ namespace Model entity.ApprovePerson = null; } + private void attach_Person_Meeting(Person_Meeting entity) + { + this.SendPropertyChanging(); + entity.Sys_User = this; + } + + private void detach_Person_Meeting(Person_Meeting entity) + { + this.SendPropertyChanging(); + entity.Sys_User = null; + } + private void attach_Person_PersonPlan(Person_PersonPlan entity) { this.SendPropertyChanging(); @@ -327152,7 +327438,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(200)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(2000)")] public string Address { get @@ -327168,7 +327454,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(200)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] public string WorkAreaName { get @@ -334640,7 +334926,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(102)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(100)")] public string Name { get