diff --git a/.gitignore b/.gitignore index e1775565..d7b77dd1 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,4 @@ /SGGL/FineUIPro.Web/FileUpload/Transfer/PunchlistFrom/2025-03 /SGGL/FineUIPro.Web/FileUpload/Gjsx/2025-03 /SGGLPackFile2 +/SGGL/FineUIPro.Web/upload diff --git a/DataBase/版本日志/SUBQHSE_V2025-03-25-bwj.sql b/DataBase/版本日志/SUBQHSE_V2025-03-25-bwj.sql new file mode 100644 index 00000000..6c9ec1fe --- /dev/null +++ b/DataBase/版本日志/SUBQHSE_V2025-03-25-bwj.sql @@ -0,0 +1,349 @@ + +--ȡǰ˹̨Ԥ +ALTER PROCEDURE [dbo].[Sp_WorkBench_GetToDoItems] + @userId NVARCHAR(200)=NULL, + @sType char(10)=null +AS +/*ȡǰ˴*/ +BEGIN +SELECT HazardRegisterId AS DataId + ,'B6BE5FE0-CB84-47FF-A6C3-5AD9E1CCE079' AS MenuId + ,'ȫѲ' AS MenuName + ,project.ProjectName + ,register.RegisterDef AS Content + ,users.UserId + ,users.UserName + ,register.RegisterDate AS DataTime + ,CONVERT(varchar(100),register.RegisterDate, 23) AS DataTimeStr + ,'HSSE/HiddenInspection/HiddenRectificationRectify.aspx?HazardRegisterId='+register.HazardRegisterId AS PCUrl +FROM HSSE_Hazard_HazardRegister AS register +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +WHERE (@sType='1' or @sType='2') and register.ProjectId = projectUser.ProjectId and +((register.states = '1' AND (register.ResponsibleMan =@userId OR register.CCManIds LIKE ('%'+@userId+'%') )) +) +UNION ALL + +SELECT HazardRegisterId AS DataId + ,'B6BE5FE0-CB84-47FF-A6C3-5AD9E1CCE079' AS MenuId + ,'ȫѲȷ' AS MenuName + ,project.ProjectName + ,register.RegisterDef AS Content + ,users.UserId + ,users.UserName + ,register.RegisterDate AS DataTime + ,CONVERT(varchar(100),register.RegisterDate, 23) AS DataTimeStr + ,'HSSE/HiddenInspection/HiddenRectificationConfirm.aspx?HazardRegisterId='+register.HazardRegisterId AS PCUrl +FROM HSSE_Hazard_HazardRegister AS register +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +WHERE (@sType='1' or @sType='2') and register.ProjectId = projectUser.ProjectId and +register.states = '2' AND register.CheckManId =@userId + +UNION ALL +SELECT CheckControlCode AS DataId + ,'B3E99BD9-FDC7-4F15-8C3C-A7821AC9E306' AS MenuId + ,'Ѳ' AS MenuName + ,project.ProjectName + ,checkControl.QuestionDef AS Content + ,users.UserId + ,users.UserName + ,checkControl.CheckDate AS DataTime + ,CONVERT(varchar(100),checkControl.CheckDate, 23) AS DataTimeStr + ,'CQMS/Check/ChecklistEdit.aspx?CheckControlCode='+checkControl.CheckControlCode AS PCUrl +FROM Check_CheckControl AS checkControl +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +WHERE (@sType='1' or @sType='2') and checkControl.ProjectId = projectUser.ProjectId and +checkControl.State != '7' AND checkControl.CheckControlCode in (select CheckControlCode from Check_CheckControlApprove approve where approve.ApproveType!='S' and approve.ApproveMan=@userId and approve.ApproveDate is null ) + +UNION ALL +SELECT GJSXID AS DataId + ,'0BEA2126-7A48-40EB-8E21-99148E91A22B' AS MenuId + ,'ؼ' AS MenuName + ,project.ProjectName + ,GJSX.Detail AS Content + ,users.UserId + ,users.UserName + ,GJSX.CreateDate AS DataTime + ,CONVERT(varchar(100),GJSX.CreateDate, 23) AS DataTimeStr + ,'PZHGL/GJSX/GJSXListEdit.aspx?ToDo=ToDo&EditType=Edit&ID='+GJSXID AS PCUrl +FROM GJSX +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +WHERE (@sType='1' or @sType='2') and GJSX.ProjectId = projectUser.ProjectId and +GJSX.State != 0 AND (((select count(*) from GJSX_detail detail where detail.Progress_user=@userId and detail.GJSXID=GJSX.GJSXID)=0 +and (select count(*) from GJSX_Process process where process.UserId=@userId and process.GJSXID=GJSX.GJSXID)>0) +or (GJSX.User_Acceptance like '%'+@userId+'%' and (select count(*) from GJSX_detail detail where detail.GJSXID=GJSX.GJSXID)=(select count(*) from GJSX_Process process where process.GJSXID=GJSX.GJSXID)) +) +UNION ALL +SELECT ConstructSolutionId AS DataId + ,'91C4BFDB-0A51-4992-99CC-EB4EC185593D' AS MenuId + ,'ʩ' AS MenuName + ,project.ProjectName + ,Solution.SolutionName AS Content + ,users.UserId + ,users.UserName + ,Solution.CompileDate AS DataTime + ,CONVERT(varchar(100),Solution.CompileDate, 23) AS DataTimeStr + ,'CQMS/Solution/EditConstructSolution.aspx?ConstructSolutionId='+Solution.ConstructSolutionId AS PCUrl +FROM Solution_CQMSConstructSolution AS Solution +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +WHERE (@sType='1' or @sType='2') and Solution.ProjectId = projectUser.ProjectId and +Solution.State!='3' +AND Solution.ConstructSolutionId in +(select top 1 ConstructSolutionId from ( +SELECT Solution_CQMSConstructSolutionApprove.* +FROM Solution_CQMSConstructSolutionApprove, +(SELECT MIN([order]) AS [order],ConstructSolutionId FROM Solution_CQMSConstructSolutionApprove where ApproveType!='S' and ApproveDate is null GROUP BY ConstructSolutionId )b +WHERE Solution_CQMSConstructSolutionApprove.[order] = b.[order] and Solution_CQMSConstructSolutionApprove.ConstructSolutionId = b.ConstructSolutionId + ) approve +where approve.ApproveMan=@userId ) + +UNION ALL +SELECT InspectionId AS DataId + ,'4781f467-35bf-4cf2-aaa4-7960a175eb61' AS MenuId + ,'֪ͨ' AS MenuName + ,project.ProjectName + ,InspectionManagement.AcceptanceSite AS Content + ,users.UserId + ,users.UserName + ,InspectionManagement.CompileDate AS DataTime + ,CONVERT(varchar(100),InspectionManagement.CompileDate, 23) AS DataTimeStr + ,'CQMS/ProcessControl/InspectionNoticeEdit.aspx?View=View&InspectionId='+InspectionManagement.InspectionId AS PCUrl +FROM ProcessControl_InspectionManagement AS InspectionManagement +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +WHERE (@sType='1' or @sType='2') and InspectionManagement.ProjectId=projectUser.ProjectId and +dateadd(day,3,InspectionManagement.CompileDate)>getdate() and InspectionManagement.AcceptanceCheckMan like '%'+@userId+'%' +UNION ALL +SELECT CheckSpecialId AS DataId + ,'1B08048F-93ED-4E84-AE65-DB7917EA2DFB' AS MenuId + ,'ר' AS MenuName + ,project.ProjectName + ,CheckItemSet.CheckItemName AS Content + ,users.UserId + ,users.UserName + ,CheckSpecial.CheckTime AS DataTime + ,CONVERT(varchar(100),CheckSpecial.CheckTime, 23) AS DataTimeStr + ,'HSSE/Check/CheckSpecialView.aspx?CheckSpecialId='+CheckSpecial.CheckSpecialId AS PCUrl +FROM Check_CheckSpecial AS CheckSpecial +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +LEFT JOIN Technique_CheckItemSet AS CheckItemSet ON CheckItemSet.CheckItemSetId =CheckSpecial.CheckItemSetId +WHERE (@sType='1' or @sType='2') and +dateadd(day,3,CheckSpecial.CheckTime)>getdate() and CheckSpecial.PartInPersonIds like '%'+@userId+'%' +and CheckSpecial.ProjectId = projectUser.ProjectId +UNION ALL +SELECT CheckColligationId AS DataId + ,'C198EBA8-9E23-4654-92E1-09C61105C522' AS MenuId + ,'ۺϼ' AS MenuName + ,project.ProjectName + ,case CheckType when '0' then 'ܼ' when '1' then '¼' else '' end AS Content + ,users.UserId + ,users.UserName + ,CheckColligation.CheckTime AS DataTime + ,CONVERT(varchar(100),CheckColligation.CheckTime, 23) AS DataTimeStr + ,'HSSE/Check/CheckColligationEdit.aspx?CheckColligationId='+CheckColligation.CheckColligationId AS PCUrl +FROM Check_CheckColligation AS CheckColligation +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +LEFT JOIN Sys_FlowOperate AS FlowOperate ON CheckColligation.CheckColligationId=FlowOperate.DataId +LEFT JOIN Sys_User AS OperateUser ON FlowOperate.OperaterId=OperateUser.UserId +WHERE (@sType='1' or @sType='2') and +FlowOperate.IsClosed <> 1 and FlowOperate.OperaterId=@userId +and CheckColligation.ProjectId = projectUser.ProjectId +UNION ALL +SELECT PatrolPlanId AS DataId + ,'D256E5C8-DC76-4F4D-BABE-A253418823F4' AS MenuId + ,'Ѳ' AS MenuName + ,project.ProjectName + ,HazardListItem.HazardItems AS Content + ,users.UserId + ,users.UserName + ,PatrolPlan.LimitCheckDate AS DataTime + ,CONVERT(varchar(100),PatrolPlan.LimitCheckDate, 23) AS DataTimeStr + ,'HSSE/Hazard/RoutingInspectionEdit.aspx?PatrolPlanId='+PatrolPlan.PatrolPlanId AS PCUrl +FROM Hazard_PatrolPlan AS PatrolPlan +left join Project_ProjectUser as projectUser on projectUser.UserId=@userId +LEFT JOIN Sys_User AS users ON users.UserId = projectUser.UserId +left join Base_Project as project on project.ProjectId =projectUser.ProjectId +LEFT JOIN Hazard_HazardSelectedItem AS HazardListItem on HazardListItem.HazardSelectedItemId=PatrolPlan.HazardSelectedItemId +WHERE (@sType='1' or @sType='2') and +dateadd(day,-3,PatrolPlan.LimitCheckDate)=22 and (select COUNT(*) from JDGL_QuantityCompletion WHERE DATENAME(year,GETDATE())=DATENAME(year,EndDate) and DATENAME(MONTH,GETDATE())=DATENAME(MONTH,EndDate))=0) +and (@sType='1' or @sType='2') and Project.ProjectId = pu.ProjectId --or (DATEADD(day,60,(select top 1 EndDate from JDGL_QuantityCompletion WHERE ProjectId=@projectId order by EndDate desc))=22 and +DATENAME(year,GETDATE())=DATENAME(year,MonthPlan.PlanDate) and DATENAME(MONTH,GETDATE())=DATENAME(MONTH,MonthPlan.PlanDate) +and MonthPlan.ProjectId = projectUser.ProjectId +and (@sType='1' or @sType='2') + +--ORDER BY DataTime DESC +END + + + + + +GO + + diff --git a/SGGL/BLL/.vs/BLL.csproj.dtbcache.json b/SGGL/BLL/.vs/BLL.csproj.dtbcache.json index b4bda2f7..0f2579a8 100644 --- a/SGGL/BLL/.vs/BLL.csproj.dtbcache.json +++ b/SGGL/BLL/.vs/BLL.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"E:\\诺必达\\五环\\SGGL\\BLL","ProjectFileName":"BLL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AnBang\\AnBangService.cs"},{"SourceFile":"API\\APIBaseInfoService.cs"},{"SourceFile":"API\\APICommonService.cs"},{"SourceFile":"API\\APIDoorServerService.cs"},{"SourceFile":"API\\APIGetHttpService.cs"},{"SourceFile":"API\\APIIDCardInfoService.cs"},{"SourceFile":"API\\APIPersonService.cs"},{"SourceFile":"API\\APIProjectService.cs"},{"SourceFile":"API\\APIUnitService.cs"},{"SourceFile":"API\\APIUpLoadFileService.cs"},{"SourceFile":"API\\APIUserService.cs"},{"SourceFile":"API\\CQMS\\ApiInspectionManagementService.cs"},{"SourceFile":"API\\CQMS\\BreakdownProjectService.cs"},{"SourceFile":"API\\CQMS\\QualityAssuranceService.cs"},{"SourceFile":"API\\HJGL\\APIGetHJDataService.cs"},{"SourceFile":"API\\HJGL\\APIHotProcessHardService.cs"},{"SourceFile":"API\\HJGL\\APINDETrustService.cs"},{"SourceFile":"API\\HJGL\\APIPipeJointService.cs"},{"SourceFile":"API\\HJGL\\APIPreWeldingDailyService.cs"},{"SourceFile":"API\\HJGL\\APIReportQueryService.cs"},{"SourceFile":"API\\HJGL\\APITestPackageService.cs"},{"SourceFile":"API\\HSSE\\APIGeneralEquipmentQualityService.cs"},{"SourceFile":"API\\HSSE\\APIPageDataService.cs"},{"SourceFile":"API\\HSSE\\APIChartAnalysisService.cs"},{"SourceFile":"API\\HSSE\\APICheckSpecialService.cs"},{"SourceFile":"API\\HSSE\\APIConstructSolutionService.cs"},{"SourceFile":"API\\HSSE\\APIEmergencyService.cs"},{"SourceFile":"API\\HSSE\\APIEquipmentQualityService.cs"},{"SourceFile":"API\\HSSE\\APIHazardListService.cs"},{"SourceFile":"API\\HSSE\\APIHazardRegisterService.cs"},{"SourceFile":"API\\HSSE\\APIHSEDiaryService.cs"},{"SourceFile":"API\\HSSE\\APIIncentiveNoticeService.cs"},{"SourceFile":"API\\HSSE\\APILicenseDataService.cs"},{"SourceFile":"API\\HSSE\\APILicenseFlowOperateService.cs"},{"SourceFile":"API\\HSSE\\APILicenseItemService.cs"},{"SourceFile":"API\\HSSE\\APIMeetingService.cs"},{"SourceFile":"API\\HSSE\\APIPauseNoticeService.cs"},{"SourceFile":"API\\HSSE\\APIPersonQualityService.cs"},{"SourceFile":"API\\HSSE\\APIPunishNoticeService.cs"},{"SourceFile":"API\\HSSE\\APIReceiveFileManagerService.cs"},{"SourceFile":"API\\HSSE\\APIRectifyNoticesService.cs"},{"SourceFile":"API\\HSSE\\APIResourcesService.cs"},{"SourceFile":"API\\HSSE\\APISeDinMonthReportService.cs"},{"SourceFile":"API\\HSSE\\APIServerTestPlanService.cs"},{"SourceFile":"API\\HSSE\\APIServerTestRecordService.cs"},{"SourceFile":"API\\HSSE\\APITestPlanService.cs"},{"SourceFile":"API\\HSSE\\APITestRecordService.cs"},{"SourceFile":"API\\HSSE\\APITrainingPlanService.cs"},{"SourceFile":"API\\HSSE\\APITrainingTaskService.cs"},{"SourceFile":"API\\HSSE\\APITrainRecordService.cs"},{"SourceFile":"BaseInfo\\AccidentTypeService.cs"},{"SourceFile":"BaseInfo\\BaseFactoryService.cs"},{"SourceFile":"BaseInfo\\CertificateService.cs"},{"SourceFile":"BaseInfo\\CNProfessionalService.cs"},{"SourceFile":"BaseInfo\\CostTypeService.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalService.cs"},{"SourceFile":"BaseInfo\\DocTypeService.cs"},{"SourceFile":"BaseInfo\\EmergencyTypeService.cs"},{"SourceFile":"BaseInfo\\GoodsCategoryService.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListTypeService.cs"},{"SourceFile":"BaseInfo\\HSSE_Hazard_HazardRegisterTypesService.cs"},{"SourceFile":"BaseInfo\\InspectionAreaService.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsTypeService.cs"},{"SourceFile":"BaseInfo\\LicenseTypeService.cs"},{"SourceFile":"BaseInfo\\ManageRuleTypeService.cs"},{"SourceFile":"BaseInfo\\PersonManageService.cs"},{"SourceFile":"BaseInfo\\PictureTypeService.cs"},{"SourceFile":"BaseInfo\\PositionService.cs"},{"SourceFile":"BaseInfo\\PostService.cs"},{"SourceFile":"BaseInfo\\PostTitleService.cs"},{"SourceFile":"BaseInfo\\PracticeCertificateService.cs"},{"SourceFile":"BaseInfo\\ProjectTypeService.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeService.cs"},{"SourceFile":"BaseInfo\\QuestionTypeService.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureService.cs"},{"SourceFile":"BaseInfo\\RiskLevelService.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsTypeService.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresService.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteTypeService.cs"},{"SourceFile":"BaseInfo\\SpecialEquipmentService.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeTypeService.cs"},{"SourceFile":"BaseInfo\\SteelService.cs"},{"SourceFile":"BaseInfo\\TestRunLicenseTypeService.cs"},{"SourceFile":"BaseInfo\\TestRunPerformanceStandardService.cs"},{"SourceFile":"BaseInfo\\TrainLevelService.cs"},{"SourceFile":"BaseInfo\\TrainTypeService.cs"},{"SourceFile":"BaseInfo\\TransferMajorService.cs"},{"SourceFile":"BaseInfo\\UnitTypeService.cs"},{"SourceFile":"BaseInfo\\WorkPostService.cs"},{"SourceFile":"BaseInfo\\WorkStageService.cs"},{"SourceFile":"BoSheng\\BOSHENGService.cs"},{"SourceFile":"Common\\AttachFileService.cs"},{"SourceFile":"Common\\CodeRecordsService.cs"},{"SourceFile":"Common\\CommonService.cs"},{"SourceFile":"Common\\CreateQRCodeService.cs"},{"SourceFile":"Common\\IDCardValid.cs"},{"SourceFile":"Common\\NPOIExcel.cs"},{"SourceFile":"Common\\NPOIHelper.cs"},{"SourceFile":"Common\\PrinterDocService.cs"},{"SourceFile":"Common\\ProjectDataFlowSetService.cs"},{"SourceFile":"Common\\Sys_DataTempService.cs"},{"SourceFile":"Common\\UploadFileService.cs"},{"SourceFile":"Common\\UpLoadImageService.cs"},{"SourceFile":"Common\\UserShowColumnsService.cs"},{"SourceFile":"Common\\WeatherService.cs"},{"SourceFile":"Common\\WeekDayService.cs"},{"SourceFile":"CostGoods\\MeasuresPlanService.cs"},{"SourceFile":"CostGoods\\PayRegistrationService.cs"},{"SourceFile":"CostGoods\\SubPayRegistrationService.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosureService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalItemService.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlanService.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalItemService.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalService.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonSteelService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonWeldMethodService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeService.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentService.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawingsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentService.cs"},{"SourceFile":"CQMS\\Check\\CheckControlApproveService.cs"},{"SourceFile":"CQMS\\Check\\CheckControlService.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipmentService.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthService.cs"},{"SourceFile":"CQMS\\Check\\DesignApproveService.cs"},{"SourceFile":"CQMS\\Check\\DesignService.cs"},{"SourceFile":"CQMS\\Check\\DrawApproveService.cs"},{"SourceFile":"CQMS\\Check\\DrawService.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckApproveService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckService.cs"},{"SourceFile":"CQMS\\Check\\MonthSpotCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpecialEquipmentDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckApproveService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckService.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListApproveService.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListService.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecordsService.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectService.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListService.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectService.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeService.cs"},{"SourceFile":"CQMS\\DataBase\\FileService.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotService.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoService.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkReportService.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckService.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectService.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListService.cs"},{"SourceFile":"CQMS\\ManageReport\\ComprehensiveService.cs"},{"SourceFile":"CQMS\\ManageReport\\ConstructionProblemsService.cs"},{"SourceFile":"CQMS\\ManageReport\\NextQualityControlService.cs"},{"SourceFile":"CQMS\\ManageReport\\ProjectQualityWorkSummaryReportService.cs"},{"SourceFile":"CQMS\\ManageReport\\ProjectQuarterlyProjectQualityService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\ConstructionPlanService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\CqmsTargetService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\Report_CQMS_MonthReportItemService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\TextBoxContentService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\WeekAndMonthReportNewService.cs"},{"SourceFile":"CQMS\\ManageReport\\RowMaterialProblemService.cs"},{"SourceFile":"CQMS\\ManageReport\\ThisWeekOrMonthContentService.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekAndMonthReportService.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceService.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageService.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementDetailService.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementService.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestNewService.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestService.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementService.cs"},{"SourceFile":"CQMS\\QualityPlanning\\ConExperienceSummaryService.cs"},{"SourceFile":"CQMS\\QualityPlanning\\ProjectQualityPlanService.cs"},{"SourceFile":"CQMS\\QualityPlanning\\QualityManagementSysService.cs"},{"SourceFile":"CQMS\\Solution\\CQMSConstructSolutionApproveService.cs"},{"SourceFile":"CQMS\\Solution\\CQMSConstructSolutionService.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactApproveService.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactService.cs"},{"SourceFile":"CQMS\\WBS\\BreakdownProjectService.cs"},{"SourceFile":"CQMS\\WBS\\BreakdownService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionDivideService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionProjectService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignBreakdownProjectService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignBreakdownService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalService.cs"},{"SourceFile":"CQMS\\WBS\\SubProjectsService.cs"},{"SourceFile":"CQMS\\WBS\\WBSsearchService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageService.cs"},{"SourceFile":"DigData\\HSEDataCollectService.cs"},{"SourceFile":"DocManage\\DocManageApproveService.cs"},{"SourceFile":"DocManage\\DocManageService.cs"},{"SourceFile":"DoorServer\\InOutService.cs"},{"SourceFile":"DoorServer\\DoorServerService.cs"},{"SourceFile":"DropListService.cs"},{"SourceFile":"EnvironmentalCheckService.cs"},{"SourceFile":"GlobalSuppressions.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_ComponentsService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_ConsumablesService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DefectService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DetectionRateService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DetectionTypeService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DNCompareService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_GrooveTypeService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_MaterialService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_MediumService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PipingClassService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PressurePipingClassService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PressureService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PurgeMethodService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_TestMediumService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldingLocationServie.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldingMethodService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldTypeService.cs"},{"SourceFile":"HJGL\\FL\\FLDataService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_ReportService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_TrustItemService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_TrustService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProess_TrustService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAuditService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEditService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckService.cs"},{"SourceFile":"HJGL\\NDT\\Batch_NDEItemService.cs"},{"SourceFile":"HJGL\\NDT\\Batch_NDEService.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerService.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderQualifyService.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderService.cs"},{"SourceFile":"HJGL\\PointTrust\\Batch_BatchTrustItemService.cs"},{"SourceFile":"HJGL\\PointTrust\\Batch_BatchTrustService.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatchDetailService.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatchService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAuditService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEditService.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairRecordService.cs"},{"SourceFile":"HJGL\\TestPackage\\AItemEndCheckService.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheckService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageApproveService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAuditService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEditService.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingDailyService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTaskService.cs"},{"SourceFile":"HJGL\\WPQ\\WPQListService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportService.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_CompanyManagerRuleService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_ManagerRuleService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_SubManagerRuleService .cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_ProjectManagerRuleService.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerService.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckColligationDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckColligationService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckDayDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckDayService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckHolidayDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckHolidayService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckSpecialDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckSpecialService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckWorkDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckWorkService.cs"},{"SourceFile":"HSSE\\Check\\Check_PauseNoticeService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectCheckItemDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectCheckItemSetService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectLeaderCheckService.cs"},{"SourceFile":"HSSE\\Check\\ContactListService.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateService.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeService.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeService.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesService.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeService.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailItemService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailService.cs"},{"SourceFile":"HSSE\\CostGoods\\FeeRegistration.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageService.cs"},{"SourceFile":"HSSE\\CostGoods\\HseExpenseService.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseService.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainRecordDetailService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainRecordService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainTestService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingPlanItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingPlanService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingTaskService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBService.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainService.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportService.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanService.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringService.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_EnvironmentalRiskItemService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_EnvironmentalRiskListService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_HazardListService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_HazardSelectedItemService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_OtherHazardService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_PatrolPlanService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_RoutingInspectionService.cs"},{"SourceFile":"HSSE\\Hazard\\RiskEvaluationRecordService.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HSSE_Hazard_HazardRegisterService.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyService.cs"},{"SourceFile":"HSSE\\HSSESystem\\ServerSafetyInstitutionService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutService.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyService.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardSelectedItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAService.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyService.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationSelectedItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectAccidentCauseReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectAccidentCauseReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillConductedQuarterlyReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillConductedQuarterlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillPlanHalfYearReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillPlanHalfYearReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectEPSummaryReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectMillionsMonthlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectSafetyQuarterlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectWorkSummaryReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesService.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardsListService.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleService.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsService.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListService.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalService.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerService.cs"},{"SourceFile":"HSSE\\License\\LicensePublicService.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseService.cs"},{"SourceFile":"HSSE\\Manager\\AccidentDetailSortBService.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportService.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthService.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentDesciptionCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentDesciptionItemCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ActivitiesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ActivityDesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckDetailSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ComplianceObligationsCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CostInvestmentPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\DrillSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencyExercisesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencyPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencySortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\FileManageCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\FiveExpenseCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HazardCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HazardSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HseCostCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\IncentiveSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\InjuryAccidentCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ManageDocPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MeetingCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MeetingSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MonthReportCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\NoInjuryAccidentCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherActiveSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherManagementCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherWorkCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherWorkPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PerformanceIndicatorCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PersonSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PromotionalActiviteSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ReviewRecordCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\RewardAndPunishSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\SubExpenseCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainActivitySortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportBService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportDService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportService.cs"},{"SourceFile":"HSSE\\Manager\\ReportRemindService.cs"},{"SourceFile":"HSSE\\Manager\\SafetyDataDService.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthService.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekService.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingService.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseDetailService.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationService.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordService.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditDetailService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitService.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafetyDataItemService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditDetailService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityService.cs"},{"SourceFile":"HSSE\\Resources\\SignManageService.cs"},{"SourceFile":"HSSE\\SafetyData\\SafetyDataPlanService.cs"},{"SourceFile":"HSSE\\SafetyData\\SafetyDataService.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationService.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListService.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInOutService.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_CheckingService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportUnitDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportUnitDetailService.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionService.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentService.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardService.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateService.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyService.cs"},{"SourceFile":"HSSE\\Technique\\HazardListService.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeService.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalService.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemService.cs"},{"SourceFile":"HSSE\\Technique\\RectifyService.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeService.cs"},{"SourceFile":"HSSE\\Technique\\Technique_CheckItemDetailService.cs"},{"SourceFile":"HSSE\\Technique\\Technique_CheckItemSetService.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionService.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionService.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionService.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionService.cs"},{"SourceFile":"JDGL\\Check\\MonthPlanService.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionService.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionService.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionService.cs"},{"SourceFile":"JDGL\\Check\\QuantityListService.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionService.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionService.cs"},{"SourceFile":"JDGL\\Check\\WeekPlanService.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReportService.cs"},{"SourceFile":"JDGL\\WBS\\CnProfessionInitService.cs"},{"SourceFile":"JDGL\\WBS\\CnProfessionService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlParentDetailService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlService.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeService.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeService.cs"},{"SourceFile":"JDGL\\WBS\\MilePostService.cs"},{"SourceFile":"JDGL\\WBS\\UnitProjectInitService.cs"},{"SourceFile":"JDGL\\WBS\\UnitProjectService.cs"},{"SourceFile":"JDGL\\WBS\\WbsDetailHistoryService.cs"},{"SourceFile":"JDGL\\WBS\\WbsDetailService.cs"},{"SourceFile":"JDGL\\WBS\\WBSRectificationMeasureSetService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetInitService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetMatchCostControlInitService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetMatchCostControlService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetService.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatisticsService.cs"},{"SourceFile":"Notice\\NoticeService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReportService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTable1Service.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamService.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_Check1Service.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_RectifyItemService.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_RectifyService.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationService.cs"},{"SourceFile":"OpenService\\FileInsertService.cs"},{"SourceFile":"OpenService\\FileStructService.cs"},{"SourceFile":"OpenService\\MonitorService.cs"},{"SourceFile":"DynamicTHeaderHepler.cs"},{"SourceFile":"OpenService\\GetDataService.cs"},{"SourceFile":"Opinion\\OpinionCollectionApproveService.cs"},{"SourceFile":"Opinion\\OpinionCollectionService.cs"},{"SourceFile":"Party\\BasicInformationDetailService.cs"},{"SourceFile":"Party\\BasicInformationService.cs"},{"SourceFile":"Party\\CommentPartyerService.cs"},{"SourceFile":"Party\\DoingThingsForMassesService.cs"},{"SourceFile":"Party\\EmployeeConversationRecordService.cs"},{"SourceFile":"Party\\FocusLearnService.cs"},{"SourceFile":"Party\\LastWorkSummaryService.cs"},{"SourceFile":"Party\\NewsPropagandaWorkService.cs"},{"SourceFile":"Party\\OrganizingLifeService.cs"},{"SourceFile":"Party\\PartyCommitteeService.cs"},{"SourceFile":"Party\\PartyCongressService.cs"},{"SourceFile":"Party\\PartyerService.cs"},{"SourceFile":"Party\\PartyHistoryStudyService.cs"},{"SourceFile":"Party\\PartyLectureService.cs"},{"SourceFile":"Party\\PartyMeetingService.cs"},{"SourceFile":"Party\\PartyMoneyUseService.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationService.cs"},{"SourceFile":"Party\\ThemePartyDayService.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionService.cs"},{"SourceFile":"Party\\WorkPlanService.cs"},{"SourceFile":"Person\\Person_BusinessTripService.cs"},{"SourceFile":"Person\\Person_MeetingService.cs"},{"SourceFile":"Person\\PersonTotalService.cs"},{"SourceFile":"Person\\Person_DutyService.cs"},{"SourceFile":"Person\\Person_DutyTemplateService.cs"},{"SourceFile":"Person\\Person_PersonPlanService.cs"},{"SourceFile":"Person\\Person_QuarterCheckApproveService.cs"},{"SourceFile":"Person\\Person_QuarterCheckItemService.cs"},{"SourceFile":"Person\\Person_QuarterCheckService.cs"},{"SourceFile":"Person\\Person_ShuntApproveService.cs"},{"SourceFile":"Person\\Person_ShuntDetailService.cs"},{"SourceFile":"Person\\Person_ShuntService.cs"},{"SourceFile":"Person\\Person_TestRunMonthSummaryService.cs"},{"SourceFile":"Person\\Person_TestRunPerformanceService.cs"},{"SourceFile":"Person\\Person_TrainingPlanService.cs"},{"SourceFile":"ProjectData\\MainItemService.cs"},{"SourceFile":"ProjectData\\ProjectData_CodeTemplateRuleService.cs"},{"SourceFile":"ProjectData\\ProjectSateService.cs"},{"SourceFile":"ProjectData\\ProjectService.cs"},{"SourceFile":"ProjectData\\ProjectSetMapService.cs"},{"SourceFile":"ProjectData\\ProjectUnitService.cs"},{"SourceFile":"ProjectData\\ProjectUserService.cs"},{"SourceFile":"Common\\ChartControlService.cs"},{"SourceFile":"Common\\ConstValue.cs"},{"SourceFile":"Common\\UploadAttachmentService.cs"},{"SourceFile":"Common\\CreateMenuXML.cs"},{"SourceFile":"ProjectData\\Project_InstallationService.cs"},{"SourceFile":"ProjectData\\Project_SysSetService.cs"},{"SourceFile":"ProjectData\\TeamGroupService.cs"},{"SourceFile":"ProjectData\\UnitWorkService.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXItemService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXProcessService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportService.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverDetailService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverService.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapService.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataService.cs"},{"SourceFile":"Service References\\CNCECHSSEService\\Reference.cs"},{"SourceFile":"Service References\\MCSService\\Reference.cs"},{"SourceFile":"SHIYE\\InformationProject_SafetyBriefingService.cs"},{"SourceFile":"SortConditionHelper.cs"},{"SourceFile":"SQLHelper.cs"},{"SourceFile":"Common\\Const.cs"},{"SourceFile":"ErrLogInfo.cs"},{"SourceFile":"FriendlyException.cs"},{"SourceFile":"Common\\Funs.cs"},{"SourceFile":"MethodRefelect.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"SessionName.cs"},{"SourceFile":"SoftRegeditService.cs"},{"SourceFile":"LoginService.cs"},{"SourceFile":"SysManage\\ButtonPowerService.cs"},{"SourceFile":"SysManage\\ButtonToMenuService.cs"},{"SourceFile":"SysManage\\DepartService.cs"},{"SourceFile":"SysManage\\LogService.cs"},{"SourceFile":"SysManage\\MenuFlowOperateService.cs"},{"SourceFile":"SysManage\\RoleItemService.cs"},{"SourceFile":"SysManage\\RolePowerService.cs"},{"SourceFile":"SysManage\\RoleService.cs"},{"SourceFile":"SysManage\\SysConstSetService.cs"},{"SourceFile":"SysManage\\SysHttplogService.cs"},{"SourceFile":"SysManage\\SysMenuService.cs"},{"SourceFile":"SysManage\\UnitService.cs"},{"SourceFile":"SysManage\\UserService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestPlanService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestPlanTrainingService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestRecordService.cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\DataForJTApiService.cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceLogService .cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceSetService .cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceTaskService .cs"},{"SourceFile":"TaskScheduling\\TimerTask\\CustomJobListener.cs"},{"SourceFile":"TaskScheduling\\TimerTask\\TaskJob.cs"},{"SourceFile":"TaskScheduling\\TimerTask\\TimerTaskBase.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyItemService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModelService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanService.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureService.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverConStudyService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverDataService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverDataTypeService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverPersonPlanService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverPlanService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDutyItemService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDutyService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareSchemePlanItemService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareSchemePlanService.cs"},{"SourceFile":"TestRun\\DriverProgressService.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverReportService.cs"},{"SourceFile":"TestRun\\DriverReport\\TestRun_MonthReportItem2Service.cs"},{"SourceFile":"TestRun\\DriverReport\\TestRun_MonthReportItemService.cs"},{"SourceFile":"TestRun\\DriverReport\\TestRun_MonthReportService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunApproveService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunService.cs"},{"SourceFile":"TestRun\\DriverSchemeService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContractorsService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubService.cs"},{"SourceFile":"TestRun\\DriverSummary\\DriverSummaryService.cs"},{"SourceFile":"TestRun\\FeedingTestRunService.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingItemService.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingMinutesService.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingService.cs"},{"SourceFile":"TestRun\\PersonTrain\\DriverPrepareTrainPlanService.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportService.cs"},{"SourceFile":"TestRun\\TestRunConstructSolutionApproveService.cs"},{"SourceFile":"TestRun\\TestRunConstructSolutionService.cs"},{"SourceFile":"TestRun\\TestRunService.cs"},{"SourceFile":"BoSheng\\BOSHENGMonitorService.cs"},{"SourceFile":"Transfer\\PipingService.cs"},{"SourceFile":"Transfer\\ProjectSetupService.cs"},{"SourceFile":"Transfer\\RotatingEquipmentService.cs"},{"SourceFile":"Transfer\\StaticEquipmentService.cs"},{"SourceFile":"WebService\\MCSWebService.cs"},{"SourceFile":"WebService\\CNCECHSSEWebService.cs"},{"SourceFile":"WebService\\CNCECHSSEMonitorService.cs"},{"SourceFile":"ZHGL\\DataStatistics\\DataStatisticsService.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSDataService.cs"},{"SourceFile":"ZHGL\\DataSync\\Hazard_RealTimeDeviceService.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_DefectService.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLService.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HiddenDangerDetailService.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\LotAPIService.cs"},{"SourceFile":"ZHGL\\DataSync\\MainSevice.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSDataService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_DefectService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HiddenDangerDetailService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\ServerService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_HiddenDangerCheckService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_RiskControlService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEService.cs"},{"SourceFile":"ZHGL\\Emergency\\UnitDrillRecordListService.cs"},{"SourceFile":"ZHGL\\Emergency\\UnitEmergencyListService.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyreportItemService .cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyreportItemService .cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganizeService.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportService.cs"},{"SourceFile":"ZHGL\\Information\\ActionWorkLedgerItemService.cs"},{"SourceFile":"ZHGL\\Information\\ActionWorkLedgerService.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyProductionEvaluationItemService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyProductionEvaluationService.cs"},{"SourceFile":"ZHGL\\Information\\UrgeReportService.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResourceService.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportService.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummaryService.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingService.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingService.cs"},{"SourceFile":"ZHGL\\Person\\CompanyBranchPersonService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisItemService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\ProjectAccidentReportService.cs"},{"SourceFile":"ZHGL\\RealName\\BasicDataService.cs"},{"SourceFile":"ZHGL\\RealName\\RealName_ProjectService.cs"},{"SourceFile":"ZHGL\\RealName\\OnPostService.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostService.cs"},{"SourceFile":"ZHGL\\RealName\\CityService.cs"},{"SourceFile":"ZHGL\\RealName\\CountryService.cs"},{"SourceFile":"ZHGL\\RealName\\RealNameMonitorService.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSetService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReportItemService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReportService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportService.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportService.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunMonthSummaryReportService.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceMonthReportService.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\apache.nms.activemq\\1.8.0\\lib\\net40\\Apache.NMS.ActiveMQ.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\apache.nms\\1.8.0\\lib\\net40\\Apache.NMS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\诺必达\\五环\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\portable.bouncycastle\\1.8.9\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\emitmapper\\1.0.0\\lib\\EmitMapper.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\诺必达\\五环\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\sharpziplib\\1.3.2\\lib\\net45\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.1.1\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\Microsoft.SQLServer.ManagedDTS\\v4.0_16.0.0.0__89845dcd8080cc91\\Microsoft.SQLServer.ManagedDTS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\Microsoft.Win32.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\诺必达\\五环\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"E:\\诺必达\\五环\\SGGL\\Model\\bin\\Debug\\Model.dll"},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netfx.force.conflicts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netstandard.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\newtonsoft.json\\12.0.1\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\quartz\\3.5.0\\lib\\netstandard2.0\\Quartz.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\restsharp\\106.15.0\\lib\\net452\\RestSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\诺必达\\五环\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"E:\\诺必达\\五环\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll"},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.AppContext.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.buffers\\4.5.1\\ref\\net45\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Concurrent.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.NonGeneric.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Specialized.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.EventBasedAsync.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.TypeConverter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\lib\\net461\\System.Configuration.ConfigurationManager.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Console.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Data.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.OracleClient.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Contracts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Debug.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\lib\\net46\\System.Diagnostics.DiagnosticSource.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.FileVersionInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Process.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.StackTrace.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TextWriterTraceListener.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Tools.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TraceSource.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Tracing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Drawing.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Dynamic.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Calendars.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.ZipFile.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.DriveInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Watcher.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.IsolatedStorage.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.MemoryMappedFiles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Pipes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.UnmanagedMemoryStream.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Expressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Queryable.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.memory\\4.5.4\\lib\\net461\\System.Memory.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NameResolution.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NetworkInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Ping.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Requests.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Sockets.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebHeaderCollection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebSockets.Client.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebSockets.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\ref\\net46\\System.Numerics.Vectors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.Reader.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.ResourceManager.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.Writer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.3\\ref\\net461\\System.Runtime.CompilerServices.Unsafe.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.CompilerServices.VisualC.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Handles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.RuntimeInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Formatters.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\ref\\net461\\System.Security.AccessControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Claims.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Algorithms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Csp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.X509Certificates.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.security.permissions\\4.7.0\\ref\\net461\\System.Security.Permissions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Principal.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\nbd10\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\ref\\net461\\System.Security.Principal.Windows.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.SecureString.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceProcess.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.RegularExpressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Overlapped.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Thread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.ThreadPool.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Timer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ValueTuple.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.ReaderWriter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlSerializer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\诺必达\\五环\\SGGL\\FineUIPro\\Reference BLL\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\诺必达\\五环\\SGGL\\BLL\\bin\\Debug\\BLL.dll","OutputItemRelativePath":"BLL.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL","ProjectFileName":"BLL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AnBang\\AnBangService.cs"},{"SourceFile":"API\\APIBaseInfoService.cs"},{"SourceFile":"API\\APICommonService.cs"},{"SourceFile":"API\\APIDoorServerService.cs"},{"SourceFile":"API\\APIGetHttpService.cs"},{"SourceFile":"API\\APIIDCardInfoService.cs"},{"SourceFile":"API\\APIPersonService.cs"},{"SourceFile":"API\\APIProjectService.cs"},{"SourceFile":"API\\APIUnitService.cs"},{"SourceFile":"API\\APIUpLoadFileService.cs"},{"SourceFile":"API\\APIUserService.cs"},{"SourceFile":"API\\CQMS\\ApiInspectionManagementService.cs"},{"SourceFile":"API\\CQMS\\BreakdownProjectService.cs"},{"SourceFile":"API\\CQMS\\QualityAssuranceService.cs"},{"SourceFile":"API\\HJGL\\APIGetHJDataService.cs"},{"SourceFile":"API\\HJGL\\APIHotProcessHardService.cs"},{"SourceFile":"API\\HJGL\\APINDETrustService.cs"},{"SourceFile":"API\\HJGL\\APIPipeJointService.cs"},{"SourceFile":"API\\HJGL\\APIPreWeldingDailyService.cs"},{"SourceFile":"API\\HJGL\\APIReportQueryService.cs"},{"SourceFile":"API\\HJGL\\APITestPackageService.cs"},{"SourceFile":"API\\HSSE\\APIGeneralEquipmentQualityService.cs"},{"SourceFile":"API\\HSSE\\APIPageDataService.cs"},{"SourceFile":"API\\HSSE\\APIChartAnalysisService.cs"},{"SourceFile":"API\\HSSE\\APICheckSpecialService.cs"},{"SourceFile":"API\\HSSE\\APIConstructSolutionService.cs"},{"SourceFile":"API\\HSSE\\APIEmergencyService.cs"},{"SourceFile":"API\\HSSE\\APIEquipmentQualityService.cs"},{"SourceFile":"API\\HSSE\\APIHazardListService.cs"},{"SourceFile":"API\\HSSE\\APIHazardRegisterService.cs"},{"SourceFile":"API\\HSSE\\APIHSEDiaryService.cs"},{"SourceFile":"API\\HSSE\\APIIncentiveNoticeService.cs"},{"SourceFile":"API\\HSSE\\APILicenseDataService.cs"},{"SourceFile":"API\\HSSE\\APILicenseFlowOperateService.cs"},{"SourceFile":"API\\HSSE\\APILicenseItemService.cs"},{"SourceFile":"API\\HSSE\\APIMeetingService.cs"},{"SourceFile":"API\\HSSE\\APIPauseNoticeService.cs"},{"SourceFile":"API\\HSSE\\APIPersonQualityService.cs"},{"SourceFile":"API\\HSSE\\APIPunishNoticeService.cs"},{"SourceFile":"API\\HSSE\\APIReceiveFileManagerService.cs"},{"SourceFile":"API\\HSSE\\APIRectifyNoticesService.cs"},{"SourceFile":"API\\HSSE\\APIResourcesService.cs"},{"SourceFile":"API\\HSSE\\APISeDinMonthReportService.cs"},{"SourceFile":"API\\HSSE\\APIServerTestPlanService.cs"},{"SourceFile":"API\\HSSE\\APIServerTestRecordService.cs"},{"SourceFile":"API\\HSSE\\APITestPlanService.cs"},{"SourceFile":"API\\HSSE\\APITestRecordService.cs"},{"SourceFile":"API\\HSSE\\APITrainingPlanService.cs"},{"SourceFile":"API\\HSSE\\APITrainingTaskService.cs"},{"SourceFile":"API\\HSSE\\APITrainRecordService.cs"},{"SourceFile":"BaseInfo\\AccidentTypeService.cs"},{"SourceFile":"BaseInfo\\BaseFactoryService.cs"},{"SourceFile":"BaseInfo\\CertificateService.cs"},{"SourceFile":"BaseInfo\\CNProfessionalService.cs"},{"SourceFile":"BaseInfo\\CostTypeService.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalService.cs"},{"SourceFile":"BaseInfo\\DocTypeService.cs"},{"SourceFile":"BaseInfo\\EmergencyTypeService.cs"},{"SourceFile":"BaseInfo\\GoodsCategoryService.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListTypeService.cs"},{"SourceFile":"BaseInfo\\HSSE_Hazard_HazardRegisterTypesService.cs"},{"SourceFile":"BaseInfo\\InspectionAreaService.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsTypeService.cs"},{"SourceFile":"BaseInfo\\LicenseTypeService.cs"},{"SourceFile":"BaseInfo\\ManageRuleTypeService.cs"},{"SourceFile":"BaseInfo\\PersonManageService.cs"},{"SourceFile":"BaseInfo\\PictureTypeService.cs"},{"SourceFile":"BaseInfo\\PositionService.cs"},{"SourceFile":"BaseInfo\\PostService.cs"},{"SourceFile":"BaseInfo\\PostTitleService.cs"},{"SourceFile":"BaseInfo\\PracticeCertificateService.cs"},{"SourceFile":"BaseInfo\\ProjectTypeService.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeService.cs"},{"SourceFile":"BaseInfo\\GJSXTypeService.cs"},{"SourceFile":"BaseInfo\\QuestionTypeService.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureService.cs"},{"SourceFile":"BaseInfo\\RiskLevelService.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsTypeService.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresService.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteTypeService.cs"},{"SourceFile":"BaseInfo\\SpecialEquipmentService.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeTypeService.cs"},{"SourceFile":"BaseInfo\\SteelService.cs"},{"SourceFile":"BaseInfo\\TestRunLicenseTypeService.cs"},{"SourceFile":"BaseInfo\\TestRunPerformanceStandardService.cs"},{"SourceFile":"BaseInfo\\TrainLevelService.cs"},{"SourceFile":"BaseInfo\\TrainTypeService.cs"},{"SourceFile":"BaseInfo\\TransferMajorService.cs"},{"SourceFile":"BaseInfo\\UnitTypeService.cs"},{"SourceFile":"BaseInfo\\WorkPostService.cs"},{"SourceFile":"BaseInfo\\WorkStageService.cs"},{"SourceFile":"BoSheng\\BOSHENGService.cs"},{"SourceFile":"Common\\AttachFileService.cs"},{"SourceFile":"Common\\CodeRecordsService.cs"},{"SourceFile":"Common\\CommonService.cs"},{"SourceFile":"Common\\CreateQRCodeService.cs"},{"SourceFile":"Common\\IDCardValid.cs"},{"SourceFile":"Common\\NPOIExcel.cs"},{"SourceFile":"Common\\NPOIHelper.cs"},{"SourceFile":"Common\\PrinterDocService.cs"},{"SourceFile":"Common\\ProjectDataFlowSetService.cs"},{"SourceFile":"Common\\Sys_CQMS_DataInTempService.cs"},{"SourceFile":"Common\\Sys_DataTempService.cs"},{"SourceFile":"Common\\UploadFileService.cs"},{"SourceFile":"Common\\UpLoadImageService.cs"},{"SourceFile":"Common\\UserShowColumnsService.cs"},{"SourceFile":"Common\\WeatherService.cs"},{"SourceFile":"Common\\WeekDayService.cs"},{"SourceFile":"CostGoods\\MeasuresPlanService.cs"},{"SourceFile":"CostGoods\\PayRegistrationService.cs"},{"SourceFile":"CostGoods\\SubPayRegistrationService.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosureService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalItemService.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlanService.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalItemService.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalService.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonSteelService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonWeldMethodService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeService.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentService.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawingsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentService.cs"},{"SourceFile":"CQMS\\Check\\CheckControlApproveService.cs"},{"SourceFile":"CQMS\\Check\\CheckControlService.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipmentService.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthService.cs"},{"SourceFile":"CQMS\\Check\\DesignApproveService.cs"},{"SourceFile":"CQMS\\Check\\DesignService.cs"},{"SourceFile":"CQMS\\Check\\DrawApproveService.cs"},{"SourceFile":"CQMS\\Check\\DrawService.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckApproveService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckService.cs"},{"SourceFile":"CQMS\\Check\\MonthSpotCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpecialEquipmentDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckApproveService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckService.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListApproveService.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListService.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecordsService.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectService.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListService.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectService.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeService.cs"},{"SourceFile":"CQMS\\DataBase\\FileService.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotService.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoService.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkReportService.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckService.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectService.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListService.cs"},{"SourceFile":"CQMS\\ManageReport\\ComprehensiveService.cs"},{"SourceFile":"CQMS\\ManageReport\\ConstructionProblemsService.cs"},{"SourceFile":"CQMS\\ManageReport\\NextQualityControlService.cs"},{"SourceFile":"CQMS\\ManageReport\\ProjectQualityWorkSummaryReportService.cs"},{"SourceFile":"CQMS\\ManageReport\\ProjectQuarterlyProjectQualityService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\ConstructionPlanService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\CqmsTargetService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\Report_CQMS_MonthReportItemService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\TextBoxContentService.cs"},{"SourceFile":"CQMS\\ManageReport\\ReportNew\\WeekAndMonthReportNewService.cs"},{"SourceFile":"CQMS\\ManageReport\\RowMaterialProblemService.cs"},{"SourceFile":"CQMS\\ManageReport\\ThisWeekOrMonthContentService.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekAndMonthReportService.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceService.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageService.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementDetailService.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementService.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestNewService.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestService.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementService.cs"},{"SourceFile":"CQMS\\QualityPlanning\\ConExperienceSummaryService.cs"},{"SourceFile":"CQMS\\QualityPlanning\\ProjectQualityPlanService.cs"},{"SourceFile":"CQMS\\QualityPlanning\\QualityManagementSysService.cs"},{"SourceFile":"CQMS\\Solution\\CQMSConstructSolutionApproveService.cs"},{"SourceFile":"CQMS\\Solution\\CQMSConstructSolutionService.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactApproveService.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactService.cs"},{"SourceFile":"CQMS\\WBS\\BreakdownProjectService.cs"},{"SourceFile":"CQMS\\WBS\\BreakdownService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionDivideService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionProjectService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignBreakdownProjectService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignBreakdownService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalService.cs"},{"SourceFile":"CQMS\\WBS\\SubProjectsService.cs"},{"SourceFile":"CQMS\\WBS\\WBSsearchService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageService.cs"},{"SourceFile":"DCGL\\ServerCheck\\DCGLCheckRectifyItemService.cs"},{"SourceFile":"DCGL\\ServerCheck\\DCGLCheckRectifyService.cs"},{"SourceFile":"DigData\\HSEDataCollectService.cs"},{"SourceFile":"DocManage\\DocManageApproveService.cs"},{"SourceFile":"DocManage\\DocManageService.cs"},{"SourceFile":"DoorServer\\InOutService.cs"},{"SourceFile":"DoorServer\\DoorServerService.cs"},{"SourceFile":"DropListService.cs"},{"SourceFile":"Email_Send\\Email_PopService.cs"},{"SourceFile":"EnvironmentalCheckService.cs"},{"SourceFile":"GlobalSuppressions.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_ComponentsService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_ConsumablesService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DefectService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DetectionRateService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DetectionTypeService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DNCompareService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_GrooveTypeService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_MaterialService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_MediumService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PipingClassService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PressurePipingClassService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PressureService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PurgeMethodService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_TestMediumService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldingLocationServie.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldingMethodService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldTypeService.cs"},{"SourceFile":"HJGL\\FL\\FLDataService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_ReportService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_TrustItemService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_TrustService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProess_TrustService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAuditService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEditService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckService.cs"},{"SourceFile":"HJGL\\NDT\\Batch_NDEItemService.cs"},{"SourceFile":"HJGL\\NDT\\Batch_NDEService.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerService.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderQualifyService.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderService.cs"},{"SourceFile":"HJGL\\PointTrust\\Batch_BatchTrustItemService.cs"},{"SourceFile":"HJGL\\PointTrust\\Batch_BatchTrustService.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatchDetailService.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatchService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAuditService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEditService.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairRecordService.cs"},{"SourceFile":"HJGL\\TestPackage\\AItemEndCheckService.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheckService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageApproveService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAuditService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEditService.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingDailyService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTaskService.cs"},{"SourceFile":"HJGL\\WPQ\\WPQListService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportService.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_CompanyManagerRuleService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_ManagerRuleService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_SubManagerRuleService .cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_ProjectManagerRuleService.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerService.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckColligationDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckColligationService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckDayDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckDayService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckHolidayDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckHolidayService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckSpecialDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckSpecialService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckWorkDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckWorkService.cs"},{"SourceFile":"HSSE\\Check\\Check_PauseNoticeService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectCheckItemDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectCheckItemSetService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectLeaderCheckService.cs"},{"SourceFile":"HSSE\\Check\\ContactListService.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateService.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeService.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeService.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesService.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeService.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailItemService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailService.cs"},{"SourceFile":"HSSE\\CostGoods\\FeeRegistration.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageService.cs"},{"SourceFile":"HSSE\\CostGoods\\HseExpenseService.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseService.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainRecordDetailService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainRecordService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainTestService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingPlanItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingPlanService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingTaskService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBService.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainService.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportService.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanService.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringService.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_EnvironmentalRiskItemService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_EnvironmentalRiskListService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_HazardListService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_HazardSelectedItemService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_OtherHazardService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_PatrolPlanService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_RoutingInspectionService.cs"},{"SourceFile":"HSSE\\Hazard\\RiskEvaluationRecordService.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HSSE_Hazard_HazardRegisterService.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyService.cs"},{"SourceFile":"HSSE\\HSSESystem\\ServerSafetyInstitutionService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutService.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyService.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardSelectedItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAService.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyService.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationSelectedItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectAccidentCauseReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectAccidentCauseReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillConductedQuarterlyReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillConductedQuarterlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillPlanHalfYearReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillPlanHalfYearReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectEPSummaryReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectMillionsMonthlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectSafetyQuarterlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectWorkSummaryReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesService.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardsListService.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleService.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsService.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListService.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalService.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerService.cs"},{"SourceFile":"HSSE\\License\\LicensePublicService.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseService.cs"},{"SourceFile":"HSSE\\Manager\\AccidentDetailSortBService.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportService.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthService.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentDesciptionCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentDesciptionItemCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ActivitiesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ActivityDesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckDetailSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ComplianceObligationsCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CostInvestmentPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\DrillSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencyExercisesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencyPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencySortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\FileManageCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\FiveExpenseCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HazardCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HazardSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HseCostCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\IncentiveSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\InjuryAccidentCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ManageDocPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MeetingCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MeetingSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MonthReportCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\NoInjuryAccidentCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherActiveSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherManagementCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherWorkCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherWorkPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PerformanceIndicatorCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PersonSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PromotionalActiviteSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ReviewRecordCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\RewardAndPunishSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\SubExpenseCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainActivitySortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportBService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportDService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportService.cs"},{"SourceFile":"HSSE\\Manager\\ReportRemindService.cs"},{"SourceFile":"HSSE\\Manager\\SafetyDataDService.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthService.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekService.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingService.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseDetailService.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationService.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordService.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditDetailService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitService.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafetyDataItemService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditDetailService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityService.cs"},{"SourceFile":"HSSE\\Resources\\SignManageService.cs"},{"SourceFile":"HSSE\\SafetyData\\SafetyDataPlanService.cs"},{"SourceFile":"HSSE\\SafetyData\\SafetyDataService.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationService.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListService.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInOutService.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_CheckingService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportUnitDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportUnitDetailService.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionService.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentService.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardService.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateService.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyService.cs"},{"SourceFile":"HSSE\\Technique\\HazardListService.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeService.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalService.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemService.cs"},{"SourceFile":"HSSE\\Technique\\RectifyService.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeService.cs"},{"SourceFile":"HSSE\\Technique\\Technique_CheckItemDetailService.cs"},{"SourceFile":"HSSE\\Technique\\Technique_CheckItemSetService.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionService.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionService.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionService.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionService.cs"},{"SourceFile":"JDGL\\Check\\MonthPlanService.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionService.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionService.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionService.cs"},{"SourceFile":"JDGL\\Check\\QuantityListService.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionService.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionService.cs"},{"SourceFile":"JDGL\\Check\\WeekPlanService.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReportService.cs"},{"SourceFile":"JDGL\\WBS\\CnProfessionInitService.cs"},{"SourceFile":"JDGL\\WBS\\CnProfessionService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlParentDetailService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlService.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeService.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeService.cs"},{"SourceFile":"JDGL\\WBS\\JDGLWBSDetailService.cs"},{"SourceFile":"JDGL\\WBS\\JDGLWBSService.cs"},{"SourceFile":"JDGL\\WBS\\MilePostService.cs"},{"SourceFile":"JDGL\\WBS\\UnitProjectInitService.cs"},{"SourceFile":"JDGL\\WBS\\UnitProjectService.cs"},{"SourceFile":"JDGL\\WBS\\WbsDetailHistoryService.cs"},{"SourceFile":"JDGL\\WBS\\WbsDetailService.cs"},{"SourceFile":"JDGL\\WBS\\WBSRectificationMeasureSetService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetInitService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetMatchCostControlInitService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetMatchCostControlService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetService.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatisticsService.cs"},{"SourceFile":"Notice\\NoticeService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReportService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTable1Service.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamService.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_Check1Service.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_RectifyItemService.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_RectifyService.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationService.cs"},{"SourceFile":"OpenService\\FileInsertService.cs"},{"SourceFile":"OpenService\\FileStructService.cs"},{"SourceFile":"OpenService\\MonitorService.cs"},{"SourceFile":"DynamicTHeaderHepler.cs"},{"SourceFile":"OpenService\\GetDataService.cs"},{"SourceFile":"Opinion\\OpinionCollectionApproveService.cs"},{"SourceFile":"Opinion\\OpinionCollectionService.cs"},{"SourceFile":"Party\\BasicInformationDetailService.cs"},{"SourceFile":"Party\\BasicInformationService.cs"},{"SourceFile":"Party\\CommentPartyerService.cs"},{"SourceFile":"Party\\DoingThingsForMassesService.cs"},{"SourceFile":"Party\\EmployeeConversationRecordService.cs"},{"SourceFile":"Party\\FocusLearnService.cs"},{"SourceFile":"Party\\LastWorkSummaryService.cs"},{"SourceFile":"Party\\NewsPropagandaWorkService.cs"},{"SourceFile":"Party\\OrganizingLifeService.cs"},{"SourceFile":"Party\\PartyCommitteeService.cs"},{"SourceFile":"Party\\PartyCongressService.cs"},{"SourceFile":"Party\\PartyerService.cs"},{"SourceFile":"Party\\PartyHistoryStudyService.cs"},{"SourceFile":"Party\\PartyLectureService.cs"},{"SourceFile":"Party\\PartyMeetingService.cs"},{"SourceFile":"Party\\PartyMoneyUseService.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationService.cs"},{"SourceFile":"Party\\ThemePartyDayService.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionService.cs"},{"SourceFile":"Party\\WorkPlanService.cs"},{"SourceFile":"Person\\Person_BusinessTripService.cs"},{"SourceFile":"Person\\Person_MeetingService.cs"},{"SourceFile":"Person\\PersonTotalService.cs"},{"SourceFile":"Person\\Person_DutyService.cs"},{"SourceFile":"Person\\Person_DutyTemplateService.cs"},{"SourceFile":"Person\\Person_PersonPlanService.cs"},{"SourceFile":"Person\\Person_QuarterCheckApproveService.cs"},{"SourceFile":"Person\\Person_QuarterCheckItemService.cs"},{"SourceFile":"Person\\Person_QuarterCheckService.cs"},{"SourceFile":"Person\\Person_ShuntApproveService.cs"},{"SourceFile":"Person\\Person_ShuntDetailService.cs"},{"SourceFile":"Person\\Person_ShuntService.cs"},{"SourceFile":"Person\\Person_TestRunMonthSummaryService.cs"},{"SourceFile":"Person\\Person_TestRunPerformanceService.cs"},{"SourceFile":"Person\\Person_TrainingPlanService.cs"},{"SourceFile":"ProjectData\\MainItemService.cs"},{"SourceFile":"ProjectData\\ProjectData_CodeTemplateRuleService.cs"},{"SourceFile":"ProjectData\\ProjectSateService.cs"},{"SourceFile":"ProjectData\\ProjectService.cs"},{"SourceFile":"ProjectData\\ProjectSetMapService.cs"},{"SourceFile":"ProjectData\\ProjectUnitService.cs"},{"SourceFile":"ProjectData\\ProjectUserService.cs"},{"SourceFile":"Common\\ChartControlService.cs"},{"SourceFile":"Common\\ConstValue.cs"},{"SourceFile":"Common\\UploadAttachmentService.cs"},{"SourceFile":"Common\\CreateMenuXML.cs"},{"SourceFile":"ProjectData\\Project_InstallationService.cs"},{"SourceFile":"ProjectData\\Project_SysSetService.cs"},{"SourceFile":"ProjectData\\TeamGroupService.cs"},{"SourceFile":"ProjectData\\UnitWorkService.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXItemService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXProcessService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXMonitorService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportService.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverDetailService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverService.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapService.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataService.cs"},{"SourceFile":"Service References\\CNCECHSSEService\\Reference.cs"},{"SourceFile":"Service References\\MCSService\\Reference.cs"},{"SourceFile":"SHIYE\\InformationProject_SafetyBriefingService.cs"},{"SourceFile":"SortConditionHelper.cs"},{"SourceFile":"SQLHelper.cs"},{"SourceFile":"Common\\Const.cs"},{"SourceFile":"ErrLogInfo.cs"},{"SourceFile":"FriendlyException.cs"},{"SourceFile":"Common\\Funs.cs"},{"SourceFile":"MethodRefelect.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"SessionName.cs"},{"SourceFile":"SoftRegeditService.cs"},{"SourceFile":"LoginService.cs"},{"SourceFile":"SysManage\\ButtonPowerService.cs"},{"SourceFile":"SysManage\\ButtonToMenuService.cs"},{"SourceFile":"SysManage\\DepartService.cs"},{"SourceFile":"SysManage\\LogService.cs"},{"SourceFile":"SysManage\\MenuFlowOperateService.cs"},{"SourceFile":"SysManage\\RoleItemService.cs"},{"SourceFile":"SysManage\\RolePowerService.cs"},{"SourceFile":"SysManage\\RoleService.cs"},{"SourceFile":"SysManage\\SysConstSetService.cs"},{"SourceFile":"SysManage\\SysHttplogService.cs"},{"SourceFile":"SysManage\\SysMenuService.cs"},{"SourceFile":"SysManage\\UnitService.cs"},{"SourceFile":"SysManage\\UserService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestPlanService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestPlanTrainingService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestRecordService.cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\DataForJTApiService.cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceLogService .cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceSetService .cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceTaskService .cs"},{"SourceFile":"TaskScheduling\\TimerTask\\CustomJobListener.cs"},{"SourceFile":"TaskScheduling\\TimerTask\\TaskJob.cs"},{"SourceFile":"TaskScheduling\\TimerTask\\TimerTaskBase.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyItemService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModelService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanService.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureService.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverConStudyService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverDataService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverDataTypeService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverPersonPlanService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverPlanService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDutyItemService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDutyService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareSchemePlanItemService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareSchemePlanService.cs"},{"SourceFile":"TestRun\\DriverProgressService.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverReportService.cs"},{"SourceFile":"TestRun\\DriverReport\\TestRun_MonthReportItem2Service.cs"},{"SourceFile":"TestRun\\DriverReport\\TestRun_MonthReportItemService.cs"},{"SourceFile":"TestRun\\DriverReport\\TestRun_MonthReportService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunApproveService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunService.cs"},{"SourceFile":"TestRun\\DriverSchemeService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContractorsService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubService.cs"},{"SourceFile":"TestRun\\DriverSummary\\DriverSummaryService.cs"},{"SourceFile":"TestRun\\FeedingTestRunService.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingItemService.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingMinutesService.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingService.cs"},{"SourceFile":"TestRun\\PersonTrain\\DriverPrepareTrainPlanService.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportService.cs"},{"SourceFile":"TestRun\\TestRunConstructSolutionApproveService.cs"},{"SourceFile":"TestRun\\TestRunConstructSolutionService.cs"},{"SourceFile":"TestRun\\TestRunService.cs"},{"SourceFile":"BoSheng\\BOSHENGMonitorService.cs"},{"SourceFile":"Transfer\\PunchlistFromService.cs"},{"SourceFile":"Transfer\\PipingService.cs"},{"SourceFile":"Transfer\\ProjectSetupService.cs"},{"SourceFile":"Transfer\\RotatingEquipmentService.cs"},{"SourceFile":"Transfer\\StaticEquipmentService.cs"},{"SourceFile":"WebService\\CNCECHSSEGetWebService.cs"},{"SourceFile":"WebService\\MCSWebService.cs"},{"SourceFile":"WebService\\CNCECHSSEWebService.cs"},{"SourceFile":"WebService\\CNCECHSSEMonitorService.cs"},{"SourceFile":"ZHGL\\DataStatistics\\DataStatisticsService.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSDataService.cs"},{"SourceFile":"ZHGL\\DataSync\\Hazard_RealTimeDeviceService.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_DefectService.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLService.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HiddenDangerDetailService.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\LotAPIService.cs"},{"SourceFile":"ZHGL\\DataSync\\MainSevice.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSDataService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_DefectService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HiddenDangerDetailService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\ServerService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_HiddenDangerCheckService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_RiskControlService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEService.cs"},{"SourceFile":"ZHGL\\Emergency\\UnitDrillRecordListService.cs"},{"SourceFile":"ZHGL\\Emergency\\UnitEmergencyListService.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyreportItemService .cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyreportItemService .cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganizeService.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportService.cs"},{"SourceFile":"ZHGL\\Information\\ActionWorkLedgerItemService.cs"},{"SourceFile":"ZHGL\\Information\\ActionWorkLedgerService.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyProductionEvaluationItemService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyProductionEvaluationService.cs"},{"SourceFile":"ZHGL\\Information\\UrgeReportService.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResourceService.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportService.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummaryService.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingService.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingService.cs"},{"SourceFile":"ZHGL\\Person\\CompanyBranchPersonService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisItemService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\ProjectAccidentReportService.cs"},{"SourceFile":"ZHGL\\RealName\\BasicDataService.cs"},{"SourceFile":"ZHGL\\RealName\\RealName_ProjectService.cs"},{"SourceFile":"ZHGL\\RealName\\OnPostService.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostService.cs"},{"SourceFile":"ZHGL\\RealName\\CityService.cs"},{"SourceFile":"ZHGL\\RealName\\CountryService.cs"},{"SourceFile":"ZHGL\\RealName\\RealNameMonitorService.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSetService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReportItemService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReportService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportService.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportService.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunMonthSummaryReportService.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceMonthReportService.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Microsoft SQL Server\\150\\SDK\\Assemblies\\Microsoft.SQLServer.ManagedDTS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll"},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll"},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.OracleClient.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceProcess.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","OutputItemRelativePath":"BLL.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SGGL/BLL/Common/UploadAttachmentService.cs b/SGGL/BLL/Common/UploadAttachmentService.cs index a38780e1..eac45aac 100644 --- a/SGGL/BLL/Common/UploadAttachmentService.cs +++ b/SGGL/BLL/Common/UploadAttachmentService.cs @@ -200,6 +200,45 @@ namespace BLL return htmlStr; } + + /// + /// 工作台项目图片 + /// + /// + /// + /// + public static string ShowProjectImage(string rootValue, string path) + { + string htmlStr = string.Empty; + if (!string.IsNullOrEmpty(path)) + { + htmlStr = ""; + string[] arrStr = path.Split(new string[] { "," }, System.StringSplitOptions.RemoveEmptyEntries); + for (int i = 0; i < arrStr.Length; i++) + { + if (!string.IsNullOrEmpty(arrStr[i])) + { + string[] urlArray = arrStr[i].Split('\\'); + string scanUrl = string.Empty; + for (int j = 0; j < urlArray.Length; j++) + { + scanUrl += urlArray[j] + "|"; + } + + string url = rootValue + arrStr[i].Replace('\\', '/'); + string[] subUrl = url.Split('/'); + string fileName = subUrl[subUrl.Count() - 1]; + string newFileName = fileName.Substring(fileName.IndexOf("~") + 1); + + htmlStr += ""; + } + } + + htmlStr += "

"; + } + + return htmlStr; + } #endregion #region 附件上传 diff --git a/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs b/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs index 1b2d4513..9c9a1f04 100644 --- a/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs +++ b/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs @@ -1116,92 +1116,269 @@ namespace BLL /// /// 是否写日志 /// - public static string PushPersonsByIdentityCard(string type, string proCode, string identityCard,bool isLog) + //public static string PushPersonsByIdentityCard(string type, string proCode, string identityCard,bool isLog) + //{ + // using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) + // { + // try + // { + // string mess = string.Empty; + // string sucess = string.Empty; + // string code = string.Empty; + // string data = string.Empty; + // string pushContent = string.Empty; + // string contenttype = "application/json;charset=unicode"; + // var getData = (from x in db.SitePerson_Person + // join y in db.Base_Project on x.ProjectId equals y.ProjectId + // join z in db.RealName_Project on y.JTProjectCode equals z.ProCode + // join v in db.ProjectData_TeamGroup on x.TeamGroupId equals v.TeamGroupId + // join w in db.Base_WorkPost on x.WorkPostId equals w.WorkPostId + // where x.IdentityCard == identityCard && y.JTProjectCode == proCode + // && v.TeamId.HasValue && z.JTproCode != null + // && ((type == Const.BtnAdd && x.HeadImage != null && x.HeadImage.Length > 0) || type == Const.BtnModify && x.RealNameAddTime.HasValue) + // select new + // { + // name = x.PersonName, + // idcardType = "SHENFEN_ZHENGJIAN", + // idcardNumber = x.IdentityCard, + // idcardStartDate = x.IdcardStartDate.HasValue ? string.Format("{0:yyyy-MM-dd}", x.IdcardStartDate) : null, + // idcardEndDate = x.IdcardEndDate.HasValue ? string.Format("{0:yyyy-MM-dd}", x.IdcardEndDate) : null, + // idcardForever = "Y", + // politicsStatus = x.PoliticsStatus, + // eduLevel = x.EduLevel, + // maritalStatus = x.MaritalStatus, + // sex = (x.Sex == "2" ? "F" : "M"), + // idcardAddress = x.IdcardAddress, + // homeAddress = x.Address, + // birthday = x.Birthday.HasValue ? string.Format("{0:yyyy-MM-dd}", x.Birthday) : null, + // nation = x.Nation, + // countryCode = x.CountryCode, + // provinceCode = x.ProvinceCode, + // headImage = x.HeadImage, + // proCode = z.JTproCode, + // teamId = v.TeamId, + // mobile = x.Telephone, + // teamLeaderFlag = (v.GroupLeaderId == x.PersonId ? "Y" : "N"), + // userType = ((w.PostType == "1" || w.PostType == "4") ? "LAB_USER_MANAGE" : "LAB_USER_BULIDER"), + // workType = w.WorkPostCode, + // isLeave = x.OutTime.HasValue ? "Y" : "N", + // entryTime = x.InTime.HasValue ? string.Format("{0:yyyy-MM-dd}", x.InTime) : null, + // exitTime = x.OutTime.HasValue ? string.Format("{0:yyyy-MM-dd}", x.OutTime) : null, + // x.RealNameAddTime, + // x.RealNameUpdateTime, + // x.PersonId, + // }).ToList(); + // if (getData.Count() > 0) + // { + // string returndata = string.Empty; + // Hashtable newToken = new Hashtable + // { + // { "token", getaccess_token(proCode) } + // }; + // if (type == Const.BtnModify) + // { + // var updatelistObject = new + // { + // list = getData.Select(x => new { x.name, x.idcardType, x.idcardNumber, x.idcardStartDate, x.idcardEndDate, x.idcardForever, x.politicsStatus, x.eduLevel, x.maritalStatus, x.sex, x.idcardAddress, x.homeAddress, x.birthday, x.nation, x.countryCode, x.provinceCode, x.proCode, x.teamId, x.mobile, x.teamLeaderFlag, x.userType, x.workType, x.isLeave, x.entryTime, x.exitTime }) + // }; + // pushContent = JsonConvert.SerializeObject(updatelistObject); + // returndata = BLL.APIGetHttpService.OutsideHttp(Funs.RealNameApiUrl + "/foreignApi/accept/updatePersons", "POST", contenttype, newToken, pushContent); + // } + // else + // { + // var addlistObject = new + // { + // list = getData.Select(x => new { x.name, x.idcardType, x.idcardNumber, x.idcardStartDate, x.idcardEndDate, x.idcardForever, x.politicsStatus, x.eduLevel, x.maritalStatus, x.sex, x.idcardAddress, x.homeAddress, x.birthday, x.nation, x.countryCode, x.provinceCode, x.headImage, x.proCode, x.teamId, x.mobile, x.teamLeaderFlag, x.userType, x.workType, x.isLeave, x.entryTime, x.exitTime }) + // }; + // pushContent = JsonConvert.SerializeObject(addlistObject); + // returndata = BLL.APIGetHttpService.OutsideHttp(Funs.RealNameApiUrl + "/foreignApi/accept/persons", "POST", contenttype, newToken, pushContent); + // } + + // if (!string.IsNullOrEmpty(returndata)) + // { + // JObject obj = JObject.Parse(returndata); + // mess = obj["message"].ToString(); + // code = obj["code"].ToString(); + // sucess = obj["success"].ToString(); + // data = obj["data"].ToString(); + // if (obj["success"] != null && Convert.ToBoolean(obj["success"].ToString())) + // { + // foreach (var item in getData) + // { + // var getPerson = db.SitePerson_Person.FirstOrDefault(x => x.PersonId == item.PersonId); + // if (getPerson != null) + // { + // if (!getPerson.RealNameAddTime.HasValue) + // { + // getPerson.RealNameAddTime = DateTime.Now; + // } + // getPerson.RealNameUpdateTime = DateTime.Now; + // db.SubmitChanges(); + // } + // } + // } + // else + // { + // if (data.Contains("历史项目进退场时间重合") || data.Contains("已推送")) + // { + // foreach (var item in getData) + // { + // var getPerson = db.SitePerson_Person.FirstOrDefault(x => x.PersonId == item.PersonId); + // if (getPerson != null) + // { + // if (!getPerson.RealNameAddTime.HasValue) + // { + // getPerson.RealNameAddTime = DateTime.Now; + // } + // if (type == Const.BtnModify) + // { + // getPerson.RealNameUpdateTime = DateTime.Now; + // } + // db.SubmitChanges(); + // } + // } + // } + // else if (data.Contains("人员不存在")) + // { + // SynchroSetService.PushPersonsByIdentityCard(Const.BtnAdd, proCode, identityCard, isLog); + // } + // else + // { + // if (isLog) + // { + // InsertRealNamePushLog(null, proCode, "推送人员数据", sucess, code, mess, data, pushContent); + // } + // } + // } + // } + // else + // { + // if (isLog) + // { + // InsertRealNamePushLog(null, proCode, "推送人员数据", sucess, code, mess, data, pushContent); + // } + // } + + // if (data.Contains("已存在") || mess.Contains("已存在")) + // { + // foreach (var item in getData) + // { + // if (data.Contains(item.idcardNumber) || mess.Contains(item.idcardNumber)) + // { + // var getPerson = db.SitePerson_Person.FirstOrDefault(x => x.PersonId == item.PersonId); + // if (getPerson != null) + // { + // if (!getPerson.RealNameAddTime.HasValue) + // { + // getPerson.RealNameAddTime = DateTime.Now; + // } + // db.SubmitChanges(); + // } + // } + // } + // } + // } + // else + // { + // mess = "没有符合条件的数据!"; + // } + + // return mess; + // } + // catch (Exception ex) + // { + // ErrLogInfo.WriteLog(ex, "推送人员数据", "SynchroSetService.PushPersons"); + // return ""; + // } + // } + //} + + public static string PushPersonsByIdentityCard(string type, string proCode, string identityCard, bool isLog) { - using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) + try { - try + string mess = string.Empty; + string sucess = string.Empty; + string code = string.Empty; + string data = string.Empty; + string pushContent = string.Empty; + string contenttype = "application/json;charset=unicode"; + var getData = (from x in Funs.DB.SitePerson_Person + join y in Funs.DB.Base_Project on x.ProjectId equals y.ProjectId + join z in Funs.DB.RealName_Project on y.ContractNo equals z.ProCode + join v in Funs.DB.ProjectData_TeamGroup on x.TeamGroupId equals v.TeamGroupId + join w in Funs.DB.Base_WorkPost on x.WorkPostId equals w.WorkPostId + where x.IdentityCard == identityCard && y.ContractNo == proCode + && v.TeamId.HasValue && z.JTproCode != null + && ((type == Const.BtnAdd && x.HeadImage != null && x.HeadImage.Length > 0) || (type == Const.BtnModify && x.RealNameAddTime.HasValue)) + select new + { + name = x.PersonName, + idcardType = "SHENFEN_ZHENGJIAN", + idcardNumber = x.IdentityCard, + idcardStartDate = x.IdcardStartDate.HasValue ? string.Format("{0:yyyy-MM-dd}", x.IdcardStartDate) : null, + idcardEndDate = x.IdcardEndDate.HasValue ? string.Format("{0:yyyy-MM-dd}", x.IdcardEndDate) : (x.IdcardStartDate.HasValue ? string.Format("{0:yyyy-MM-dd}", x.IdcardStartDate.Value.AddYears(30)) : null), + idcardForever = x.IdcardStartDate.HasValue ? "N" : "Y", + politicsStatus = x.PoliticsStatus, + eduLevel = x.EduLevel, + maritalStatus = x.MaritalStatus, + sex = (x.Sex == "2" ? "F" : "M"), + idcardAddress = x.IdcardAddress, + homeAddress = x.Address, + birthday = x.Birthday.HasValue ? string.Format("{0:yyyy-MM-dd}", x.Birthday) : null, + nation = x.Nation, + countryCode = x.CountryCode, + provinceCode = x.ProvinceCode, + headImage = x.HeadImage, + proCode = z.JTproCode, + teamId = v.TeamId, + mobile = x.Telephone, + teamLeaderFlag = (v.GroupLeaderId == x.PersonId ? "Y" : "N"), + userType = ((w.PostType == "1" || w.PostType == "4") ? "LAB_USER_MANAGE" : "LAB_USER_BULIDER"), + workType = w.WorkPostCode, + isLeave = x.OutTime.HasValue ? "Y" : "N", + entryTime = x.InTime.HasValue ? string.Format("{0:yyyy-MM-dd}", x.InTime) : null, + exitTime = x.OutTime.HasValue ? string.Format("{0:yyyy-MM-dd}", x.OutTime) : null, + x.RealNameAddTime, + x.RealNameUpdateTime, + x.PersonId, + }).ToList(); + if (getData.Count() > 0) { - string mess = string.Empty; - string sucess = string.Empty; - string code = string.Empty; - string data = string.Empty; - string pushContent = string.Empty; - string contenttype = "application/json;charset=unicode"; - var getData = (from x in db.SitePerson_Person - join y in db.Base_Project on x.ProjectId equals y.ProjectId - join z in db.RealName_Project on y.JTProjectCode equals z.ProCode - join v in db.ProjectData_TeamGroup on x.TeamGroupId equals v.TeamGroupId - join w in db.Base_WorkPost on x.WorkPostId equals w.WorkPostId - where x.IdentityCard == identityCard && y.JTProjectCode == proCode - && v.TeamId.HasValue && z.JTproCode != null - && ((type == Const.BtnAdd && x.HeadImage != null && x.HeadImage.Length > 0) || type == Const.BtnModify) - select new - { - name = x.PersonName, - idcardType = "SHENFEN_ZHENGJIAN", - idcardNumber = x.IdentityCard, - idcardStartDate = x.IdcardStartDate.HasValue ? string.Format("{0:yyyy-MM-dd}", x.IdcardStartDate) : null, - idcardEndDate = x.IdcardEndDate.HasValue ? string.Format("{0:yyyy-MM-dd}", x.IdcardEndDate) : null, - idcardForever = "Y", - politicsStatus = x.PoliticsStatus, - eduLevel = x.EduLevel, - maritalStatus = x.MaritalStatus, - sex = (x.Sex == "2" ? "F" : "M"), - idcardAddress = x.IdcardAddress, - homeAddress = x.Address, - birthday = x.Birthday.HasValue ? string.Format("{0:yyyy-MM-dd}", x.Birthday) : null, - nation = x.Nation, - countryCode = x.CountryCode, - provinceCode = x.ProvinceCode, - headImage = x.HeadImage, - proCode = z.JTproCode, - teamId = v.TeamId, - mobile = x.Telephone, - teamLeaderFlag = (v.GroupLeaderId == x.PersonId ? "Y" : "N"), - userType = ((w.PostType == "1" || w.PostType == "4") ? "LAB_USER_MANAGE" : "LAB_USER_BULIDER"), - workType = w.WorkPostCode, - isLeave = x.OutTime.HasValue ? "Y" : "N", - entryTime = x.InTime.HasValue ? string.Format("{0:yyyy-MM-dd}", x.InTime) : null, - exitTime = x.OutTime.HasValue ? string.Format("{0:yyyy-MM-dd}", x.OutTime) : null, - x.RealNameAddTime, - x.RealNameUpdateTime, - x.PersonId, - }).ToList(); - if (getData.Count() > 0) - { - string returndata = string.Empty; - Hashtable newToken = new Hashtable + string returndata = string.Empty; + Hashtable newToken = new Hashtable { { "token", getaccess_token(proCode) } }; - if (type == Const.BtnModify) + if (type == Const.BtnModify) + { + var updatelistObject = new { - var updatelistObject = new - { - list = getData.Select(x => new { x.name, x.idcardType, x.idcardNumber, x.idcardStartDate, x.idcardEndDate, x.idcardForever, x.politicsStatus, x.eduLevel, x.maritalStatus, x.sex, x.idcardAddress, x.homeAddress, x.birthday, x.nation, x.countryCode, x.provinceCode, x.proCode, x.teamId, x.mobile, x.teamLeaderFlag, x.userType, x.workType, x.isLeave, x.entryTime, x.exitTime }) - }; - pushContent = JsonConvert.SerializeObject(updatelistObject); - returndata = BLL.APIGetHttpService.OutsideHttp(Funs.RealNameApiUrl + "/foreignApi/accept/updatePersons", "POST", contenttype, newToken, pushContent); - } - else + list = getData.Select(x => new { x.name, x.idcardType, x.idcardNumber, x.idcardStartDate, x.idcardEndDate, x.idcardForever, x.politicsStatus, x.eduLevel, x.maritalStatus, x.sex, x.idcardAddress, x.homeAddress, x.birthday, x.nation, x.countryCode, x.provinceCode, x.proCode, x.teamId, x.mobile, x.teamLeaderFlag, x.userType, x.workType, x.isLeave, x.entryTime, x.exitTime }) + }; + pushContent = JsonConvert.SerializeObject(updatelistObject); + returndata = BLL.APIGetHttpService.OutsideHttp(Funs.RealNameApiUrl + "/foreignApi/accept/updatePersons", "POST", contenttype, newToken, pushContent); + } + else + { + var addlistObject = new { - var addlistObject = new - { - list = getData.Select(x => new { x.name, x.idcardType, x.idcardNumber, x.idcardStartDate, x.idcardEndDate, x.idcardForever, x.politicsStatus, x.eduLevel, x.maritalStatus, x.sex, x.idcardAddress, x.homeAddress, x.birthday, x.nation, x.countryCode, x.provinceCode, x.headImage, x.proCode, x.teamId, x.mobile, x.teamLeaderFlag, x.userType, x.workType, x.isLeave, x.entryTime, x.exitTime }) - }; - pushContent = JsonConvert.SerializeObject(addlistObject); - returndata = BLL.APIGetHttpService.OutsideHttp(Funs.RealNameApiUrl + "/foreignApi/accept/persons", "POST", contenttype, newToken, pushContent); - } + list = getData.Select(x => new { x.name, x.idcardType, x.idcardNumber, x.idcardStartDate, x.idcardEndDate, x.idcardForever, x.politicsStatus, x.eduLevel, x.maritalStatus, x.sex, x.idcardAddress, x.homeAddress, x.birthday, x.nation, x.countryCode, x.provinceCode, x.headImage, x.proCode, x.teamId, x.mobile, x.teamLeaderFlag, x.userType, x.workType, x.isLeave, x.entryTime, x.exitTime }) + }; + pushContent = JsonConvert.SerializeObject(addlistObject); + returndata = BLL.APIGetHttpService.OutsideHttp(Funs.RealNameApiUrl + "/foreignApi/accept/persons", "POST", contenttype, newToken, pushContent); + } - if (!string.IsNullOrEmpty(returndata)) + if (!string.IsNullOrEmpty(returndata)) + { + JObject obj = JObject.Parse(returndata); + mess = obj["message"].ToString(); + code = obj["code"].ToString(); + sucess = obj["success"].ToString(); + data = obj["data"].ToString(); + if (obj["success"] != null && Convert.ToBoolean(obj["success"].ToString())) { - JObject obj = JObject.Parse(returndata); - mess = obj["message"].ToString(); - code = obj["code"].ToString(); - sucess = obj["success"].ToString(); - data = obj["data"].ToString(); - if (obj["success"] != null && Convert.ToBoolean(obj["success"].ToString()) && code == "200") + using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) { foreach (var item in getData) { @@ -1212,54 +1389,28 @@ namespace BLL { getPerson.RealNameAddTime = DateTime.Now; } - getPerson.RealNameUpdateTime = DateTime.Now; - db.SubmitChanges(); - } - } - } - else - { - if (data.Contains("历史项目进退场时间重合") || data.Contains("已推送")) - { - foreach (var item in getData) - { - var getPerson = db.SitePerson_Person.FirstOrDefault(x => x.PersonId == item.PersonId); - if (getPerson != null) + if (type == Const.BtnModify) { - if (!getPerson.RealNameAddTime.HasValue) - { - getPerson.RealNameAddTime = DateTime.Now; - } - if (type == Const.BtnModify) - { - getPerson.RealNameUpdateTime = DateTime.Now; - } - db.SubmitChanges(); + getPerson.RealNameUpdateTime = DateTime.Now; } - } - } - else if (data.Contains("人员不存在")) - { - SynchroSetService.PushPersonsByIdentityCard(Const.BtnAdd, proCode, identityCard, isLog); - } - else - { - if (isLog) - { - InsertRealNamePushLog(null, proCode, "推送人员数据", sucess, code, mess, data, pushContent); + db.SubmitChanges(); } } } } else { - if (isLog) + if (mess.Contains("token无效")) { - InsertRealNamePushLog(null, proCode, "推送人员数据", sucess, code, mess, data, pushContent); + getaccess_token_New(proCode); } } + } - if (data.Contains("已存在") || mess.Contains("已存在")) + InsertRealNamePushLog(null, proCode, "推送人员数据", sucess, code, mess, data, pushContent); + if (data.Contains("已存在") || mess.Contains("已存在")) + { + using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) { foreach (var item in getData) { @@ -1278,18 +1429,28 @@ namespace BLL } } } - else - { - mess = "没有符合条件的数据!"; - } - - return mess; } - catch (Exception ex) + else { - ErrLogInfo.WriteLog(ex, "推送人员数据", "SynchroSetService.PushPersons"); - return ""; + mess = "没有符合条件的数据!"; } + + return mess; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog(ex, "推送人员数据", "SynchroSetService.PushPersons"); + return "推送人员异常"; + } + } + + public static void getaccess_token_New(string proCode) + { + string access_token = string.Empty; + var getToken = Funs.DB.RealName_SynchroSet.FirstOrDefault(x => x.ProCode == proCode); + if (getToken != null) + { + SaveToken(getToken); } } diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx index 4a3f01b7..3e0b1e97 100644 --- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx +++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx @@ -1340,6 +1340,10 @@ Up to standard 合格 + + Welcome back + 欢迎回来 + Completion status of monthly plan 月计划完成情况 diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx index 610de8ee..c8074f33 100644 --- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx +++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx @@ -1185,6 +1185,12 @@ 合格 + + 欢迎回来 + + + 欢迎回来 + 月计划完成情况 diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx index 95de4d0f..0d494478 100644 --- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx +++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx @@ -1185,6 +1185,9 @@ 合格 + + 欢迎回来 + 月计划完成情况 diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs b/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs index 9ff051a2..585e3016 100644 --- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs +++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs @@ -3067,7 +3067,16 @@ namespace Resources { } /// - /// 查找类似 分包管理 的本地化字符串。 + /// 查找类似 欢迎回来 的本地化字符串。 + /// + internal static string String1 { + get { + return ResourceManager.GetString("String1", resourceCulture); + } + } + + /// + /// 查找类似 分包管理 的本地化字符串。 /// internal static string SubManagement { get { @@ -3247,7 +3256,16 @@ namespace Resources { } /// - /// 查找类似 焊接管理 的本地化字符串。 + /// 查找类似 欢迎回来 的本地化字符串。 + /// + internal static string Welcome { + get { + return ResourceManager.GetString("Welcome", resourceCulture); + } + } + + /// + /// 查找类似 焊接管理 的本地化字符串。 /// internal static string WeldingManage { get { diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index c3b092b2..d0e9cd43 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1680,6 +1680,7 @@ + @@ -1853,6 +1854,15 @@ + + + + + + + + + @@ -1860,6 +1870,7 @@ + @@ -2143,6 +2154,7 @@ + @@ -15858,6 +15870,13 @@ UnitWorkView.aspx + + ProjectItems.aspx + ASPXCodeBehind + + + ProjectItems.aspx + GJSXFind.aspx ASPXCodeBehind @@ -16242,6 +16261,13 @@ imageUp.ashx + + SelectProject.aspx + ASPXCodeBehind + + + SelectProject.aspx + SafetyBriefing.aspx @@ -18434,6 +18460,13 @@ Video.aspx + + WorkBench.aspx + ASPXCodeBehind + + + WorkBench.aspx + ToDoList.aspx ASPXCodeBehind @@ -19773,7 +19806,7 @@ - +