20211130 与材料系统对接接口打通

This commit is contained in:
杨红卫 2021-11-30 10:17:46 +08:00
parent 7e0564dde6
commit 8932645f54
63 changed files with 20961 additions and 8 deletions

View File

@ -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

View File

@ -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

View File

@ -587,6 +587,7 @@
<Compile Include="Party\ThemePartyDayService.cs" />
<Compile Include="Party\TwoOneGoodSelectionService.cs" />
<Compile Include="Party\WorkPlanService.cs" />
<Compile Include="Person\Person_MeetingService.cs" />
<Compile Include="Person\PersonTotalService.cs" />
<Compile Include="Person\Person_DutyService.cs" />
<Compile Include="Person\Person_DutyTemplateService.cs" />
@ -629,6 +630,16 @@
<Compile Include="PZHGL\InformationProject\WorkHandoverService.cs" />
<Compile Include="PZHGL\ProjectData\ProjectMapService.cs" />
<Compile Include="PZHGL\ProjectData\ProjectPageDataService.cs" />
<Compile Include="Service References\CNCECHSSEService\Reference.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Reference.svcmap</DependentUpon>
</Compile>
<Compile Include="Service References\MCSService\Reference.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Reference.svcmap</DependentUpon>
</Compile>
<Compile Include="SortConditionHelper.cs" />
<Compile Include="SQLHelper.cs" />
<Compile Include="Common\Const.cs" />
@ -694,6 +705,8 @@
<Compile Include="TestRun\ProduceTestRun\TestRunRecordService.cs" />
<Compile Include="TestRun\ProduceTestRun\TestRunReportService.cs" />
<Compile Include="TestRun\TestRunService.cs" />
<Compile Include="WebService\MCSWebService.cs" />
<Compile Include="WebService\CNCECHSSEWebService.cs" />
<Compile Include="ZHGL\DataStatistics\DataStatisticsService.cs" />
<Compile Include="ZHGL\HSSESystem\HSSEManageItemService.cs" />
<Compile Include="ZHGL\HSSESystem\HSSEManageService.cs" />
@ -763,6 +776,108 @@
<None Include="packages.config" />
<None Include="Scripts\jquery-3.5.1.min.map" />
<None Include="Scripts\jquery-3.5.1.slim.min.map" />
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Base_Unit.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Check_CheckInfo_Table8Item.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Check_CheckRectify.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.EduTrain_AccidentCase.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.EduTrain_AccidentCaseItem.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Information_UrgeReport.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Law_HSSEStandardsList.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Law_LawRegulationList.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Law_ManageRule.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Law_RulesRegulations.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Supervise_SubUnitReport.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Supervise_SubUnitReportItem.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Sys_Version.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_Appraise.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_Emergency.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_Expert.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_HazardList.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_HazardListType.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_HAZOP.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_Rectify.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_RectifyItem.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Technique_SpecialScheme.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Training_Knowledge.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Training_KnowledgeItem.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Training_Training.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Training_TrainingItem.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Training_TrainTestDB.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\BLL.CNCECHSSEService.Training_TrainTestDBItem.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\CNCECHSSEService\HSSEService.wsdl" />
<None Include="Service References\CNCECHSSEService\HSSEService.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\CNCECHSSEService\HSSEService1.wsdl" />
<None Include="Service References\CNCECHSSEService\HSSEService1.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\CNCECHSSEService\HSSEService2.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\CNCECHSSEService\HSSEService3.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\MCSService\WebService1.wsdl" />
</ItemGroup>
<ItemGroup>
<Content Include="obj\Debug\BLL.csproj.FileListAbsolute.txt" />
@ -780,8 +895,25 @@
<Content Include="Scripts\jquery-3.5.1.min.js" />
<Content Include="Scripts\jquery-3.5.1.slim.js" />
<Content Include="Scripts\jquery-3.5.1.slim.min.js" />
<None Include="Service References\MCSService\Reference.svcmap">
<Generator>WCF Proxy Generator</Generator>
<LastGenOutput>Reference.cs</LastGenOutput>
</None>
<None Include="Service References\MCSService\configuration.svcinfo" />
<None Include="Service References\MCSService\configuration91.svcinfo" />
<None Include="Service References\MCSService\WebService1.disco" />
<None Include="Service References\CNCECHSSEService\Reference.svcmap">
<Generator>WCF Proxy Generator</Generator>
<LastGenOutput>Reference.cs</LastGenOutput>
</None>
<None Include="Service References\CNCECHSSEService\configuration.svcinfo" />
<None Include="Service References\CNCECHSSEService\configuration91.svcinfo" />
<None Include="Service References\CNCECHSSEService\HSSEService.disco" />
</ItemGroup>
<ItemGroup>
<WCFMetadataStorage Include="Service References\CNCECHSSEService\" />
<WCFMetadataStorage Include="Service References\MCSService\" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.

View File

@ -0,0 +1,73 @@
using System.Collections.Generic;
using System.Linq;
namespace BLL
{
public class Person_MeetingService
{
public static Model.SGGLDB db = Funs.DB;
/// <summary>
/// 获取实体集合
/// </summary>
/// <returns></returns>
public static Model.Person_Meeting GetPerson_MeetingById(string meetingId)
{
return Funs.DB.Person_Meeting.FirstOrDefault(x => x.MeetingId == meetingId);
}
/// <summary>
/// 添加
/// </summary>
/// <param name="?"></param>
public static void AddPerson_Meeting(Model.Person_Meeting Person_Meeting)
{
Model.SGGLDB db = Funs.DB;
Model.Person_Meeting newPerson_Meeting = new Model.Person_Meeting
{
MeetingId = Person_Meeting.MeetingId,
CompileManId = Person_Meeting.CompileManId,
MeetingDate = Person_Meeting.MeetingDate,
MeetingTitle = Person_Meeting.MeetingTitle,
AttendeeManIds = Person_Meeting.AttendeeManIds,
ConferenceLink = Person_Meeting.ConferenceLink,
Remark = Person_Meeting.Remark,
};
db.Person_Meeting.InsertOnSubmit(newPerson_Meeting);
db.SubmitChanges();
}
/// <summary>
/// 修改
/// </summary>
/// <param name="teamGroup"></param>
public static void UpdatePerson_Meeting(Model.Person_Meeting Person_Meeting)
{
Model.SGGLDB db = Funs.DB;
var newPerson_Meeting = db.Person_Meeting.FirstOrDefault(e => e.MeetingId == Person_Meeting.MeetingId);
if (newPerson_Meeting != null)
{
newPerson_Meeting.MeetingDate = Person_Meeting.MeetingDate;
newPerson_Meeting.MeetingTitle = Person_Meeting.MeetingTitle;
newPerson_Meeting.AttendeeManIds = Person_Meeting.AttendeeManIds;
newPerson_Meeting.ConferenceLink = Person_Meeting.ConferenceLink;
newPerson_Meeting.Remark = Person_Meeting.Remark;
db.SubmitChanges();
}
}
/// <summary>
/// 根据主键删除信息
/// </summary>
/// <param name="MeetingId"></param>
public static void DeletePerson_MeetingById(string MeetingId)
{
Model.SGGLDB db = Funs.DB;
Model.Person_Meeting Person_Meeting = db.Person_Meeting.FirstOrDefault(e => e.MeetingId == MeetingId);
{
db.Person_Meeting.DeleteOnSubmit(Person_Meeting);
db.SubmitChanges();
}
}
}
}

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Base_Unit" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Base_Unit, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Check_CheckInfo_Table8Item" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Check_CheckInfo_Table8Item, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Check_CheckRectify" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Check_CheckRectify, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="EduTrain_AccidentCase" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.EduTrain_AccidentCase, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="EduTrain_AccidentCaseItem" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.EduTrain_AccidentCaseItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Information_UrgeReport" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Information_UrgeReport, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Law_HSSEStandardsList" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Law_HSSEStandardsList, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Law_LawRegulationList" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Law_LawRegulationList, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Law_ManageRule" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Law_ManageRule, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Law_RulesRegulations" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Law_RulesRegulations, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Supervise_SubUnitReport" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Supervise_SubUnitReport, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Supervise_SubUnitReportItem" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Supervise_SubUnitReportItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Supervise_SuperviseCheckRectify" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Supervise_SuperviseCheckRectify, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Sys_Version" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Sys_Version, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_Appraise" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_Appraise, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_Emergency" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_Emergency, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_Expert" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_Expert, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_HAZOP" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_HAZOP, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_HazardList" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_HazardList, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_HazardListType" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_HazardListType, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_Rectify" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_Rectify, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_RectifyItem" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_RectifyItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Technique_SpecialScheme" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Technique_SpecialScheme, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Training_Knowledge" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Training_Knowledge, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Training_KnowledgeItem" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Training_KnowledgeItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Training_TrainTestDB" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Training_TrainTestDB, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Training_TrainTestDBItem" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Training_TrainTestDBItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Training_Training" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Training_Training, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Training_TrainingItem" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>BLL.CNCECHSSEService.Training_TrainingItem, Service References.CNCECHSSEService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
<contractRef ref="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?wsdl" docRef="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
</discovery>

View File

@ -0,0 +1,520 @@
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:tns="http://tempuri.org/" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:i0="http://www.localhost.com" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsp:Policy wsu:Id="HSSEServiceEndpoint_policy">
<wsp:ExactlyOne>
<wsp:All>
<wsaw:UsingAddressing />
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
<wsdl:import namespace="http://www.localhost.com" location="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?wsdl" />
<wsdl:types />
<wsdl:binding name="HSSEServiceEndpoint" type="i0:HSSEService">
<wsp:PolicyReference URI="#HSSEServiceEndpoint_policy" />
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="DataInsertTraining_TrainingItemTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTraining_TrainingItemTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTraining_TrainTestDBItemTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTraining_TrainTestDBItemTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertEduTrain_AccidentCaseItemTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertEduTrain_AccidentCaseItemTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTraining_KnowledgeItemTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTraining_KnowledgeItemTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_HazardListTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTechnique_HazardListTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_RectifyItemTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTechnique_RectifyItemTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_ExpertTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTechnique_ExpertTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertSupervise_SuperviseCheckRectifyTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertSupervise_SuperviseCheckRectifyTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertHSSESystem_HSSEManageItemTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEManageItemTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertSupervise_UpCheckReportTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertSupervise_UpCheckReportTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertSupervise_SubUnitReportItemItemTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertSupervise_SubUnitReportItemItemTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertCheck_CheckRectifyTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertCheck_CheckRectifyTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertHSSESystem_HSSEOrganizeTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertSys_SubUnitLogListTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertSys_SubUnitLogListTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetSys_VersionToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetSys_VersionToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetBase_UnitToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetBase_UnitToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetInformation_UrgeReportToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetInformation_UrgeReportToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetLaw_LawRegulationListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetLaw_LawRegulationListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetLaw_HSSEStandardsListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetLaw_HSSEStandardsListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetLaw_RulesRegulationsToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetLaw_RulesRegulationsToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetLaw_ManageRuleToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetLaw_ManageRuleToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_HAZOPToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_HAZOPToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_AppraiseToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_AppraiseToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_EmergencyToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_EmergencyToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_SpecialSchemeToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_SpecialSchemeToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainingListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTraining_TrainingListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainingItemListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTraining_TrainingItemListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainTestDBListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainTestDBItemListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBItemListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetEduTrain_AccidentCaseListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetEduTrain_AccidentCaseItemListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseItemListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTraining_KnowledgeListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTraining_KnowledgeListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTraining_KnowledgeItemListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTraining_KnowledgeItemListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_HazardListTypeListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_HazardListTypeListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_HazardListListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_HazardListListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_RectifyListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_RectifyListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_RectifyItemListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_RectifyItemListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetTechnique_ExpertListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetTechnique_ExpertListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetSupervise_SuperviseCheckRectifyListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetSupervise_SuperviseCheckRectifyListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetSupervise_SubUnitReportListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetSupervise_SubUnitReportItemListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportItemListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetCheck_CheckRectifyListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetCheck_CheckRectifyListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetCheck_CheckInfo_Table8ItemListToSUB">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/GetCheck_CheckInfo_Table8ItemListToSUB" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_LawRegulationListTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertLaw_LawRegulationListTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_HSSEStandardsListTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertLaw_HSSEStandardsListTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_RulesRegulationsTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertLaw_RulesRegulationsTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_ManageRuleTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertLaw_ManageRuleTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_HAZOPTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTechnique_HAZOPTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_AppraiseTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTechnique_AppraiseTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_EmergencyTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTechnique_EmergencyTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_SpecialSchemeTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertTechnique_SpecialSchemeTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_AccidentCauseReportTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertInformation_AccidentCauseReportTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_DrillConductedQuarterlyReportTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertInformation_DrillConductedQuarterlyReportTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_DrillPlanHalfYearReportTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertInformation_DrillPlanHalfYearReportTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_MillionsMonthlyReportTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertInformation_MillionsMonthlyReportTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_SafetyQuarterlyReportTable">
<soap12:operation soapAction="http://www.localhost.com/HSSEService/DataInsertInformation_SafetyQuarterlyReportTable" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
</wsdl:definitions>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,582 @@
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:tns="http://www.localhost.com" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:i0="http://tempuri.org/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="HSSEService" targetNamespace="http://www.localhost.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:import namespace="http://tempuri.org/" location="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?wsdl=wsdl0" />
<wsdl:types>
<xsd:schema targetNamespace="http://www.localhost.com/Imports">
<xsd:import schemaLocation="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd0" namespace="http://www.localhost.com" />
<xsd:import schemaLocation="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
<xsd:import schemaLocation="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService" />
<xsd:import schemaLocation="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
</xsd:schema>
</wsdl:types>
<wsdl:message name="HSSEService_DataInsertTraining_TrainingItemTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTraining_TrainingItemTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTraining_TrainingItemTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTraining_TrainingItemTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTraining_TrainTestDBItemTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTraining_TrainTestDBItemTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTraining_TrainTestDBItemTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTraining_TrainTestDBItemTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertEduTrain_AccidentCaseItemTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertEduTrain_AccidentCaseItemTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertEduTrain_AccidentCaseItemTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertEduTrain_AccidentCaseItemTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTraining_KnowledgeItemTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTraining_KnowledgeItemTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTraining_KnowledgeItemTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTraining_KnowledgeItemTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_HazardListTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_HazardListTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_HazardListTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_HazardListTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_RectifyItemTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_RectifyItemTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_RectifyItemTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_RectifyItemTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_ExpertTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_ExpertTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_ExpertTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_ExpertTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSupervise_SuperviseCheckRectifyTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSupervise_SuperviseCheckRectifyTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSupervise_SuperviseCheckRectifyTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSupervise_SuperviseCheckRectifyTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertHSSESystem_HSSEManageItemTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertHSSESystem_HSSEManageItemTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertHSSESystem_HSSEManageItemTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertHSSESystem_HSSEManageItemTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSupervise_UpCheckReportTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSupervise_UpCheckReportTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSupervise_UpCheckReportTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSupervise_UpCheckReportTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSupervise_SubUnitReportItemItemTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSupervise_SubUnitReportItemItemTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSupervise_SubUnitReportItemItemTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSupervise_SubUnitReportItemItemTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertCheck_CheckRectifyTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertCheck_CheckRectifyTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertCheck_CheckRectifyTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertCheck_CheckRectifyTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertHSSESystem_HSSEOrganizeTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertHSSESystem_HSSEOrganizeTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertHSSESystem_HSSEOrganizeTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertHSSESystem_HSSEOrganizeTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSys_SubUnitLogListTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSys_SubUnitLogListTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertSys_SubUnitLogListTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertSys_SubUnitLogListTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSys_VersionToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetSys_VersionToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSys_VersionToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetSys_VersionToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetBase_UnitToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetBase_UnitToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetBase_UnitToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetBase_UnitToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetInformation_UrgeReportToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetInformation_UrgeReportToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetInformation_UrgeReportToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetInformation_UrgeReportToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_LawRegulationListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_LawRegulationListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_LawRegulationListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_LawRegulationListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_HSSEStandardsListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_HSSEStandardsListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_HSSEStandardsListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_HSSEStandardsListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_RulesRegulationsToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_RulesRegulationsToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_RulesRegulationsToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_RulesRegulationsToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_ManageRuleToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_ManageRuleToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetLaw_ManageRuleToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetLaw_ManageRuleToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_HAZOPToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_HAZOPToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_HAZOPToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_HAZOPToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_AppraiseToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_AppraiseToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_AppraiseToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_AppraiseToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_EmergencyToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_EmergencyToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_EmergencyToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_EmergencyToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_SpecialSchemeToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_SpecialSchemeToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_SpecialSchemeToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_SpecialSchemeToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainingListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainingListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainingListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainingListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainingItemListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainingItemListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainingItemListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainingItemListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainTestDBListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainTestDBListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainTestDBListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainTestDBListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainTestDBItemListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainTestDBItemListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_TrainTestDBItemListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_TrainTestDBItemListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetEduTrain_AccidentCaseListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetEduTrain_AccidentCaseListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetEduTrain_AccidentCaseListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetEduTrain_AccidentCaseListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetEduTrain_AccidentCaseItemListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetEduTrain_AccidentCaseItemListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetEduTrain_AccidentCaseItemListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetEduTrain_AccidentCaseItemListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_KnowledgeListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_KnowledgeListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_KnowledgeListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_KnowledgeListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_KnowledgeItemListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_KnowledgeItemListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTraining_KnowledgeItemListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTraining_KnowledgeItemListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_HazardListTypeListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_HazardListTypeListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_HazardListTypeListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_HazardListTypeListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_HazardListListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_HazardListListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_HazardListListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_HazardListListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_RectifyListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_RectifyListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_RectifyListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_RectifyListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_RectifyItemListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_RectifyItemListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_RectifyItemListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_RectifyItemListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_ExpertListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_ExpertListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetTechnique_ExpertListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetTechnique_ExpertListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSupervise_SuperviseCheckRectifyListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetSupervise_SuperviseCheckRectifyListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSupervise_SuperviseCheckRectifyListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetSupervise_SuperviseCheckRectifyListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSupervise_SubUnitReportListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetSupervise_SubUnitReportListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSupervise_SubUnitReportListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetSupervise_SubUnitReportListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSupervise_SubUnitReportItemListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetSupervise_SubUnitReportItemListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetSupervise_SubUnitReportItemListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetSupervise_SubUnitReportItemListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetCheck_CheckRectifyListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetCheck_CheckRectifyListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetCheck_CheckRectifyListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetCheck_CheckRectifyListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_GetCheck_CheckInfo_Table8ItemListToSUB_InputMessage">
<wsdl:part name="parameters" element="tns:GetCheck_CheckInfo_Table8ItemListToSUB" />
</wsdl:message>
<wsdl:message name="HSSEService_GetCheck_CheckInfo_Table8ItemListToSUB_OutputMessage">
<wsdl:part name="parameters" element="tns:GetCheck_CheckInfo_Table8ItemListToSUBResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_LawRegulationListTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_LawRegulationListTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_LawRegulationListTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_LawRegulationListTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_HSSEStandardsListTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_HSSEStandardsListTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_HSSEStandardsListTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_HSSEStandardsListTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_RulesRegulationsTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_RulesRegulationsTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_RulesRegulationsTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_RulesRegulationsTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_ManageRuleTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_ManageRuleTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertLaw_ManageRuleTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertLaw_ManageRuleTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_HAZOPTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_HAZOPTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_HAZOPTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_HAZOPTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_AppraiseTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_AppraiseTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_AppraiseTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_AppraiseTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_EmergencyTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_EmergencyTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_EmergencyTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_EmergencyTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_SpecialSchemeTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_SpecialSchemeTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertTechnique_SpecialSchemeTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertTechnique_SpecialSchemeTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_AccidentCauseReportTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_AccidentCauseReportTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_AccidentCauseReportTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_AccidentCauseReportTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_DrillConductedQuarterlyReportTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_DrillConductedQuarterlyReportTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_DrillConductedQuarterlyReportTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_DrillConductedQuarterlyReportTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_DrillPlanHalfYearReportTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_DrillPlanHalfYearReportTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_DrillPlanHalfYearReportTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_DrillPlanHalfYearReportTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_MillionsMonthlyReportTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_MillionsMonthlyReportTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_MillionsMonthlyReportTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_MillionsMonthlyReportTableResponse" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_SafetyQuarterlyReportTable_InputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_SafetyQuarterlyReportTable" />
</wsdl:message>
<wsdl:message name="HSSEService_DataInsertInformation_SafetyQuarterlyReportTable_OutputMessage">
<wsdl:part name="parameters" element="tns:DataInsertInformation_SafetyQuarterlyReportTableResponse" />
</wsdl:message>
<wsdl:portType name="HSSEService">
<wsdl:operation name="DataInsertTraining_TrainingItemTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainingItemTable" message="tns:HSSEService_DataInsertTraining_TrainingItemTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainingItemTableResponse" message="tns:HSSEService_DataInsertTraining_TrainingItemTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTraining_TrainTestDBItemTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainTestDBItemTable" message="tns:HSSEService_DataInsertTraining_TrainTestDBItemTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTraining_TrainTestDBItemTableResponse" message="tns:HSSEService_DataInsertTraining_TrainTestDBItemTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertEduTrain_AccidentCaseItemTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertEduTrain_AccidentCaseItemTable" message="tns:HSSEService_DataInsertEduTrain_AccidentCaseItemTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertEduTrain_AccidentCaseItemTableResponse" message="tns:HSSEService_DataInsertEduTrain_AccidentCaseItemTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTraining_KnowledgeItemTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTraining_KnowledgeItemTable" message="tns:HSSEService_DataInsertTraining_KnowledgeItemTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTraining_KnowledgeItemTableResponse" message="tns:HSSEService_DataInsertTraining_KnowledgeItemTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_HazardListTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HazardListTable" message="tns:HSSEService_DataInsertTechnique_HazardListTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HazardListTableResponse" message="tns:HSSEService_DataInsertTechnique_HazardListTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_RectifyItemTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_RectifyItemTable" message="tns:HSSEService_DataInsertTechnique_RectifyItemTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_RectifyItemTableResponse" message="tns:HSSEService_DataInsertTechnique_RectifyItemTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_ExpertTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_ExpertTable" message="tns:HSSEService_DataInsertTechnique_ExpertTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_ExpertTableResponse" message="tns:HSSEService_DataInsertTechnique_ExpertTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertSupervise_SuperviseCheckRectifyTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SuperviseCheckRectifyTable" message="tns:HSSEService_DataInsertSupervise_SuperviseCheckRectifyTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SuperviseCheckRectifyTableResponse" message="tns:HSSEService_DataInsertSupervise_SuperviseCheckRectifyTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertHSSESystem_HSSEManageItemTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEManageItemTable" message="tns:HSSEService_DataInsertHSSESystem_HSSEManageItemTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEManageItemTableResponse" message="tns:HSSEService_DataInsertHSSESystem_HSSEManageItemTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertSupervise_UpCheckReportTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSupervise_UpCheckReportTable" message="tns:HSSEService_DataInsertSupervise_UpCheckReportTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSupervise_UpCheckReportTableResponse" message="tns:HSSEService_DataInsertSupervise_UpCheckReportTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertSupervise_SubUnitReportItemItemTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SubUnitReportItemItemTable" message="tns:HSSEService_DataInsertSupervise_SubUnitReportItemItemTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSupervise_SubUnitReportItemItemTableResponse" message="tns:HSSEService_DataInsertSupervise_SubUnitReportItemItemTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertCheck_CheckRectifyTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertCheck_CheckRectifyTable" message="tns:HSSEService_DataInsertCheck_CheckRectifyTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertCheck_CheckRectifyTableResponse" message="tns:HSSEService_DataInsertCheck_CheckRectifyTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertHSSESystem_HSSEOrganizeTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTable" message="tns:HSSEService_DataInsertHSSESystem_HSSEOrganizeTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertHSSESystem_HSSEOrganizeTableResponse" message="tns:HSSEService_DataInsertHSSESystem_HSSEOrganizeTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertSys_SubUnitLogListTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSys_SubUnitLogListTable" message="tns:HSSEService_DataInsertSys_SubUnitLogListTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertSys_SubUnitLogListTableResponse" message="tns:HSSEService_DataInsertSys_SubUnitLogListTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetSys_VersionToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetSys_VersionToSUB" message="tns:HSSEService_GetSys_VersionToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetSys_VersionToSUBResponse" message="tns:HSSEService_GetSys_VersionToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetBase_UnitToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetBase_UnitToSUB" message="tns:HSSEService_GetBase_UnitToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetBase_UnitToSUBResponse" message="tns:HSSEService_GetBase_UnitToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetInformation_UrgeReportToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetInformation_UrgeReportToSUB" message="tns:HSSEService_GetInformation_UrgeReportToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetInformation_UrgeReportToSUBResponse" message="tns:HSSEService_GetInformation_UrgeReportToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetLaw_LawRegulationListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_LawRegulationListToSUB" message="tns:HSSEService_GetLaw_LawRegulationListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_LawRegulationListToSUBResponse" message="tns:HSSEService_GetLaw_LawRegulationListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetLaw_HSSEStandardsListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_HSSEStandardsListToSUB" message="tns:HSSEService_GetLaw_HSSEStandardsListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_HSSEStandardsListToSUBResponse" message="tns:HSSEService_GetLaw_HSSEStandardsListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetLaw_RulesRegulationsToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_RulesRegulationsToSUB" message="tns:HSSEService_GetLaw_RulesRegulationsToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_RulesRegulationsToSUBResponse" message="tns:HSSEService_GetLaw_RulesRegulationsToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetLaw_ManageRuleToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_ManageRuleToSUB" message="tns:HSSEService_GetLaw_ManageRuleToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetLaw_ManageRuleToSUBResponse" message="tns:HSSEService_GetLaw_ManageRuleToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_HAZOPToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_HAZOPToSUB" message="tns:HSSEService_GetTechnique_HAZOPToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_HAZOPToSUBResponse" message="tns:HSSEService_GetTechnique_HAZOPToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_AppraiseToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_AppraiseToSUB" message="tns:HSSEService_GetTechnique_AppraiseToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_AppraiseToSUBResponse" message="tns:HSSEService_GetTechnique_AppraiseToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_EmergencyToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_EmergencyToSUB" message="tns:HSSEService_GetTechnique_EmergencyToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_EmergencyToSUBResponse" message="tns:HSSEService_GetTechnique_EmergencyToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_SpecialSchemeToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_SpecialSchemeToSUB" message="tns:HSSEService_GetTechnique_SpecialSchemeToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_SpecialSchemeToSUBResponse" message="tns:HSSEService_GetTechnique_SpecialSchemeToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainingListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainingListToSUB" message="tns:HSSEService_GetTraining_TrainingListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainingListToSUBResponse" message="tns:HSSEService_GetTraining_TrainingListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainingItemListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainingItemListToSUB" message="tns:HSSEService_GetTraining_TrainingItemListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainingItemListToSUBResponse" message="tns:HSSEService_GetTraining_TrainingItemListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainTestDBListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBListToSUB" message="tns:HSSEService_GetTraining_TrainTestDBListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBListToSUBResponse" message="tns:HSSEService_GetTraining_TrainTestDBListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTraining_TrainTestDBItemListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBItemListToSUB" message="tns:HSSEService_GetTraining_TrainTestDBItemListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_TrainTestDBItemListToSUBResponse" message="tns:HSSEService_GetTraining_TrainTestDBItemListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetEduTrain_AccidentCaseListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseListToSUB" message="tns:HSSEService_GetEduTrain_AccidentCaseListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseListToSUBResponse" message="tns:HSSEService_GetEduTrain_AccidentCaseListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetEduTrain_AccidentCaseItemListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseItemListToSUB" message="tns:HSSEService_GetEduTrain_AccidentCaseItemListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetEduTrain_AccidentCaseItemListToSUBResponse" message="tns:HSSEService_GetEduTrain_AccidentCaseItemListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTraining_KnowledgeListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeListToSUB" message="tns:HSSEService_GetTraining_KnowledgeListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeListToSUBResponse" message="tns:HSSEService_GetTraining_KnowledgeListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTraining_KnowledgeItemListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeItemListToSUB" message="tns:HSSEService_GetTraining_KnowledgeItemListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTraining_KnowledgeItemListToSUBResponse" message="tns:HSSEService_GetTraining_KnowledgeItemListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_HazardListTypeListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListTypeListToSUB" message="tns:HSSEService_GetTechnique_HazardListTypeListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListTypeListToSUBResponse" message="tns:HSSEService_GetTechnique_HazardListTypeListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_HazardListListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListListToSUB" message="tns:HSSEService_GetTechnique_HazardListListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_HazardListListToSUBResponse" message="tns:HSSEService_GetTechnique_HazardListListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_RectifyListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyListToSUB" message="tns:HSSEService_GetTechnique_RectifyListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyListToSUBResponse" message="tns:HSSEService_GetTechnique_RectifyListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_RectifyItemListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyItemListToSUB" message="tns:HSSEService_GetTechnique_RectifyItemListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_RectifyItemListToSUBResponse" message="tns:HSSEService_GetTechnique_RectifyItemListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetTechnique_ExpertListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_ExpertListToSUB" message="tns:HSSEService_GetTechnique_ExpertListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetTechnique_ExpertListToSUBResponse" message="tns:HSSEService_GetTechnique_ExpertListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetSupervise_SuperviseCheckRectifyListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetSupervise_SuperviseCheckRectifyListToSUB" message="tns:HSSEService_GetSupervise_SuperviseCheckRectifyListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetSupervise_SuperviseCheckRectifyListToSUBResponse" message="tns:HSSEService_GetSupervise_SuperviseCheckRectifyListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetSupervise_SubUnitReportListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportListToSUB" message="tns:HSSEService_GetSupervise_SubUnitReportListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportListToSUBResponse" message="tns:HSSEService_GetSupervise_SubUnitReportListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetSupervise_SubUnitReportItemListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportItemListToSUB" message="tns:HSSEService_GetSupervise_SubUnitReportItemListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetSupervise_SubUnitReportItemListToSUBResponse" message="tns:HSSEService_GetSupervise_SubUnitReportItemListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetCheck_CheckRectifyListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetCheck_CheckRectifyListToSUB" message="tns:HSSEService_GetCheck_CheckRectifyListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetCheck_CheckRectifyListToSUBResponse" message="tns:HSSEService_GetCheck_CheckRectifyListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="GetCheck_CheckInfo_Table8ItemListToSUB">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/GetCheck_CheckInfo_Table8ItemListToSUB" message="tns:HSSEService_GetCheck_CheckInfo_Table8ItemListToSUB_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/GetCheck_CheckInfo_Table8ItemListToSUBResponse" message="tns:HSSEService_GetCheck_CheckInfo_Table8ItemListToSUB_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_LawRegulationListTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_LawRegulationListTable" message="tns:HSSEService_DataInsertLaw_LawRegulationListTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_LawRegulationListTableResponse" message="tns:HSSEService_DataInsertLaw_LawRegulationListTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_HSSEStandardsListTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_HSSEStandardsListTable" message="tns:HSSEService_DataInsertLaw_HSSEStandardsListTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_HSSEStandardsListTableResponse" message="tns:HSSEService_DataInsertLaw_HSSEStandardsListTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_RulesRegulationsTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_RulesRegulationsTable" message="tns:HSSEService_DataInsertLaw_RulesRegulationsTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_RulesRegulationsTableResponse" message="tns:HSSEService_DataInsertLaw_RulesRegulationsTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertLaw_ManageRuleTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_ManageRuleTable" message="tns:HSSEService_DataInsertLaw_ManageRuleTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertLaw_ManageRuleTableResponse" message="tns:HSSEService_DataInsertLaw_ManageRuleTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_HAZOPTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HAZOPTable" message="tns:HSSEService_DataInsertTechnique_HAZOPTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_HAZOPTableResponse" message="tns:HSSEService_DataInsertTechnique_HAZOPTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_AppraiseTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_AppraiseTable" message="tns:HSSEService_DataInsertTechnique_AppraiseTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_AppraiseTableResponse" message="tns:HSSEService_DataInsertTechnique_AppraiseTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_EmergencyTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_EmergencyTable" message="tns:HSSEService_DataInsertTechnique_EmergencyTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_EmergencyTableResponse" message="tns:HSSEService_DataInsertTechnique_EmergencyTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertTechnique_SpecialSchemeTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_SpecialSchemeTable" message="tns:HSSEService_DataInsertTechnique_SpecialSchemeTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertTechnique_SpecialSchemeTableResponse" message="tns:HSSEService_DataInsertTechnique_SpecialSchemeTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_AccidentCauseReportTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_AccidentCauseReportTable" message="tns:HSSEService_DataInsertInformation_AccidentCauseReportTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_AccidentCauseReportTableResponse" message="tns:HSSEService_DataInsertInformation_AccidentCauseReportTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_DrillConductedQuarterlyReportTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillConductedQuarterlyReportTable" message="tns:HSSEService_DataInsertInformation_DrillConductedQuarterlyReportTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillConductedQuarterlyReportTableResponse" message="tns:HSSEService_DataInsertInformation_DrillConductedQuarterlyReportTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_DrillPlanHalfYearReportTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillPlanHalfYearReportTable" message="tns:HSSEService_DataInsertInformation_DrillPlanHalfYearReportTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_DrillPlanHalfYearReportTableResponse" message="tns:HSSEService_DataInsertInformation_DrillPlanHalfYearReportTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_MillionsMonthlyReportTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_MillionsMonthlyReportTable" message="tns:HSSEService_DataInsertInformation_MillionsMonthlyReportTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_MillionsMonthlyReportTableResponse" message="tns:HSSEService_DataInsertInformation_MillionsMonthlyReportTable_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="DataInsertInformation_SafetyQuarterlyReportTable">
<wsdl:input wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_SafetyQuarterlyReportTable" message="tns:HSSEService_DataInsertInformation_SafetyQuarterlyReportTable_InputMessage" />
<wsdl:output wsaw:Action="http://www.localhost.com/HSSEService/DataInsertInformation_SafetyQuarterlyReportTableResponse" message="tns:HSSEService_DataInsertInformation_SafetyQuarterlyReportTable_OutputMessage" />
</wsdl:operation>
</wsdl:portType>
<wsdl:service name="HSSEService">
<wsdl:port name="HSSEServiceEndpoint" binding="i0:HSSEServiceEndpoint">
<soap12:address location="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc" />
<wsa10:EndpointReference>
<wsa10:Address>http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc</wsa10:Address>
</wsa10:EndpointReference>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="ArrayOfbase64Binary">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="base64Binary" nillable="true" type="xs:base64Binary" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfbase64Binary" nillable="true" type="tns:ArrayOfbase64Binary" />
<xs:complexType name="ArrayOfstring">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring" />
</xs:schema>

View File

@ -0,0 +1,747 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://www.localhost.com" elementFormDefault="qualified" targetNamespace="http://www.localhost.com" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import schemaLocation="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService" />
<xs:import schemaLocation="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<xs:element name="DataInsertTraining_TrainingItemTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="trainingItem" nillable="true" type="q1:ArrayOfTraining_TrainingItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTraining_TrainingItemTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q2="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTraining_TrainingItemTableResult" nillable="true" type="q2:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTraining_TrainTestDBItemTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="trainTestDBItem" nillable="true" type="q3:ArrayOfTraining_TrainTestDBItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTraining_TrainTestDBItemTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q4="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTraining_TrainTestDBItemTableResult" nillable="true" type="q4:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertEduTrain_AccidentCaseItemTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="accidentCaseItem" nillable="true" type="q5:ArrayOfEduTrain_AccidentCaseItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertEduTrain_AccidentCaseItemTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q6="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertEduTrain_AccidentCaseItemTableResult" nillable="true" type="q6:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTraining_KnowledgeItemTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="knowledgeItem" nillable="true" type="q7:ArrayOfTraining_KnowledgeItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTraining_KnowledgeItemTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q8="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTraining_KnowledgeItemTableResult" nillable="true" type="q8:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_HazardListTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="hazardList" nillable="true" type="q9:ArrayOfTechnique_HazardList" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_HazardListTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q10="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTechnique_HazardListTableResult" nillable="true" type="q10:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_RectifyItemTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q11="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="rectifyItem" nillable="true" type="q11:ArrayOfTechnique_RectifyItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_RectifyItemTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q12="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTechnique_RectifyItemTableResult" nillable="true" type="q12:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_ExpertTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q13="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="expert" nillable="true" type="q13:ArrayOfTechnique_Expert" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_ExpertTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q14="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTechnique_ExpertTableResult" nillable="true" type="q14:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSupervise_SuperviseCheckRectifyTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q15="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="superviseCheckRectify" nillable="true" type="q15:ArrayOfSupervise_SuperviseCheckRectify" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSupervise_SuperviseCheckRectifyTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q16="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertSupervise_SuperviseCheckRectifyTableResult" nillable="true" type="q16:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertHSSESystem_HSSEManageItemTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q17="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="HSSEManageItem" nillable="true" type="q17:ArrayOfHSSESystem_HSSEManageItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertHSSESystem_HSSEManageItemTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q18="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertHSSESystem_HSSEManageItemTableResult" nillable="true" type="q18:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSupervise_UpCheckReportTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q19="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="upCheckReport" nillable="true" type="q19:ArrayOfSupervise_UpCheckReport" />
<xs:element xmlns:q20="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="upCheckReportItem" nillable="true" type="q20:ArrayOfSupervise_UpCheckReportItem" />
<xs:element xmlns:q21="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="upCheckReportItem2" nillable="true" type="q21:ArrayOfSupervise_UpCheckReportItem2" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSupervise_UpCheckReportTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q22="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertSupervise_UpCheckReportTableResult" nillable="true" type="q22:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSupervise_SubUnitReportItemItemTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q23="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="subUnitReportItem" nillable="true" type="q23:ArrayOfSupervise_SubUnitReportItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSupervise_SubUnitReportItemItemTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q24="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertSupervise_SubUnitReportItemItemTableResult" nillable="true" type="q24:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertCheck_CheckRectifyTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q25="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="checkRectify" nillable="true" type="q25:ArrayOfCheck_CheckRectify" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertCheck_CheckRectifyTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q26="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertCheck_CheckRectifyTableResult" nillable="true" type="q26:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertHSSESystem_HSSEOrganizeTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q27="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="hsseOrganize" nillable="true" type="q27:HSSESystem_HSSEOrganize" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertHSSESystem_HSSEOrganizeTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="DataInsertHSSESystem_HSSEOrganizeTableResult" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSys_SubUnitLogListTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q28="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="subUnitLogList" nillable="true" type="q28:ArrayOfSys_SubUnitLog" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertSys_SubUnitLogListTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q29="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertSys_SubUnitLogListTableResult" nillable="true" type="q29:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetSys_VersionToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetSys_VersionToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q30="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetSys_VersionToSUBResult" nillable="true" type="q30:ArrayOfSys_Version" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetBase_UnitToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetBase_UnitToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q31="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetBase_UnitToSUBResult" nillable="true" type="q31:ArrayOfBase_Unit" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetInformation_UrgeReportToSUB">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="unitId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetInformation_UrgeReportToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q32="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetInformation_UrgeReportToSUBResult" nillable="true" type="q32:ArrayOfInformation_UrgeReport" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_LawRegulationListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_LawRegulationListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q33="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetLaw_LawRegulationListToSUBResult" nillable="true" type="q33:ArrayOfLaw_LawRegulationList" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_HSSEStandardsListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_HSSEStandardsListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q34="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetLaw_HSSEStandardsListToSUBResult" nillable="true" type="q34:ArrayOfLaw_HSSEStandardsList" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_RulesRegulationsToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_RulesRegulationsToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q35="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetLaw_RulesRegulationsToSUBResult" nillable="true" type="q35:ArrayOfLaw_RulesRegulations" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_ManageRuleToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetLaw_ManageRuleToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q36="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetLaw_ManageRuleToSUBResult" nillable="true" type="q36:ArrayOfLaw_ManageRule" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_HAZOPToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_HAZOPToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q37="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_HAZOPToSUBResult" nillable="true" type="q37:ArrayOfTechnique_HAZOP" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_AppraiseToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_AppraiseToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q38="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_AppraiseToSUBResult" nillable="true" type="q38:ArrayOfTechnique_Appraise" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_EmergencyToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_EmergencyToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q39="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_EmergencyToSUBResult" nillable="true" type="q39:ArrayOfTechnique_Emergency" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_SpecialSchemeToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_SpecialSchemeToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q40="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_SpecialSchemeToSUBResult" nillable="true" type="q40:ArrayOfTechnique_SpecialScheme" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainingListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainingListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q41="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTraining_TrainingListToSUBResult" nillable="true" type="q41:ArrayOfTraining_Training" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainingItemListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainingItemListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q42="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTraining_TrainingItemListToSUBResult" nillable="true" type="q42:ArrayOfTraining_TrainingItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainTestDBListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainTestDBListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q43="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTraining_TrainTestDBListToSUBResult" nillable="true" type="q43:ArrayOfTraining_TrainTestDB" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainTestDBItemListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_TrainTestDBItemListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q44="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTraining_TrainTestDBItemListToSUBResult" nillable="true" type="q44:ArrayOfTraining_TrainTestDBItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetEduTrain_AccidentCaseListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetEduTrain_AccidentCaseListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q45="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetEduTrain_AccidentCaseListToSUBResult" nillable="true" type="q45:ArrayOfEduTrain_AccidentCase" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetEduTrain_AccidentCaseItemListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetEduTrain_AccidentCaseItemListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q46="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetEduTrain_AccidentCaseItemListToSUBResult" nillable="true" type="q46:ArrayOfEduTrain_AccidentCaseItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_KnowledgeListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_KnowledgeListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q47="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTraining_KnowledgeListToSUBResult" nillable="true" type="q47:ArrayOfTraining_Knowledge" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_KnowledgeItemListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTraining_KnowledgeItemListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q48="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTraining_KnowledgeItemListToSUBResult" nillable="true" type="q48:ArrayOfTraining_KnowledgeItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_HazardListTypeListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_HazardListTypeListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q49="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_HazardListTypeListToSUBResult" nillable="true" type="q49:ArrayOfTechnique_HazardListType" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_HazardListListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_HazardListListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q50="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_HazardListListToSUBResult" nillable="true" type="q50:ArrayOfTechnique_HazardList" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_RectifyListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_RectifyListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q51="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_RectifyListToSUBResult" nillable="true" type="q51:ArrayOfTechnique_Rectify" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_RectifyItemListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_RectifyItemListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q52="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_RectifyItemListToSUBResult" nillable="true" type="q52:ArrayOfTechnique_RectifyItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_ExpertListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetTechnique_ExpertListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q53="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetTechnique_ExpertListToSUBResult" nillable="true" type="q53:ArrayOfTechnique_Expert" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetSupervise_SuperviseCheckRectifyListToSUB">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="unitId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetSupervise_SuperviseCheckRectifyListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q54="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetSupervise_SuperviseCheckRectifyListToSUBResult" nillable="true" type="q54:ArrayOfSupervise_SuperviseCheckRectify" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetSupervise_SubUnitReportListToSUB">
<xs:complexType>
<xs:sequence />
</xs:complexType>
</xs:element>
<xs:element name="GetSupervise_SubUnitReportListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q55="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetSupervise_SubUnitReportListToSUBResult" nillable="true" type="q55:ArrayOfSupervise_SubUnitReport" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetSupervise_SubUnitReportItemListToSUB">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="unitId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetSupervise_SubUnitReportItemListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q56="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetSupervise_SubUnitReportItemListToSUBResult" nillable="true" type="q56:ArrayOfSupervise_SubUnitReportItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetCheck_CheckRectifyListToSUB">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="unitId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetCheck_CheckRectifyListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q57="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetCheck_CheckRectifyListToSUBResult" nillable="true" type="q57:ArrayOfCheck_CheckRectify" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetCheck_CheckInfo_Table8ItemListToSUB">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="unitId" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetCheck_CheckInfo_Table8ItemListToSUBResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q58="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="GetCheck_CheckInfo_Table8ItemListToSUBResult" nillable="true" type="q58:ArrayOfCheck_CheckInfo_Table8Item" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_LawRegulationListTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q59="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="lawRegulationList" nillable="true" type="q59:ArrayOfLaw_LawRegulationList" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_LawRegulationListTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q60="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertLaw_LawRegulationListTableResult" nillable="true" type="q60:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_HSSEStandardsListTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q61="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="hsseStandardsList" nillable="true" type="q61:ArrayOfLaw_HSSEStandardsList" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_HSSEStandardsListTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q62="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertLaw_HSSEStandardsListTableResult" nillable="true" type="q62:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_RulesRegulationsTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q63="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="rulesRegulations" nillable="true" type="q63:ArrayOfLaw_RulesRegulations" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_RulesRegulationsTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q64="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertLaw_RulesRegulationsTableResult" nillable="true" type="q64:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_ManageRuleTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q65="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="manageRule" nillable="true" type="q65:ArrayOfLaw_ManageRule" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertLaw_ManageRuleTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q66="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertLaw_ManageRuleTableResult" nillable="true" type="q66:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_HAZOPTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q67="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="hazop" nillable="true" type="q67:ArrayOfTechnique_HAZOP" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_HAZOPTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q68="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTechnique_HAZOPTableResult" nillable="true" type="q68:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_AppraiseTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q69="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="appraise" nillable="true" type="q69:ArrayOfTechnique_Appraise" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_AppraiseTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q70="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTechnique_AppraiseTableResult" nillable="true" type="q70:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_EmergencyTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q71="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="emergency" nillable="true" type="q71:ArrayOfTechnique_Emergency" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_EmergencyTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q72="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTechnique_EmergencyTableResult" nillable="true" type="q72:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_SpecialSchemeTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q73="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="specialScheme" nillable="true" type="q73:ArrayOfTechnique_SpecialScheme" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertTechnique_SpecialSchemeTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q74="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertTechnique_SpecialSchemeTableResult" nillable="true" type="q74:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_AccidentCauseReportTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q75="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="accidentCauseReportList" nillable="true" type="q75:ArrayOfInformation_AccidentCauseReport" />
<xs:element xmlns:q76="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="accidentCauseReportItemList" nillable="true" type="q76:ArrayOfInformation_AccidentCauseReportItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_AccidentCauseReportTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q77="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertInformation_AccidentCauseReportTableResult" nillable="true" type="q77:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_DrillConductedQuarterlyReportTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q78="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="drillConductedQuarterlyReportList" nillable="true" type="q78:ArrayOfInformation_DrillConductedQuarterlyReport" />
<xs:element xmlns:q79="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="drillConductedQuarterlyReportItemList" nillable="true" type="q79:ArrayOfInformation_DrillConductedQuarterlyReportItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_DrillConductedQuarterlyReportTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q80="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertInformation_DrillConductedQuarterlyReportTableResult" nillable="true" type="q80:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_DrillPlanHalfYearReportTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q81="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="drillPlanHalfYearReportList" nillable="true" type="q81:ArrayOfInformation_DrillPlanHalfYearReport" />
<xs:element xmlns:q82="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="drillPlanHalfYearReportItemList" nillable="true" type="q82:ArrayOfInformation_DrillPlanHalfYearReportItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_DrillPlanHalfYearReportTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q83="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertInformation_DrillPlanHalfYearReportTableResult" nillable="true" type="q83:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_MillionsMonthlyReportTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q84="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="millionsMonthlyReportList" nillable="true" type="q84:ArrayOfInformation_MillionsMonthlyReport" />
<xs:element xmlns:q85="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="millionsMonthlyReportItemList" nillable="true" type="q85:ArrayOfInformation_MillionsMonthlyReportItem" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_MillionsMonthlyReportTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q86="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertInformation_MillionsMonthlyReportTableResult" nillable="true" type="q86:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_SafetyQuarterlyReportTable">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q87="http://schemas.datacontract.org/2004/07/BLL.OpenService" minOccurs="0" name="safetyQuarterlyReportList" nillable="true" type="q87:ArrayOfInformation_SafetyQuarterlyReport" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DataInsertInformation_SafetyQuarterlyReportTableResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q88="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DataInsertInformation_SafetyQuarterlyReportTableResult" nillable="true" type="q88:ArrayOfstring" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="anyType" nillable="true" type="xs:anyType" />
<xs:element name="anyURI" nillable="true" type="xs:anyURI" />
<xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
<xs:element name="boolean" nillable="true" type="xs:boolean" />
<xs:element name="byte" nillable="true" type="xs:byte" />
<xs:element name="dateTime" nillable="true" type="xs:dateTime" />
<xs:element name="decimal" nillable="true" type="xs:decimal" />
<xs:element name="double" nillable="true" type="xs:double" />
<xs:element name="float" nillable="true" type="xs:float" />
<xs:element name="int" nillable="true" type="xs:int" />
<xs:element name="long" nillable="true" type="xs:long" />
<xs:element name="QName" nillable="true" type="xs:QName" />
<xs:element name="short" nillable="true" type="xs:short" />
<xs:element name="string" nillable="true" type="xs:string" />
<xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
<xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
<xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
<xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
<xs:element name="char" nillable="true" type="tns:char" />
<xs:simpleType name="char">
<xs:restriction base="xs:int" />
</xs:simpleType>
<xs:element name="duration" nillable="true" type="tns:duration" />
<xs:simpleType name="duration">
<xs:restriction base="xs:duration">
<xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
<xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
<xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
</xs:restriction>
</xs:simpleType>
<xs:element name="guid" nillable="true" type="tns:guid" />
<xs:simpleType name="guid">
<xs:restriction base="xs:string">
<xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
</xs:restriction>
</xs:simpleType>
<xs:attribute name="FactoryType" type="xs:QName" />
<xs:attribute name="Id" type="xs:ID" />
<xs:attribute name="Ref" type="xs:IDREF" />
</xs:schema>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<ReferenceGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ID="c4a63ba6-f614-4c7a-bae5-6b10deb65e28" xmlns="urn:schemas-microsoft-com:xml-wcfservicemap">
<ClientOptions>
<GenerateAsynchronousMethods>false</GenerateAsynchronousMethods>
<GenerateTaskBasedAsynchronousMethod>true</GenerateTaskBasedAsynchronousMethod>
<EnableDataBinding>true</EnableDataBinding>
<ExcludedTypes />
<ImportXmlTypes>false</ImportXmlTypes>
<GenerateInternalTypes>false</GenerateInternalTypes>
<GenerateMessageContracts>false</GenerateMessageContracts>
<NamespaceMappings />
<CollectionMappings />
<GenerateSerializableTypes>true</GenerateSerializableTypes>
<Serializer>Auto</Serializer>
<UseSerializerForFaults>true</UseSerializerForFaults>
<ReferenceAllAssemblies>true</ReferenceAllAssemblies>
<ReferencedAssemblies />
<ReferencedDataContractTypes />
<ServiceContractMappings />
</ClientOptions>
<MetadataSources>
<MetadataSource Address="http://114.247.88.70:1080/cncechsse/HSSEService.svc" Protocol="http" SourceId="1" />
</MetadataSources>
<Metadata>
<MetadataFile FileName="HSSEService.xsd" MetadataType="Schema" ID="aa0b1103-af3c-4b49-814b-d78dbf7f4ca1" SourceId="1" SourceUrl="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd2" />
<MetadataFile FileName="HSSEService1.xsd" MetadataType="Schema" ID="12c2b8b6-574f-40de-9782-a974fddbb113" SourceId="1" SourceUrl="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd3" />
<MetadataFile FileName="HSSEService.disco" MetadataType="Disco" ID="62c3d597-a7fb-4d32-b5b0-98709c3f4c94" SourceId="1" SourceUrl="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?disco" />
<MetadataFile FileName="HSSEService.wsdl" MetadataType="Wsdl" ID="4dca5c5a-8c62-4c00-9dcb-c3bc379b2b60" SourceId="1" SourceUrl="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?wsdl=wsdl0" />
<MetadataFile FileName="HSSEService1.wsdl" MetadataType="Wsdl" ID="55a39362-5606-4116-a2fe-96f2b0a7dbe0" SourceId="1" SourceUrl="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?wsdl" />
<MetadataFile FileName="HSSEService2.xsd" MetadataType="Schema" ID="23f3e40a-167c-4f75-bc2f-530be1013768" SourceId="1" SourceUrl="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd0" />
<MetadataFile FileName="HSSEService3.xsd" MetadataType="Schema" ID="6d4ad663-cbbf-4aab-98f5-3adbaafe0469" SourceId="1" SourceUrl="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc?xsd=xsd1" />
</Metadata>
<Extensions>
<ExtensionFile FileName="configuration91.svcinfo" Name="configuration91.svcinfo" />
<ExtensionFile FileName="configuration.svcinfo" Name="configuration.svcinfo" />
</Extensions>
</ReferenceGroup>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<configurationSnapshot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:xml-wcfconfigurationsnapshot">
<behaviors />
<bindings>
<binding digest="System.ServiceModel.Configuration.WSHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data name=&quot;HSSEServiceEndpoint&quot;&gt;&lt;security mode=&quot;None&quot; /&gt;&lt;/Data&gt;" bindingType="wsHttpBinding" name="HSSEServiceEndpoint" />
</bindings>
<endpoints>
<endpoint normalizedDigest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc&quot; binding=&quot;wsHttpBinding&quot; bindingConfiguration=&quot;HSSEServiceEndpoint&quot; contract=&quot;CNCECHSSEService.HSSEService&quot; name=&quot;HSSEServiceEndpoint&quot; /&gt;" digest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc&quot; binding=&quot;wsHttpBinding&quot; bindingConfiguration=&quot;HSSEServiceEndpoint&quot; contract=&quot;CNCECHSSEService.HSSEService&quot; name=&quot;HSSEServiceEndpoint&quot; /&gt;" contractName="CNCECHSSEService.HSSEService" name="HSSEServiceEndpoint" />
</endpoints>
</configurationSnapshot>

View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="utf-8"?>
<SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="c9kg5qQCldGh045538x+z7SSB3w=">
<bindingConfigurations>
<bindingConfiguration bindingType="wsHttpBinding" name="HSSEServiceEndpoint">
<properties>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>HSSEServiceEndpoint</serializedValue>
</property>
<property path="/closeTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/openTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/receiveTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/sendTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/bypassProxyOnLocal" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/transactionFlow" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/hostNameComparisonMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HostNameComparisonMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>StrongWildcard</serializedValue>
</property>
<property path="/maxBufferPoolSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/maxReceivedMessageSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/messageEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.WSMessageEncoding, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Text</serializedValue>
</property>
<property path="/proxyAddress" isComplexType="false" isExplicitlyDefined="false" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/readerQuotas" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement</serializedValue>
</property>
<property path="/readerQuotas/maxDepth" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxStringContentLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxArrayLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxBytesPerRead" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxNameTableCharCount" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/reliableSession" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.StandardBindingOptionalReliableSessionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.StandardBindingOptionalReliableSessionElement</serializedValue>
</property>
<property path="/reliableSession/ordered" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>True</serializedValue>
</property>
<property path="/reliableSession/inactivityTimeout" isComplexType="false" isExplicitlyDefined="false" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>00:10:00</serializedValue>
</property>
<property path="/reliableSession/enabled" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/textEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.Text.Encoding, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Text.UTF8Encoding</serializedValue>
</property>
<property path="/useDefaultWebProxy" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/allowCookies" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/security" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.WSHttpSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.WSHttpSecurityElement</serializedValue>
</property>
<property path="/security/mode" isComplexType="false" isExplicitlyDefined="true" clrType="System.ServiceModel.SecurityMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.WSHttpTransportSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.WSHttpTransportSecurityElement</serializedValue>
</property>
<property path="/security/transport/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpClientCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Windows</serializedValue>
</property>
<property path="/security/transport/proxyCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpProxyCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/policyEnforcement" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.PolicyEnforcement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Never</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/protectionScenario" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.ProtectionScenario, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>TransportSelected</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/customServiceNames" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>(集合)</serializedValue>
</property>
<property path="/security/transport/realm" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/security/message" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.NonDualMessageSecurityOverHttpElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.NonDualMessageSecurityOverHttpElement</serializedValue>
</property>
<property path="/security/message/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.MessageCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Windows</serializedValue>
</property>
<property path="/security/message/negotiateServiceCredential" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>True</serializedValue>
</property>
<property path="/security/message/algorithmSuite" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.Security.SecurityAlgorithmSuite, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Default</serializedValue>
</property>
<property path="/security/message/establishSecurityContext" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>True</serializedValue>
</property>
</properties>
</bindingConfiguration>
</bindingConfigurations>
<endpoints>
<endpoint name="HSSEServiceEndpoint" contract="CNCECHSSEService.HSSEService" bindingType="wsHttpBinding" address="http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc" bindingConfiguration="HSSEServiceEndpoint">
<properties>
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>http://114.247.88.70:1080/CNCECHSSE/HSSEService.svc</serializedValue>
</property>
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/binding" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>wsHttpBinding</serializedValue>
</property>
<property path="/bindingConfiguration" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>HSSEServiceEndpoint</serializedValue>
</property>
<property path="/contract" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>CNCECHSSEService.HSSEService</serializedValue>
</property>
<property path="/headers" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.AddressHeaderCollectionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.AddressHeaderCollectionElement</serializedValue>
</property>
<property path="/headers/headers" isComplexType="false" isExplicitlyDefined="true" clrType="System.ServiceModel.Channels.AddressHeaderCollection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>&lt;Header /&gt;</serializedValue>
</property>
<property path="/identity" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.IdentityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.IdentityElement</serializedValue>
</property>
<property path="/identity/userPrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.UserPrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.UserPrincipalNameElement</serializedValue>
</property>
<property path="/identity/userPrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/servicePrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.ServicePrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.ServicePrincipalNameElement</serializedValue>
</property>
<property path="/identity/servicePrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/dns" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.DnsElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.DnsElement</serializedValue>
</property>
<property path="/identity/dns/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/rsa" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.RsaElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.RsaElement</serializedValue>
</property>
<property path="/identity/rsa/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificate" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateElement</serializedValue>
</property>
<property path="/identity/certificate/encodedValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateReferenceElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateReferenceElement</serializedValue>
</property>
<property path="/identity/certificateReference/storeName" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreName, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>My</serializedValue>
</property>
<property path="/identity/certificateReference/storeLocation" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreLocation, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>LocalMachine</serializedValue>
</property>
<property path="/identity/certificateReference/x509FindType" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.X509FindType, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>FindBySubjectDistinguishedName</serializedValue>
</property>
<property path="/identity/certificateReference/findValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference/isChainIncluded" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>HSSEServiceEndpoint</serializedValue>
</property>
<property path="/kind" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/endpointConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
</properties>
</endpoint>
</endpoints>
</SavedWcfConfigurationInformation>

View File

@ -0,0 +1,271 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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>, 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<string> getVendorUserNameAndPwdAsync() {
return base.Channel.getVendorUserNameAndPwdAsync();
}
public string getPoDetails(long projectID) {
return base.Channel.getPoDetails(projectID);
}
public System.Threading.Tasks.Task<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> 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<string> getPartNoInfoAsync(long projectID) {
return base.Channel.getPartNoInfoAsync(projectID);
}
public string getShelvesNo(long projectID) {
return base.Channel.getShelvesNo(projectID);
}
public System.Threading.Tasks.Task<string> getShelvesNoAsync(long projectID) {
return base.Channel.getShelvesNoAsync(projectID);
}
public string getSubcontractor(long projectID) {
return base.Channel.getSubcontractor(projectID);
}
public System.Threading.Tasks.Task<string> getSubcontractorAsync(long projectID) {
return base.Channel.getSubcontractorAsync(projectID);
}
public string getVendor() {
return base.Channel.getVendor();
}
public System.Threading.Tasks.Task<string> getVendorAsync() {
return base.Channel.getVendorAsync();
}
public string writePackingLists(string JsonVoiceArray, long ProjectID) {
return base.Channel.writePackingLists(JsonVoiceArray, ProjectID);
}
public System.Threading.Tasks.Task<string> 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<string> getReqDetailsAsync(long projectID) {
return base.Channel.getReqDetailsAsync(projectID);
}
}
}

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<ReferenceGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ID="37304c51-408b-432c-bdac-dd854304d70d" xmlns="urn:schemas-microsoft-com:xml-wcfservicemap">
<ClientOptions>
<GenerateAsynchronousMethods>false</GenerateAsynchronousMethods>
<GenerateTaskBasedAsynchronousMethod>true</GenerateTaskBasedAsynchronousMethod>
<EnableDataBinding>true</EnableDataBinding>
<ExcludedTypes />
<ImportXmlTypes>false</ImportXmlTypes>
<GenerateInternalTypes>false</GenerateInternalTypes>
<GenerateMessageContracts>false</GenerateMessageContracts>
<NamespaceMappings />
<CollectionMappings />
<GenerateSerializableTypes>true</GenerateSerializableTypes>
<Serializer>Auto</Serializer>
<UseSerializerForFaults>true</UseSerializerForFaults>
<ReferenceAllAssemblies>true</ReferenceAllAssemblies>
<ReferencedAssemblies />
<ReferencedDataContractTypes />
<ServiceContractMappings />
</ClientOptions>
<MetadataSources>
<MetadataSource Address="http://mattest.cwcec.com/LocWebServices/WebService1.asmx" Protocol="http" SourceId="1" />
</MetadataSources>
<Metadata>
<MetadataFile FileName="WebService1.wsdl" MetadataType="Wsdl" ID="0f01b3bd-714b-492d-812c-7c659bae56af" SourceId="1" SourceUrl="http://mattest.cwcec.com/LocWebServices/WebService1.asmx?wsdl" />
<MetadataFile FileName="WebService1.disco" MetadataType="Disco" ID="89d8bf32-e456-44ac-a695-20623955fbb2" SourceId="1" SourceUrl="http://mattest.cwcec.com/LocWebServices/WebService1.asmx?disco" />
</Metadata>
<Extensions>
<ExtensionFile FileName="configuration91.svcinfo" Name="configuration91.svcinfo" />
<ExtensionFile FileName="configuration.svcinfo" Name="configuration.svcinfo" />
</Extensions>
</ReferenceGroup>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
<contractRef ref="http://mattest.cwcec.com/LocWebServices/WebService1.asmx?wsdl" docRef="http://mattest.cwcec.com/LocWebServices/WebService1.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
<soap address="http://mattest.cwcec.com/LocWebServices/WebService1.asmx" xmlns:q1="http://tempuri.org/" binding="q1:WebService1Soap" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
<soap address="http://mattest.cwcec.com/LocWebServices/WebService1.asmx" xmlns:q2="http://tempuri.org/" binding="q2:WebService1Soap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
</discovery>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configurationSnapshot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:xml-wcfconfigurationsnapshot">
<behaviors />
<bindings>
<binding digest="System.ServiceModel.Configuration.BasicHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data name=&quot;WebService1Soap&quot; /&gt;" bindingType="basicHttpBinding" name="WebService1Soap" />
<binding digest="System.ServiceModel.Configuration.CustomBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data name=&quot;WebService1Soap12&quot;&gt;&lt;httpTransport /&gt;&lt;textMessageEncoding messageVersion=&quot;Soap12&quot; /&gt;&lt;/Data&gt;" bindingType="customBinding" name="WebService1Soap12" />
</bindings>
<endpoints>
<endpoint normalizedDigest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://mattest.cwcec.com/LocWebServices/WebService1.asmx&quot; binding=&quot;basicHttpBinding&quot; bindingConfiguration=&quot;WebService1Soap&quot; contract=&quot;MCSService.WebService1Soap&quot; name=&quot;WebService1Soap&quot; /&gt;" digest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://mattest.cwcec.com/LocWebServices/WebService1.asmx&quot; binding=&quot;basicHttpBinding&quot; bindingConfiguration=&quot;WebService1Soap&quot; contract=&quot;MCSService.WebService1Soap&quot; name=&quot;WebService1Soap&quot; /&gt;" contractName="MCSService.WebService1Soap" name="WebService1Soap" />
<endpoint normalizedDigest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://mattest.cwcec.com/LocWebServices/WebService1.asmx&quot; binding=&quot;customBinding&quot; bindingConfiguration=&quot;WebService1Soap12&quot; contract=&quot;MCSService.WebService1Soap&quot; name=&quot;WebService1Soap12&quot; /&gt;" digest="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&lt;Data address=&quot;http://mattest.cwcec.com/LocWebServices/WebService1.asmx&quot; binding=&quot;customBinding&quot; bindingConfiguration=&quot;WebService1Soap12&quot; contract=&quot;MCSService.WebService1Soap&quot; name=&quot;WebService1Soap12&quot; /&gt;" contractName="MCSService.WebService1Soap" name="WebService1Soap12" />
</endpoints>
</configurationSnapshot>

View File

@ -0,0 +1,437 @@
<?xml version="1.0" encoding="utf-8"?>
<SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="3WsJQm8+47Y+tKXgcQf3xwpSakU=">
<bindingConfigurations>
<bindingConfiguration bindingType="basicHttpBinding" name="WebService1Soap">
<properties>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>WebService1Soap</serializedValue>
</property>
<property path="/closeTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/openTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/receiveTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/sendTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/allowCookies" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/bypassProxyOnLocal" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/hostNameComparisonMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HostNameComparisonMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>StrongWildcard</serializedValue>
</property>
<property path="/maxBufferPoolSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/maxBufferSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>65536</serializedValue>
</property>
<property path="/maxReceivedMessageSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/proxyAddress" isComplexType="false" isExplicitlyDefined="false" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/readerQuotas" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement</serializedValue>
</property>
<property path="/readerQuotas/maxDepth" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxStringContentLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxArrayLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxBytesPerRead" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/readerQuotas/maxNameTableCharCount" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/textEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.Text.Encoding, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Text.UTF8Encoding</serializedValue>
</property>
<property path="/transferMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.TransferMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Buffered</serializedValue>
</property>
<property path="/useDefaultWebProxy" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/messageEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.WSMessageEncoding, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Text</serializedValue>
</property>
<property path="/security" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.BasicHttpSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.BasicHttpSecurityElement</serializedValue>
</property>
<property path="/security/mode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.BasicHttpSecurityMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpTransportSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.HttpTransportSecurityElement</serializedValue>
</property>
<property path="/security/transport/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpClientCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport/proxyCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpProxyCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>None</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/policyEnforcement" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.PolicyEnforcement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Never</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/protectionScenario" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.ProtectionScenario, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>TransportSelected</serializedValue>
</property>
<property path="/security/transport/extendedProtectionPolicy/customServiceNames" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>(集合)</serializedValue>
</property>
<property path="/security/transport/realm" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/security/message" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.BasicHttpMessageSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.BasicHttpMessageSecurityElement</serializedValue>
</property>
<property path="/security/message/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.BasicHttpMessageCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>UserName</serializedValue>
</property>
<property path="/security/message/algorithmSuite" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.Security.SecurityAlgorithmSuite, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Default</serializedValue>
</property>
</properties>
</bindingConfiguration>
<bindingConfiguration bindingType="customBinding" name="WebService1Soap12">
<properties>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>WebService1Soap12</serializedValue>
</property>
<property path="/closeTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/openTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/receiveTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/sendTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/textMessageEncoding" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.TextMessageEncodingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.TextMessageEncodingElement</serializedValue>
</property>
<property path="/textMessageEncoding/maxReadPoolSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>64</serializedValue>
</property>
<property path="/textMessageEncoding/maxWritePoolSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>16</serializedValue>
</property>
<property path="/textMessageEncoding/messageVersion" isComplexType="false" isExplicitlyDefined="true" clrType="System.ServiceModel.Channels.MessageVersion, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Soap12</serializedValue>
</property>
<property path="/textMessageEncoding/readerQuotas" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement</serializedValue>
</property>
<property path="/textMessageEncoding/readerQuotas/maxDepth" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/textMessageEncoding/readerQuotas/maxStringContentLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/textMessageEncoding/readerQuotas/maxArrayLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/textMessageEncoding/readerQuotas/maxBytesPerRead" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/textMessageEncoding/readerQuotas/maxNameTableCharCount" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/textMessageEncoding/writeEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.Text.Encoding, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Text.UTF8Encoding</serializedValue>
</property>
<property path="/httpTransport" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpTransportElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.HttpTransportElement</serializedValue>
</property>
<property path="/httpTransport/manualAddressing" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/httpTransport/maxBufferPoolSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>524288</serializedValue>
</property>
<property path="/httpTransport/maxReceivedMessageSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>65536</serializedValue>
</property>
<property path="/httpTransport/allowCookies" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/httpTransport/requestInitializationTimeout" isComplexType="false" isExplicitlyDefined="false" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>00:00:00</serializedValue>
</property>
<property path="/httpTransport/authenticationScheme" isComplexType="false" isExplicitlyDefined="false" clrType="System.Net.AuthenticationSchemes, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Anonymous</serializedValue>
</property>
<property path="/httpTransport/bypassProxyOnLocal" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/httpTransport/decompressionEnabled" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>True</serializedValue>
</property>
<property path="/httpTransport/hostNameComparisonMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HostNameComparisonMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>StrongWildcard</serializedValue>
</property>
<property path="/httpTransport/keepAliveEnabled" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>True</serializedValue>
</property>
<property path="/httpTransport/maxBufferSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>65536</serializedValue>
</property>
<property path="/httpTransport/maxPendingAccepts" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
<property path="/httpTransport/messageHandlerFactory" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpMessageHandlerFactoryElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.HttpMessageHandlerFactoryElement</serializedValue>
</property>
<property path="/httpTransport/messageHandlerFactory/handlers" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.DelegatingHandlerElementCollection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>(集合)</serializedValue>
</property>
<property path="/httpTransport/messageHandlerFactory/type" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/httpTransport/proxyAddress" isComplexType="false" isExplicitlyDefined="false" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/httpTransport/proxyAuthenticationScheme" isComplexType="false" isExplicitlyDefined="false" clrType="System.Net.AuthenticationSchemes, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Anonymous</serializedValue>
</property>
<property path="/httpTransport/realm" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/httpTransport/transferMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.TransferMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Buffered</serializedValue>
</property>
<property path="/httpTransport/unsafeConnectionNtlmAuthentication" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/httpTransport/useDefaultWebProxy" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>True</serializedValue>
</property>
<property path="/httpTransport/extendedProtectionPolicy" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement</serializedValue>
</property>
<property path="/httpTransport/extendedProtectionPolicy/policyEnforcement" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.PolicyEnforcement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Never</serializedValue>
</property>
<property path="/httpTransport/extendedProtectionPolicy/protectionScenario" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.ProtectionScenario, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>TransportSelected</serializedValue>
</property>
<property path="/httpTransport/extendedProtectionPolicy/customServiceNames" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>(集合)</serializedValue>
</property>
<property path="/httpTransport/webSocketSettings" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.WebSocketTransportSettingsElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.WebSocketTransportSettingsElement</serializedValue>
</property>
<property path="/httpTransport/webSocketSettings/transportUsage" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.Channels.WebSocketTransportUsage, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>Never</serializedValue>
</property>
<property path="/httpTransport/webSocketSettings/createNotificationOnConnection" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/httpTransport/webSocketSettings/keepAliveInterval" isComplexType="false" isExplicitlyDefined="false" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>00:00:00</serializedValue>
</property>
<property path="/httpTransport/webSocketSettings/subProtocol" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/httpTransport/webSocketSettings/disablePayloadMasking" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/httpTransport/webSocketSettings/maxPendingConnections" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>0</serializedValue>
</property>
</properties>
</bindingConfiguration>
</bindingConfigurations>
<endpoints>
<endpoint name="WebService1Soap" contract="MCSService.WebService1Soap" bindingType="basicHttpBinding" address="http://mattest.cwcec.com/LocWebServices/WebService1.asmx" bindingConfiguration="WebService1Soap">
<properties>
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>http://mattest.cwcec.com/LocWebServices/WebService1.asmx</serializedValue>
</property>
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/binding" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>basicHttpBinding</serializedValue>
</property>
<property path="/bindingConfiguration" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>WebService1Soap</serializedValue>
</property>
<property path="/contract" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>MCSService.WebService1Soap</serializedValue>
</property>
<property path="/headers" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.AddressHeaderCollectionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.AddressHeaderCollectionElement</serializedValue>
</property>
<property path="/headers/headers" isComplexType="false" isExplicitlyDefined="true" clrType="System.ServiceModel.Channels.AddressHeaderCollection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>&lt;Header /&gt;</serializedValue>
</property>
<property path="/identity" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.IdentityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.IdentityElement</serializedValue>
</property>
<property path="/identity/userPrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.UserPrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.UserPrincipalNameElement</serializedValue>
</property>
<property path="/identity/userPrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/servicePrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.ServicePrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.ServicePrincipalNameElement</serializedValue>
</property>
<property path="/identity/servicePrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/dns" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.DnsElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.DnsElement</serializedValue>
</property>
<property path="/identity/dns/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/rsa" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.RsaElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.RsaElement</serializedValue>
</property>
<property path="/identity/rsa/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificate" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateElement</serializedValue>
</property>
<property path="/identity/certificate/encodedValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateReferenceElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateReferenceElement</serializedValue>
</property>
<property path="/identity/certificateReference/storeName" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreName, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>My</serializedValue>
</property>
<property path="/identity/certificateReference/storeLocation" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreLocation, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>LocalMachine</serializedValue>
</property>
<property path="/identity/certificateReference/x509FindType" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.X509FindType, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>FindBySubjectDistinguishedName</serializedValue>
</property>
<property path="/identity/certificateReference/findValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference/isChainIncluded" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>WebService1Soap</serializedValue>
</property>
<property path="/kind" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/endpointConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
</properties>
</endpoint>
<endpoint name="WebService1Soap12" contract="MCSService.WebService1Soap" bindingType="customBinding" address="http://mattest.cwcec.com/LocWebServices/WebService1.asmx" bindingConfiguration="WebService1Soap12">
<properties>
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>http://mattest.cwcec.com/LocWebServices/WebService1.asmx</serializedValue>
</property>
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/binding" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>customBinding</serializedValue>
</property>
<property path="/bindingConfiguration" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>WebService1Soap12</serializedValue>
</property>
<property path="/contract" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>MCSService.WebService1Soap</serializedValue>
</property>
<property path="/headers" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.AddressHeaderCollectionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.AddressHeaderCollectionElement</serializedValue>
</property>
<property path="/headers/headers" isComplexType="false" isExplicitlyDefined="true" clrType="System.ServiceModel.Channels.AddressHeaderCollection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>&lt;Header /&gt;</serializedValue>
</property>
<property path="/identity" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.IdentityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.IdentityElement</serializedValue>
</property>
<property path="/identity/userPrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.UserPrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.UserPrincipalNameElement</serializedValue>
</property>
<property path="/identity/userPrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/servicePrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.ServicePrincipalNameElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.ServicePrincipalNameElement</serializedValue>
</property>
<property path="/identity/servicePrincipalName/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/dns" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.DnsElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.DnsElement</serializedValue>
</property>
<property path="/identity/dns/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/rsa" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.RsaElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.RsaElement</serializedValue>
</property>
<property path="/identity/rsa/value" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificate" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateElement</serializedValue>
</property>
<property path="/identity/certificate/encodedValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.CertificateReferenceElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>System.ServiceModel.Configuration.CertificateReferenceElement</serializedValue>
</property>
<property path="/identity/certificateReference/storeName" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreName, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>My</serializedValue>
</property>
<property path="/identity/certificateReference/storeLocation" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.StoreLocation, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>LocalMachine</serializedValue>
</property>
<property path="/identity/certificateReference/x509FindType" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Cryptography.X509Certificates.X509FindType, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>FindBySubjectDistinguishedName</serializedValue>
</property>
<property path="/identity/certificateReference/findValue" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/identity/certificateReference/isChainIncluded" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>False</serializedValue>
</property>
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue>WebService1Soap12</serializedValue>
</property>
<property path="/kind" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
<property path="/endpointConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<serializedValue />
</property>
</properties>
</endpoint>
</endpoints>
</SavedWcfConfigurationInformation>

View File

@ -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();
}
}
}

View File

@ -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();
}
}
}

View File

@ -1223,6 +1223,8 @@
<Content Include="Party\TwoOneGoodSelectionEdit.aspx" />
<Content Include="Party\WorkPlan.aspx" />
<Content Include="Party\WorkPlanEdit.aspx" />
<Content Include="Personal\PersonMeeting.aspx" />
<Content Include="Personal\PersonMeetingEdit.aspx" />
<Content Include="Personal\FileSearch.aspx" />
<Content Include="Personal\PersonCheckInfo.aspx" />
<Content Include="Personal\PersonDuty.aspx" />
@ -12486,6 +12488,20 @@
<Compile Include="Party\WorkPlanEdit.aspx.designer.cs">
<DependentUpon>WorkPlanEdit.aspx</DependentUpon>
</Compile>
<Compile Include="Personal\PersonMeeting.aspx.cs">
<DependentUpon>PersonMeeting.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Personal\PersonMeeting.aspx.designer.cs">
<DependentUpon>PersonMeeting.aspx</DependentUpon>
</Compile>
<Compile Include="Personal\PersonMeetingEdit.aspx.cs">
<DependentUpon>PersonMeetingEdit.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Personal\PersonMeetingEdit.aspx.designer.cs">
<DependentUpon>PersonMeetingEdit.aspx</DependentUpon>
</Compile>
<Compile Include="Personal\FileSearch.aspx.cs">
<DependentUpon>FileSearch.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>

View File

@ -64,6 +64,7 @@
{
if (!IsPostBack)
{
//BLL.MCSWebService.getPoDetails(3919);
string userdata = Request.Params["basedata"];
if (!string.IsNullOrEmpty(userdata))
{

View File

@ -0,0 +1,95 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonMeeting.aspx.cs" ValidateRequest="false"
Inherits="FineUIPro.Web.Personal.PersonMeeting" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>视频会议</title>
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
<f:Panel ID="Panel1" runat="server" Margin="5px" BodyPadding="5px" ShowBorder="false"
ShowHeader="false" Layout="VBox" BoxConfigAlign="Stretch">
<Items>
<f:Grid ID="Grid1" ShowBorder="true" EnableAjax="false" ShowHeader="false" Title="视频会议" EnableCollapse="true"
runat="server" BoxFlex="1" DataKeyNames="MeetingId" DataIDField="MeetingId" AllowSorting="true" SortField="MeetingDate" SortDirection="DESC" EnableColumnLines="true"
AllowPaging="true" IsDatabasePaging="true" PageSize="10" EnableRowDoubleClickEvent="true" EnableTextSelection="True"
OnRowDoubleClick="Grid1_RowDoubleClick" OnPageIndexChange="Grid1_PageIndexChange">
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Top" runat="server" ToolbarAlign="Left">
<Items>
<f:TextBox ID="txtMeetingTitle" runat="server" Label="主题" Width="250px" LabelWidth="80px"
LabelAlign="Right">
</f:TextBox>
<f:ToolbarFill runat="server"></f:ToolbarFill>
<f:Button ID="btnSearch" Icon="SystemSearch" EnablePostBack="true" Text="查询" runat="server" OnClick="btnSearch_Click">
</f:Button>
<f:Button ID="btnNew" Icon="Add" EnablePostBack="true" Text="新增" runat="server">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
<Columns>
<f:TemplateField ColumnID="tfPageIndex" Width="55px" HeaderText="序号" HeaderTextAlign="Center" TextAlign="Center"
EnableLock="true" Locked="False">
<ItemTemplate>
<asp:Label ID="lblPageIndex" runat="server" Text='<%# Grid1.PageIndex * Grid1.PageSize + Container.DataItemIndex + 1 %>'></asp:Label>
</ItemTemplate>
</f:TemplateField>
<f:RenderField Width="250px" ColumnID="MeetingTitle" DataField="MeetingTitle"
SortField="MeetingTitle" FieldType="String" HeaderText="主题" TextAlign="Left"
HeaderTextAlign="Center">
</f:RenderField>
<f:RenderField Width="150px" ColumnID="MeetingDate" DataField="MeetingDate"
SortField="MeetingDate" FieldType="String" HeaderText="时间" TextAlign="center"
HeaderTextAlign="Center">
</f:RenderField>
<f:HyperLinkField HeaderText="链接" DataTextField="ConferenceLink" Text="加入会议"
DataTextFormatString="{0}" DataNavigateUrlFields="ConferenceLink" UrlEncode="false"
DataNavigateUrlFormatString="{0}" Target="_bank" ExpandUnusedSpace="true" TextAlign="Left" />
</Columns>
<Listeners>
<f:Listener Event="beforerowcontextmenu" Handler="onRowContextMenu" />
</Listeners>
<PageItems>
<f:ToolbarSeparator ID="ToolbarSeparator1" runat="server">
</f:ToolbarSeparator>
<f:ToolbarText ID="ToolbarText1" runat="server" Text="每页记录数:">
</f:ToolbarText>
<f:DropDownList runat="server" ID="ddlPageSize" Width="80px"
AutoPostBack="true" OnSelectedIndexChanged="ddlPageSize_SelectedIndexChanged">
</f:DropDownList>
<f:ToolbarFill runat="server">
</f:ToolbarFill>
</PageItems>
</f:Grid>
</Items>
</f:Panel>
<f:Window ID="Window1" Title="编辑" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" OnClose="Window1_Close"
Width="800px" Height="430px">
</f:Window>
<f:Menu ID="Menu1" runat="server">
<Items>
<f:MenuButton ID="btnMenuModify" EnablePostBack="true" runat="server" Hidden="true" Text="修改" Icon="Pencil"
OnClick="btnMenuModify_Click">
</f:MenuButton>
<f:MenuButton ID="btnMenuDel" EnablePostBack="true" runat="server" Hidden="true" Icon="Delete" Text="删除" ConfirmText="确定删除当前数据?"
OnClick="btnMenuDel_Click">
</f:MenuButton>
</Items>
</f:Menu>
</form>
<script type="text/javascript">
var menuID = '<%= Menu1.ClientID %>';
// 返回false来阻止浏览器右键菜单
function onRowContextMenu(event, rowId) {
F(menuID).show(); //showAt(event.pageX, event.pageY);
return false;
}
</script>
</body>
</html>

View File

@ -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;";
}
}
/// <summary>
/// 绑定数据
/// </summary>
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<SqlParameter> listStr = new List<SqlParameter>();
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();
}
/// <summary>
/// 删除
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
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);
}
}
/// <summary>
/// 编辑数据方法
/// </summary>
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, "查看 - ")));
}
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
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();
}
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Window1_Close(object sender, WindowCloseEventArgs e)
{
BindGrid();
}
}
}

View File

@ -0,0 +1,159 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace FineUIPro.Web.Personal {
public partial class PersonMeeting {
/// <summary>
/// form1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// PageManager1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.PageManager PageManager1;
/// <summary>
/// Panel1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel1;
/// <summary>
/// Grid1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Grid Grid1;
/// <summary>
/// Toolbar1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar1;
/// <summary>
/// txtMeetingTitle 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtMeetingTitle;
/// <summary>
/// btnSearch 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSearch;
/// <summary>
/// btnNew 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnNew;
/// <summary>
/// lblPageIndex 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblPageIndex;
/// <summary>
/// ToolbarSeparator1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
/// <summary>
/// ToolbarText1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ToolbarText ToolbarText1;
/// <summary>
/// ddlPageSize 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList ddlPageSize;
/// <summary>
/// Window1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Window Window1;
/// <summary>
/// Menu1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Menu Menu1;
/// <summary>
/// btnMenuModify 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.MenuButton btnMenuModify;
/// <summary>
/// btnMenuDel 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.MenuButton btnMenuDel;
}
}

View File

@ -0,0 +1,62 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.Personal.PersonMeetingEdit" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>设计专业</title>
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow>
<Items>
<f:TextBox ID="txtMeetingTitle" runat="server" Label="主题" Required="true"
MaxLength="500" ShowRedStar="true" FocusOnPageLoad="true" >
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList runat="server" ID="drpAttendeeManIds" Label="参会人员" AutoPostBack="true" OnSelectedIndexChanged="drpAttendeeManIds_SelectedIndexChanged"
EnableEdit="true" ShowRedStar="true" EnableMultiSelect="true" EnableCheckBoxSelect="true"></f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtConferenceLink" runat="server" Label="链接地址" Required="true" MaxLength="2000"
ShowRedStar="true">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DatePicker ID="txtMeetingDate" runat="server" Label="会议日期" DateFormatString="yyyy-MM-dd HH:mm"
ShowRedStar="true" Required="true" ShowTime="true" ShowSecond="false">
</f:DatePicker>
<f:DropDownList ID="drpCompileMan" runat="server" Label="整理人">
</f:DropDownList>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:HiddenField ID="hdCheckerId" runat="server">
</f:HiddenField>
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
</f:Button>
<f:Button ID="btnClose" EnablePostBack="false"
runat="server" Icon="SystemClose">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
</form>
</body>
</html>

View File

@ -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
/// <summary>
/// 主键
/// </summary>
public string MeetingId
{
get
{
return (string)ViewState["MeetingId"];
}
set
{
ViewState["MeetingId"] = value;
}
}
#endregion
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
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);
}
}
}

View File

@ -0,0 +1,123 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace FineUIPro.Web.Personal {
public partial class PersonMeetingEdit {
/// <summary>
/// form1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// PageManager1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.PageManager PageManager1;
/// <summary>
/// SimpleForm1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Form SimpleForm1;
/// <summary>
/// txtMeetingTitle 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtMeetingTitle;
/// <summary>
/// drpAttendeeManIds 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpAttendeeManIds;
/// <summary>
/// txtConferenceLink 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtConferenceLink;
/// <summary>
/// txtMeetingDate 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DatePicker txtMeetingDate;
/// <summary>
/// drpCompileMan 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpCompileMan;
/// <summary>
/// Toolbar1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar1;
/// <summary>
/// hdCheckerId 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.HiddenField hdCheckerId;
/// <summary>
/// btnSave 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSave;
/// <summary>
/// btnClose 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnClose;
}
}

View File

@ -6,5 +6,14 @@
<TreeNode id="2A3F8526-95C7-4D30-B2DD-DD26696BE150" Text="工作量统计" NavigateUrl="JDGL/WBS/WorkloadStatistics.aspx"></TreeNode>
<TreeNode id="59AAE0F0-2DB6-4065-B304-7E2C56EC3E5D" Text="赢得值曲线" NavigateUrl="JDGL/CostAnalysis/EarnedValueCurve.aspx"></TreeNode>
<TreeNode id="9CAF311E-C234-4DA4-B235-D4E478FBD80E" Text="里程碑" NavigateUrl="JDGL/WBS/MilePost.aspx"></TreeNode>
<TreeNode id="92CBD072-20F8-45B1-9D17-6F7494DD2020" Text="数据导入" NavigateUrl=""></TreeNode>
<TreeNode id="92CBD072-20F8-45B1-9D17-6F7494DD2020" Text="数据导入" NavigateUrl=""><TreeNode id="F3AA42B3-5776-4992-A625-1216C579FEDE" Text="项目进度情况" NavigateUrl="JDGL/Check/ProgressCompletion.aspx"></TreeNode>
<TreeNode id="2AE9D982-A499-497F-8F54-ADDA5856887E" Text="工程量完成情况" NavigateUrl="JDGL/Check/QuantityCompletion.aspx"></TreeNode>
<TreeNode id="82E513B9-1A6F-495A-A633-EBC89CE5273A" Text="低温储罐完成情况" NavigateUrl="JDGL/Check/LowTankCompletion.aspx"></TreeNode>
<TreeNode id="4ACA0647-4D44-462E-8277-1EF9F100566A" Text="钢结构完成情况" NavigateUrl="JDGL/Check/SteelStructureCompletion.aspx"></TreeNode>
<TreeNode id="92FD1845-F56C-4111-8BA0-91838A18B750" Text="设备完成情况" NavigateUrl="JDGL/Check/EquipmentCompletion.aspx"></TreeNode>
<TreeNode id="9AE07A76-3A54-4414-BC8C-C86A18C737BA" Text="管道完成情况" NavigateUrl="JDGL/Check/PipelineCompletion.aspx"></TreeNode>
<TreeNode id="8A8A1050-F227-42ED-9456-8CB5ECA36512" Text="电气完成情况" NavigateUrl="JDGL/Check/ElectricalCompletion.aspx"></TreeNode>
<TreeNode id="7EC1FBAF-BEC9-46CD-9E3B-0D0093B4E1C2" Text="仪表完成情况" NavigateUrl="JDGL/Check/MeterCompletion.aspx"></TreeNode>
<TreeNode id="C7037A5D-D8A6-4C1C-A5B8-2083C31C0A7B" Text="全厂地下管网完成情况" NavigateUrl="JDGL/Check/UndergroundPipeCompletion.aspx"></TreeNode>
</TreeNode>
</Tree>

View File

@ -6,4 +6,5 @@
<TreeNode id="C6EF06E5-9019-4583-8122-EA94FCC545C6" Text="员工总结" NavigateUrl=""></TreeNode>
<TreeNode id="AAF841AA-2EE8-4FEC-B1FB-B978736C6E1F" Text="员工责任书" NavigateUrl="Personal/PersonDuty.aspx"></TreeNode>
<TreeNode id="CB373458-30B0-4850-ABFF-B38D40A04D43" Text="员工绩效考核结果" NavigateUrl="Personal/PersonCheckInfo.aspx"></TreeNode>
<TreeNode id="6549EF60-1DED-4912-8D2D-7B32A80A2DEC" Text="视频会议" NavigateUrl="Personal/PersonMeeting.aspx"></TreeNode>
</Tree>

View File

@ -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> Person_Meeting
{
get
{
return this.GetTable<Person_Meeting>();
}
}
public System.Data.Linq.Table<Person_PersonPlan> 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<System.DateTime> _MeetingDate;
private string _MeetingTitle;
private string _AttendeeManIds;
private string _ConferenceLink;
private string _Remark;
private EntityRef<Sys_User> _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<System.DateTime> 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<Sys_User>);
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<System.DateTime> 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> _Person_Duty_Sys_User2;
private EntitySet<Person_Meeting> _Person_Meeting;
private EntitySet<Person_PersonPlan> _Person_PersonPlan;
private EntitySet<Person_QuarterCheck> _Person_QuarterCheck;
@ -265018,6 +265278,7 @@ namespace Model
this._Person_Duty = new EntitySet<Person_Duty>(new Action<Person_Duty>(this.attach_Person_Duty), new Action<Person_Duty>(this.detach_Person_Duty));
this._Person_Duty_Sys_User1 = new EntitySet<Person_Duty>(new Action<Person_Duty>(this.attach_Person_Duty_Sys_User1), new Action<Person_Duty>(this.detach_Person_Duty_Sys_User1));
this._Person_Duty_Sys_User2 = new EntitySet<Person_Duty>(new Action<Person_Duty>(this.attach_Person_Duty_Sys_User2), new Action<Person_Duty>(this.detach_Person_Duty_Sys_User2));
this._Person_Meeting = new EntitySet<Person_Meeting>(new Action<Person_Meeting>(this.attach_Person_Meeting), new Action<Person_Meeting>(this.detach_Person_Meeting));
this._Person_PersonPlan = new EntitySet<Person_PersonPlan>(new Action<Person_PersonPlan>(this.attach_Person_PersonPlan), new Action<Person_PersonPlan>(this.detach_Person_PersonPlan));
this._Person_QuarterCheck = new EntitySet<Person_QuarterCheck>(new Action<Person_QuarterCheck>(this.attach_Person_QuarterCheck), new Action<Person_QuarterCheck>(this.detach_Person_QuarterCheck));
this._Person_QuarterCheckApprove = new EntitySet<Person_QuarterCheckApprove>(new Action<Person_QuarterCheckApprove>(this.attach_Person_QuarterCheckApprove), new Action<Person_QuarterCheckApprove>(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> 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> 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