From 8fac3458748427bda257a56228dd3abcaef45f59 Mon Sep 17 00:00:00 2001 From: wendy <408182087@qq.com> Date: Tue, 14 May 2024 18:07:37 +0800 Subject: [PATCH 1/7] =?UTF-8?q?20240514=20=E4=BF=AE=E6=94=B9=E6=9C=88?= =?UTF-8?q?=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CQMS/ManageReportNew/MonthReport.aspx.cs | 13 +++----- .../CQMS/ManageReportNew/WeekReport.aspx.cs | 1 + .../ProcessControl/CheckManStatistics.aspx.cs | 33 ++++++++++++++++--- SGGL/FineUIPro.Web/Web.config | 2 +- 4 files changed, 34 insertions(+), 15 deletions(-) diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs index eb7cdab0..eec67584 100644 --- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs @@ -177,7 +177,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew //序号 value = " " + value; } - + p.ParagraphFormat.Alignment = ParagraphAlignment.Center; p.AppendChild(new Run(doc, value)); @@ -230,8 +230,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew //更新书签内容 Document doc = new Aspose.Words.Document(newUrl); DocumentBuilder builder = new DocumentBuilder(doc); - //builder.CellFormat.VerticalAlignment = CellVerticalAlignment.Center; - //builder.ParagraphFormat.Alignment = ParagraphAlignment.Center; + #region 头部静态列 //业主单位 var unitsYz = (from x in db.Base_Unit @@ -343,16 +342,12 @@ namespace FineUIPro.Web.CQMS.ManageReportNew row.Cells.Add(CreateCell(item.TargetValue, doc, table.FirstRow.Cells[3].CellFormat.Width)); row.Cells.Add(CreateCell(item.MonthPer, doc, table.FirstRow.Cells[4].CellFormat.Width)); row.Cells.Add(CreateCell(item.Remarks, doc, table.FirstRow.Cells[5].CellFormat.Width)); - - table.Rows.Insert(numberIndex, row); - + + table.Rows.Insert(numberIndex, row); numberIndex += 1; } //自动设置表格样式 table.AutoFit(AutoFitBehavior.FixedColumnWidths); - //table.Alignment = Aspose.Words.Tables.TableAlignment.Center; - //builder.ParagraphFormat.Alignment = ParagraphAlignment.Center; - #endregion #region 本月主要工作内容 diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/WeekReport.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/WeekReport.aspx.cs index 82c1a59c..5a534372 100644 --- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/WeekReport.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/WeekReport.aspx.cs @@ -178,6 +178,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew value = " " + value; } + p.ParagraphFormat.Alignment = ParagraphAlignment.Center; p.AppendChild(new Run(doc, value)); diff --git a/SGGL/FineUIPro.Web/CQMS/ProcessControl/CheckManStatistics.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ProcessControl/CheckManStatistics.aspx.cs index 5c3b48e2..20ded6c8 100644 --- a/SGGL/FineUIPro.Web/CQMS/ProcessControl/CheckManStatistics.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/ProcessControl/CheckManStatistics.aspx.cs @@ -60,17 +60,40 @@ namespace FineUIPro.Web.CQMS.ProcessControl } //统计所给时间段的全部数量 List managementListSunNumber = BLL.InspectionManagementService.getInspectionManagementListByCNProfessionalIdAndDate(this.CurrUser.LoginProjectId, string.Empty, StartDate, DateTime.Now, false); - List compileMans = managementListSunNumber.Select(x => x.CompileMan).Distinct().ToList(); - foreach (var item in compileMans) + var checkMans = managementListSunNumber.Select(x => x.AcceptanceCheckMan.Split(',').ToList()); + List compileMans = new List(); + foreach (var item in checkMans) { - Model.Sys_User user = BLL.UserService.GetUserByUserId(item); + string id = item.FirstOrDefault().Trim(); + compileMans.Add(id); + } + checkMans= managementListSunNumber.Select(x => x.AcceptanceCheckMan.Split('、').ToList()); + foreach (var item in checkMans) + { + string name = item.FirstOrDefault().Trim(); + compileMans.Add(name); + } + //List compileMans = managementListSunNumber.Select(x => x.CompileMan).Distinct().ToList(); + foreach (var item in compileMans.Distinct()) + { + Model.NCRStatisc Statistics = new Model.NCRStatisc(); + Model.Sys_User user = BLL.UserService.GetUserByUserId(item);//新数据保存的用户Id if (user != null) { - Model.NCRStatisc Statistics = new Model.NCRStatisc(); Statistics.WorkName = user.UserName; - Statistics.CheckNum = managementListSunNumber.Where(x => x.CompileMan == item).Count(); + Statistics.CheckNum = managementListSunNumber.Where(x => x.AcceptanceCheckMan == item).Count(); StatisticsList.Add(Statistics); } + else + { + Model.Sys_User u = BLL.UserService.GetUserByUserName(item);//老数据保存的姓名 + if (u!=null) + { + Statistics.WorkName = u.UserName; + Statistics.CheckNum = managementListSunNumber.Where(x => x.AcceptanceCheckMan == item).Count(); + StatisticsList.Add(Statistics); + } + } } Model.NCRStatisc StatisticsLast = new Model.NCRStatisc(); StatisticsLast.WorkName = "合计"; diff --git a/SGGL/FineUIPro.Web/Web.config b/SGGL/FineUIPro.Web/Web.config index f50b26d3..9fc55c34 100644 --- a/SGGL/FineUIPro.Web/Web.config +++ b/SGGL/FineUIPro.Web/Web.config @@ -12,7 +12,7 @@ - + From 8c6b348597083d6c9d43cb64ae4e7842647de0f3 Mon Sep 17 00:00:00 2001 From: wangqing <945983254@qq.com> Date: Tue, 14 May 2024 23:26:27 +0800 Subject: [PATCH 2/7] 1 --- SGGL/BLL/.vs/BLL.csproj.dtbcache.json | 2 +- SGGL/BLL/BLL.csproj | 2 +- .../CNCECHSSEService/Reference.cs | 543 ++------- SGGL/BLL/WebService/CNCECHSSEWebService.cs | 32 +- SGGL/BLL/app.config | 46 +- .../.vs/FineUIPro.Web.csproj.dtbcache.json | 2 +- .../CQMS/WBS/Control/PointCropping.aspx | 78 ++ .../CQMS/WBS/Control/PointCropping.aspx.cs | 209 ++++ .../Control/PointCropping.aspx.designer.cs | 152 +++ .../CQMS/WBS/Control/PointCroppingEdit.aspx | 103 ++ .../WBS/Control/PointCroppingEdit.aspx.cs | 217 ++++ .../PointCroppingEdit.aspx.designer.cs | 197 +++ SGGL/FineUIPro.Web/ErrLog.txt | 42 + SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 20 +- SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user | 5 +- SGGL/FineUIPro.Web/Web.config | 6 +- SGGL/FineUIPro.Web/common/Menu_CQMS.xml | 3 +- SGGL/FineUIPro.Web/common/Menu_JDGL.xml | 1 + SGGL/FineUIPro.Web/common/Menu_TestRun.xml | 12 +- SGGL/Model/Model.cs | 1081 +++++++++++++---- SGGL/Model/Model.csproj | 2 +- SGGL/SgManager.AI/SgManager.AI.csproj | 2 +- SGGL/SgManager.AI/app.config | 8 +- SGGL/WebAPI/.vs/WebAPI.csproj.dtbcache.json | 2 +- SGGL/WebAPI/Web.config | 2 +- SGGL/WebAPI/WebAPI.csproj | 2 +- SGGL/WebAPI/WebAPI.csproj.user | 2 +- 27 files changed, 1984 insertions(+), 789 deletions(-) create mode 100644 SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx create mode 100644 SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.cs create mode 100644 SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx create mode 100644 SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.cs create mode 100644 SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.designer.cs diff --git a/SGGL/BLL/.vs/BLL.csproj.dtbcache.json b/SGGL/BLL/.vs/BLL.csproj.dtbcache.json index 75d94521..9a74c8a3 100644 --- a/SGGL/BLL/.vs/BLL.csproj.dtbcache.json +++ b/SGGL/BLL/.vs/BLL.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL","ProjectFileName":"BLL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"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\\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\\TrainLevelService.cs"},{"SourceFile":"BaseInfo\\TrainTypeService.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\\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\\DataDistributionApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApproveService.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\\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\\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\\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\\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\\NondestructiveTestService.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementService.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\\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\\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":"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\\GoodsManageService.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\\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\\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":"obj\\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"},{"SourceFile":"obj\\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"},{"SourceFile":"obj\\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.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_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_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\\GoodsBuyService.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\\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\\DriverSubPlanService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubService.cs"},{"SourceFile":"TestRun\\DriverSummary\\DriverSummaryService.cs"},{"SourceFile":"TestRun\\FeedingTestRunService.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\\TestRunService.cs"},{"SourceFile":"BoSheng\\BOSHENGMonitorService.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\\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\\EPSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingService.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":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\Apache.NMS.ActiveMQ.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.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\\lenovo\\.nuget\\packages\\emitmapper\\1.0.0\\lib\\EmitMapper.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.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\\lenovo\\.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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\Microsoft.QualityTools.Testing.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\SQL2012 x86\\110\\SDK\\Assemblies\\Microsoft.SQLServer.ManagedDTS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\Microsoft.Win32.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netfx.force.conflicts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netstandard.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.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\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\quartz\\3.5.0\\lib\\netstandard2.0\\Quartz.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\restsharp\\106.15.0\\lib\\net452\\RestSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.AppContext.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.buffers\\4.5.1\\ref\\net45\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Concurrent.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.NonGeneric.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Specialized.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.EventBasedAsync.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\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":"D:\\Visual Studio 2022\\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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Contracts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.FileVersionInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Process.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.StackTrace.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TextWriterTraceListener.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Tools.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TraceSource.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Drawing.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Dynamic.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Calendars.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.ZipFile.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.DriveInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Watcher.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.IsolatedStorage.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.MemoryMappedFiles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Pipes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.UnmanagedMemoryStream.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Expressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NameResolution.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NetworkInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Ping.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Requests.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Sockets.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebHeaderCollection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebSockets.Client.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.Reader.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.ResourceManager.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.CompilerServices.VisualC.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Handles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.RuntimeInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Formatters.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Claims.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Algorithms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Csp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\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\\lenovo\\.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":"D:\\Visual Studio 2022\\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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.RegularExpressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Overlapped.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Thread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.ThreadPool.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\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":"D:\\Visual Studio 2022\\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":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.ReaderWriter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlSerializer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","OutputItemRelativePath":"BLL.dll"},{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.pdb","OutputItemRelativePath":"BLL.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL","ProjectFileName":"BLL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"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\\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\\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\\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\\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":"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\\GoodsManageService.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\\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":"obj\\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"},{"SourceFile":"obj\\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"},{"SourceFile":"obj\\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.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\\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\\EPSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingService.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.8.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Users\\汪青\\.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\\汪青\\.nuget\\packages\\apache.nms\\1.8.0\\lib\\net40\\Apache.NMS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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\\汪青\\.nuget\\packages\\emitmapper\\1.0.0\\lib\\EmitMapper.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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.8\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\Microsoft.QualityTools.Testing.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\WINDOWS\\Microsoft.Net\\assembly\\GAC_MSIL\\Microsoft.SQLServer.ManagedDTS\\v4.0_15.0.0.0__89845dcd8080cc91\\Microsoft.SQLServer.ManagedDTS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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\\汪青\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.nuget\\packages\\quartz\\3.5.0\\lib\\net472\\Quartz.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.nuget\\packages\\restsharp\\106.15.0\\lib\\net452\\RestSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.nuget\\packages\\system.buffers\\4.5.1\\ref\\net45\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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.8\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.Data.OracleClient.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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 (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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.8\\System.Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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:\\Users\\汪青\\.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 (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Runtime.Remoting.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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 (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\汪青\\.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:\\Users\\汪青\\.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 (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.ServiceProcess.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\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.8\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","OutputItemRelativePath":"BLL.dll"},{"OutputItemFullPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.pdb","OutputItemRelativePath":"BLL.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index 073bd892..5bf3fc22 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -10,7 +10,7 @@ Properties BLL BLL - v4.6.1 + v4.8 512 diff --git a/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs b/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs index 98ad0626..5ba5f9f7 100644 --- a/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs +++ b/SGGL/BLL/Service References/CNCECHSSEService/Reference.cs @@ -10998,600 +10998,223 @@ namespace BLL.CNCECHSSEService { [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] [System.Runtime.Serialization.DataContractAttribute(Name="Information_MillionsMonthlyReport", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] [System.SerializableAttribute()] - public partial class Information_MillionsMonthlyReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged - { - + public partial class Information_MillionsMonthlyReport : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + [System.NonSerializedAttribute()] private System.Runtime.Serialization.ExtensionDataObject extensionDataField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable AccidentMortalityField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable DeathAccidentFrequencyField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private string DutyPersonField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable FillingDateField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private string FillingManField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable LostTimeInjuryRateField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable LostTimeRateField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private string MillionsMonthlyReportIdField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable MonthField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable RecordableIncidentRateField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private string UnitIdField; - + [System.Runtime.Serialization.OptionalFieldAttribute()] private System.Nullable YearField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable InputCostsField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable TrainNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable GeneralHazardNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable MajorHazardNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable NotProofLargeProjectNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable ProofLargeProjectNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable FireLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable LimitLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable HighLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable HoistingLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable BreakGroundLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable ElectricityLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable RTLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable NightLicenseNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable CommissionerNumField; - - [System.Runtime.Serialization.OptionalFieldAttribute()] - private System.Nullable SoleDutyNumField; - + [global::System.ComponentModel.BrowsableAttribute(false)] - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable SoleDutyNum - { - get - { - return this.SoleDutyNumField; - } - set - { - if ((this.SoleDutyNumField.Equals(value) != true)) - { - this.SoleDutyNumField = value; - this.RaisePropertyChanged("SoleDutyNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable CommissionerNum - { - get - { - return this.CommissionerNumField; - } - set - { - if ((this.CommissionerNumField.Equals(value) != true)) - { - this.CommissionerNumField = value; - this.RaisePropertyChanged("CommissionerNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable NightLicenseNum - { - get - { - return this.NightLicenseNumField; - } - set - { - if ((this.NightLicenseNumField.Equals(value) != true)) - { - this.NightLicenseNumField = value; - this.RaisePropertyChanged("NightLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable RTLicenseNum - { - get - { - return this.RTLicenseNumField; - } - set - { - if ((this.RTLicenseNumField.Equals(value) != true)) - { - this.RTLicenseNumField = value; - this.RaisePropertyChanged("RTLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable ElectricityLicenseNum - { - get - { - return this.ElectricityLicenseNumField; - } - set - { - if ((this.ElectricityLicenseNumField.Equals(value) != true)) - { - this.ElectricityLicenseNumField = value; - this.RaisePropertyChanged("ElectricityLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable BreakGroundLicenseNum - { - get - { - return this.BreakGroundLicenseNumField; - } - set - { - if ((this.BreakGroundLicenseNumField.Equals(value) != true)) - { - this.BreakGroundLicenseNumField = value; - this.RaisePropertyChanged("BreakGroundLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable HoistingLicenseNum - { - get - { - return this.HoistingLicenseNumField; - } - set - { - if ((this.HoistingLicenseNumField.Equals(value) != true)) - { - this.HoistingLicenseNumField = value; - this.RaisePropertyChanged("HoistingLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable HighLicenseNum - { - get - { - return this.HighLicenseNumField; - } - set - { - if ((this.HighLicenseNumField.Equals(value) != true)) - { - this.HighLicenseNumField = value; - this.RaisePropertyChanged("HighLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable LimitLicenseNum - { - get - { - return this.LimitLicenseNumField; - } - set - { - if ((this.LimitLicenseNumField.Equals(value) != true)) - { - this.LimitLicenseNumField = value; - this.RaisePropertyChanged("LimitLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable FireLicenseNum - { - get - { - return this.FireLicenseNumField; - } - set - { - if ((this.FireLicenseNumField.Equals(value) != true)) - { - this.FireLicenseNumField = value; - this.RaisePropertyChanged("FireLicenseNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable ProofLargeProjectNum - { - get - { - return this.ProofLargeProjectNumField; - } - set - { - if ((this.ProofLargeProjectNumField.Equals(value) != true)) - { - this.ProofLargeProjectNumField = value; - this.RaisePropertyChanged("ProofLargeProjectNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable NotProofLargeProjectNum - { - get - { - return this.NotProofLargeProjectNumField; - } - set - { - if ((this.NotProofLargeProjectNumField.Equals(value) != true)) - { - this.NotProofLargeProjectNumField = value; - this.RaisePropertyChanged("NotProofLargeProjectNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable MajorHazardNum - { - get - { - return this.MajorHazardNumField; - } - set - { - if ((this.MajorHazardNumField.Equals(value) != true)) - { - this.MajorHazardNumField = value; - this.RaisePropertyChanged("MajorHazardNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable GeneralHazardNum - { - get - { - return this.GeneralHazardNumField; - } - set - { - if ((this.GeneralHazardNumField.Equals(value) != true)) - { - this.GeneralHazardNumField = value; - this.RaisePropertyChanged("GeneralHazardNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable TrainNum - { - get - { - return this.TrainNumField; - } - set - { - if ((this.TrainNumField.Equals(value) != true)) - { - this.TrainNumField = value; - this.RaisePropertyChanged("TrainNum"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable InputCosts - { - get - { - return this.InputCostsField; - } - set - { - if ((this.InputCostsField.Equals(value) != true)) - { - this.InputCostsField = value; - this.RaisePropertyChanged("InputCosts"); - } - } - } - - [System.Runtime.Serialization.DataMemberAttribute()] - - public System.Runtime.Serialization.ExtensionDataObject ExtensionData - { - get - { + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { return this.extensionDataField; } - set - { + set { this.extensionDataField = value; } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable AccidentMortality - { - get - { + public System.Nullable AccidentMortality { + get { return this.AccidentMortalityField; } - set - { - if ((this.AccidentMortalityField.Equals(value) != true)) - { + set { + if ((this.AccidentMortalityField.Equals(value) != true)) { this.AccidentMortalityField = value; this.RaisePropertyChanged("AccidentMortality"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable DeathAccidentFrequency - { - get - { + public System.Nullable DeathAccidentFrequency { + get { return this.DeathAccidentFrequencyField; } - set - { - if ((this.DeathAccidentFrequencyField.Equals(value) != true)) - { + set { + if ((this.DeathAccidentFrequencyField.Equals(value) != true)) { this.DeathAccidentFrequencyField = value; this.RaisePropertyChanged("DeathAccidentFrequency"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public string DutyPerson - { - get - { + public string DutyPerson { + get { return this.DutyPersonField; } - set - { - if ((object.ReferenceEquals(this.DutyPersonField, value) != true)) - { + set { + if ((object.ReferenceEquals(this.DutyPersonField, value) != true)) { this.DutyPersonField = value; this.RaisePropertyChanged("DutyPerson"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable FillingDate - { - get - { + public System.Nullable FillingDate { + get { return this.FillingDateField; } - set - { - if ((this.FillingDateField.Equals(value) != true)) - { + set { + if ((this.FillingDateField.Equals(value) != true)) { this.FillingDateField = value; this.RaisePropertyChanged("FillingDate"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public string FillingMan - { - get - { + public string FillingMan { + get { return this.FillingManField; } - set - { - if ((object.ReferenceEquals(this.FillingManField, value) != true)) - { + set { + if ((object.ReferenceEquals(this.FillingManField, value) != true)) { this.FillingManField = value; this.RaisePropertyChanged("FillingMan"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable LostTimeInjuryRate - { - get - { + public System.Nullable LostTimeInjuryRate { + get { return this.LostTimeInjuryRateField; } - set - { - if ((this.LostTimeInjuryRateField.Equals(value) != true)) - { + set { + if ((this.LostTimeInjuryRateField.Equals(value) != true)) { this.LostTimeInjuryRateField = value; this.RaisePropertyChanged("LostTimeInjuryRate"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable LostTimeRate - { - get - { + public System.Nullable LostTimeRate { + get { return this.LostTimeRateField; } - set - { - if ((this.LostTimeRateField.Equals(value) != true)) - { + set { + if ((this.LostTimeRateField.Equals(value) != true)) { this.LostTimeRateField = value; this.RaisePropertyChanged("LostTimeRate"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public string MillionsMonthlyReportId - { - get - { + public string MillionsMonthlyReportId { + get { return this.MillionsMonthlyReportIdField; } - set - { - if ((object.ReferenceEquals(this.MillionsMonthlyReportIdField, value) != true)) - { + set { + if ((object.ReferenceEquals(this.MillionsMonthlyReportIdField, value) != true)) { this.MillionsMonthlyReportIdField = value; this.RaisePropertyChanged("MillionsMonthlyReportId"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable Month - { - get - { + public System.Nullable Month { + get { return this.MonthField; } - set - { - if ((this.MonthField.Equals(value) != true)) - { + set { + if ((this.MonthField.Equals(value) != true)) { this.MonthField = value; this.RaisePropertyChanged("Month"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable RecordableIncidentRate - { - get - { + public System.Nullable RecordableIncidentRate { + get { return this.RecordableIncidentRateField; } - set - { - if ((this.RecordableIncidentRateField.Equals(value) != true)) - { + set { + if ((this.RecordableIncidentRateField.Equals(value) != true)) { this.RecordableIncidentRateField = value; this.RaisePropertyChanged("RecordableIncidentRate"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public string UnitId - { - get - { + public string UnitId { + get { return this.UnitIdField; } - set - { - if ((object.ReferenceEquals(this.UnitIdField, value) != true)) - { + set { + if ((object.ReferenceEquals(this.UnitIdField, value) != true)) { this.UnitIdField = value; this.RaisePropertyChanged("UnitId"); } } } - + [System.Runtime.Serialization.DataMemberAttribute()] - public System.Nullable Year - { - get - { + public System.Nullable Year { + get { return this.YearField; } - set - { - if ((this.YearField.Equals(value) != true)) - { + set { + if ((this.YearField.Equals(value) != true)) { this.YearField = value; this.RaisePropertyChanged("Year"); } } } - + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) - { + + protected void RaisePropertyChanged(string propertyName) { System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) - { + if ((propertyChanged != null)) { propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] [System.Runtime.Serialization.DataContractAttribute(Name="Information_MillionsMonthlyReportItem", Namespace="http://schemas.datacontract.org/2004/07/BLL.OpenService")] diff --git a/SGGL/BLL/WebService/CNCECHSSEWebService.cs b/SGGL/BLL/WebService/CNCECHSSEWebService.cs index e96194bd..0e5e6ed0 100644 --- a/SGGL/BLL/WebService/CNCECHSSEWebService.cs +++ b/SGGL/BLL/WebService/CNCECHSSEWebService.cs @@ -109,22 +109,22 @@ LostTimeInjuryRate = x.LostTimeInjuryRate, DeathAccidentFrequency = x.DeathAccidentFrequency, AccidentMortality = x.AccidentMortality, - InputCosts = x.InputCosts, - TrainNum = x.TrainNum, - GeneralHazardNum = x.GeneralHazardNum, - MajorHazardNum = x.MajorHazardNum, - NotProofLargeProjectNum = x.NotProofLargeProjectNum, - ProofLargeProjectNum = x.ProofLargeProjectNum, - FireLicenseNum = x.FireLicenseNum, - LimitLicenseNum = x.LimitLicenseNum, - HighLicenseNum = x.HighLicenseNum, - HoistingLicenseNum = x.HoistingLicenseNum, - BreakGroundLicenseNum = x.BreakGroundLicenseNum, - ElectricityLicenseNum = x.ElectricityLicenseNum, - RTLicenseNum = x.RTLicenseNum, - NightLicenseNum = x.NightLicenseNum, - CommissionerNum = x.CommissionerNum, - SoleDutyNum = x.SoleDutyNum, + //InputCosts = x.InputCosts, + //TrainNum = x.TrainNum, + //GeneralHazardNum = x.GeneralHazardNum, + //MajorHazardNum = x.MajorHazardNum, + //NotProofLargeProjectNum = x.NotProofLargeProjectNum, + //ProofLargeProjectNum = x.ProofLargeProjectNum, + //FireLicenseNum = x.FireLicenseNum, + //LimitLicenseNum = x.LimitLicenseNum, + //HighLicenseNum = x.HighLicenseNum, + //HoistingLicenseNum = x.HoistingLicenseNum, + //BreakGroundLicenseNum = x.BreakGroundLicenseNum, + //ElectricityLicenseNum = x.ElectricityLicenseNum, + //RTLicenseNum = x.RTLicenseNum, + //NightLicenseNum = x.NightLicenseNum, + //CommissionerNum = x.CommissionerNum, + //SoleDutyNum = x.SoleDutyNum, }; var upReportItem = from x in db.Information_MillionsMonthlyReportItem diff --git a/SGGL/BLL/app.config b/SGGL/BLL/app.config index 44315c49..c9e0c27a 100644 --- a/SGGL/BLL/app.config +++ b/SGGL/BLL/app.config @@ -1,64 +1,64 @@ - + - - + + - - + + - - + + - - + + - + - + - - - - + + + + - + - + - - + + - - + + - + - + diff --git a/SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json b/SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json index d20fadd2..9a702a8b 100644 --- a/SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json +++ b/SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web","ProjectFileName":"FineUIPro.Web.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AttachFile\\fileupload.ashx.cs"},{"SourceFile":"AttachFile\\Look.aspx.cs"},{"SourceFile":"AttachFile\\Look.aspx.designer.cs"},{"SourceFile":"AttachFile\\OnlineEditing.aspx.cs"},{"SourceFile":"AttachFile\\OnlineEditing.aspx.designer.cs"},{"SourceFile":"AttachFile\\player.aspx.cs"},{"SourceFile":"AttachFile\\player.aspx.designer.cs"},{"SourceFile":"AttachFile\\uploader.aspx.cs"},{"SourceFile":"AttachFile\\uploader.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.designer.cs"},{"SourceFile":"BaseInfo\\AccidentType.aspx.cs"},{"SourceFile":"BaseInfo\\AccidentType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\BaseFactory.aspx.cs"},{"SourceFile":"BaseInfo\\BaseFactory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\BaseFactoryEdit.aspx.cs"},{"SourceFile":"BaseInfo\\BaseFactoryEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Certificate.aspx.cs"},{"SourceFile":"BaseInfo\\Certificate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessional.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessional.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessionalEdit.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessionalEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessionalView.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessionalView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CostType.aspx.cs"},{"SourceFile":"BaseInfo\\CostType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessional.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessional.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalEdit.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalView.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DocType.aspx.cs"},{"SourceFile":"BaseInfo\\DocType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\EmergencyType.aspx.cs"},{"SourceFile":"BaseInfo\\EmergencyType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\GoodsCategory.aspx.cs"},{"SourceFile":"BaseInfo\\GoodsCategory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypes.aspx.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypes.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypesEdit.aspx.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypesEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListType.aspx.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsType.aspx.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\LicenseType.aspx.cs"},{"SourceFile":"BaseInfo\\LicenseType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ManageRuleType.aspx.cs"},{"SourceFile":"BaseInfo\\ManageRuleType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PictureType.aspx.cs"},{"SourceFile":"BaseInfo\\PictureType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Position.aspx.cs"},{"SourceFile":"BaseInfo\\Position.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PostTitle.aspx.cs"},{"SourceFile":"BaseInfo\\PostTitle.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PracticeCertificate.aspx.cs"},{"SourceFile":"BaseInfo\\PracticeCertificate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ProjectType.aspx.cs"},{"SourceFile":"BaseInfo\\ProjectType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionType.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeEdit.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeView.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QuestionType.aspx.cs"},{"SourceFile":"BaseInfo\\QuestionType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RectificationMeasure.aspx.cs"},{"SourceFile":"BaseInfo\\RectificationMeasure.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureEdit.aspx.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RiskLevel.aspx.cs"},{"SourceFile":"BaseInfo\\RiskLevel.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RiskLevelEdit.aspx.cs"},{"SourceFile":"BaseInfo\\RiskLevelEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsType.aspx.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SafetyMeasures.aspx.cs"},{"SourceFile":"BaseInfo\\SafetyMeasures.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresEdit.aspx.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteType.aspx.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SpecialEquipment.aspx.cs"},{"SourceFile":"BaseInfo\\SpecialEquipment.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeType.aspx.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainLevel.aspx.cs"},{"SourceFile":"BaseInfo\\TrainLevel.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainType.aspx.cs"},{"SourceFile":"BaseInfo\\TrainType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainTypeEdit.aspx.cs"},{"SourceFile":"BaseInfo\\TrainTypeEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TransferMajor.aspx.cs"},{"SourceFile":"BaseInfo\\TransferMajor.aspx.designer.cs"},{"SourceFile":"BaseInfo\\UnitType.aspx.cs"},{"SourceFile":"BaseInfo\\UnitType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\WorkPost.aspx.cs"},{"SourceFile":"BaseInfo\\WorkPost.aspx.designer.cs"},{"SourceFile":"BaseInfo\\WorkStage.aspx.cs"},{"SourceFile":"BaseInfo\\WorkStage.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoExam.aspx.cs"},{"SourceFile":"BoSheng\\BoExam.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoPersonTrainRecord.aspx.cs"},{"SourceFile":"BoSheng\\BoPersonTrainRecord.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoTrainPerson.aspx.cs"},{"SourceFile":"BoSheng\\BoTrainPerson.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoTrain.aspx.cs"},{"SourceFile":"BoSheng\\BoTrain.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoPerson.aspx.cs"},{"SourceFile":"BoSheng\\BoPerson.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoUnit.aspx.cs"},{"SourceFile":"BoSheng\\BoUnit.aspx.designer.cs"},{"SourceFile":"CLGL\\ArrivalDetailList.aspx.cs"},{"SourceFile":"CLGL\\ArrivalDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\CheckOutDetailList.aspx.cs"},{"SourceFile":"CLGL\\CheckOutDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractList.aspx.cs"},{"SourceFile":"CLGL\\ContractList.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractListSum.aspx.cs"},{"SourceFile":"CLGL\\ContractListSum.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractQuantitySheet.aspx.cs"},{"SourceFile":"CLGL\\ContractQuantitySheet.aspx.designer.cs"},{"SourceFile":"CLGL\\GoodsShelves.aspx.cs"},{"SourceFile":"CLGL\\GoodsShelves.aspx.designer.cs"},{"SourceFile":"CLGL\\Material.aspx.cs"},{"SourceFile":"CLGL\\Material.aspx.designer.cs"},{"SourceFile":"CLGL\\MaterialRecord.aspx.cs"},{"SourceFile":"CLGL\\MaterialRecord.aspx.designer.cs"},{"SourceFile":"CLGL\\MTODetail.aspx.cs"},{"SourceFile":"CLGL\\MTODetail.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialCodeList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialCodeList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialSumList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialSumList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineSupplierList.aspx.cs"},{"SourceFile":"CLGL\\PipelineSupplierList.aspx.designer.cs"},{"SourceFile":"CLGL\\PurchaseRequisition.aspx.cs"},{"SourceFile":"CLGL\\PurchaseRequisition.aspx.designer.cs"},{"SourceFile":"CLGL\\RequestDetailList.aspx.cs"},{"SourceFile":"CLGL\\RequestDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\SubUnit.aspx.cs"},{"SourceFile":"CLGL\\SubUnit.aspx.designer.cs"},{"SourceFile":"CLGL\\Supplier.aspx.cs"},{"SourceFile":"CLGL\\Supplier.aspx.designer.cs"},{"SourceFile":"common\\main2.aspx.cs"},{"SourceFile":"common\\main2.aspx.designer.cs"},{"SourceFile":"common\\mainI.aspx.cs"},{"SourceFile":"common\\mainI.aspx.designer.cs"},{"SourceFile":"common\\mainIV.aspx.cs"},{"SourceFile":"common\\mainIV.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_DigitalSite.aspx.cs"},{"SourceFile":"common\\mainMenu_DigitalSite.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HJGL.aspx.cs"},{"SourceFile":"common\\mainMenu_HJGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HJGL2.aspx.cs"},{"SourceFile":"common\\mainMenu_HJGL2.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HSSE2.aspx.cs"},{"SourceFile":"common\\mainMenu_HSSE2.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_Party.aspx.cs"},{"SourceFile":"common\\mainMenu_Party.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PDigData.aspx.cs"},{"SourceFile":"common\\mainMenu_PDigData.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PZHGL.aspx.cs"},{"SourceFile":"common\\mainMenu_PZHGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_SYHSE.aspx.cs"},{"SourceFile":"common\\mainMenu_SYHSE.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_SYHSEN.aspx.cs"},{"SourceFile":"common\\mainMenu_SYHSEN.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_TestRun.aspx.cs"},{"SourceFile":"common\\mainMenu_TestRun.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PHTGL.aspx.cs"},{"SourceFile":"common\\mainMenu_PHTGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_JDGL.aspx.cs"},{"SourceFile":"common\\mainMenu_JDGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_CQMS.aspx.cs"},{"SourceFile":"common\\mainMenu_CQMS.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HSSE.aspx.cs"},{"SourceFile":"common\\mainMenu_HSSE.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_Transfer.aspx.cs"},{"SourceFile":"common\\mainMenu_Transfer.aspx.designer.cs"},{"SourceFile":"common\\mainProject0.aspx.cs"},{"SourceFile":"common\\mainProject0.aspx.designer.cs"},{"SourceFile":"common\\mainIII.aspx.cs"},{"SourceFile":"common\\mainIII.aspx.designer.cs"},{"SourceFile":"common\\mainProject1.aspx.cs"},{"SourceFile":"common\\mainProject1.aspx.designer.cs"},{"SourceFile":"common\\main.aspx.cs"},{"SourceFile":"common\\main.aspx.designer.cs"},{"SourceFile":"common\\mainProject.aspx.cs"},{"SourceFile":"common\\mainProject.aspx.designer.cs"},{"SourceFile":"common\\mainProject2.aspx.cs"},{"SourceFile":"common\\mainProject2.aspx.designer.cs"},{"SourceFile":"common\\main_new.aspx.cs"},{"SourceFile":"common\\main_new.aspx.designer.cs"},{"SourceFile":"common\\main_new0.aspx.cs"},{"SourceFile":"common\\main_new0.aspx.designer.cs"},{"SourceFile":"common\\main_new1.aspx.cs"},{"SourceFile":"common\\main_new1.aspx.designer.cs"},{"SourceFile":"common\\themes.aspx.cs"},{"SourceFile":"common\\themes.aspx.designer.cs"},{"SourceFile":"Controls\\DataImportControl.ascx.cs"},{"SourceFile":"Controls\\DataImportControl.ascx.designer.cs"},{"SourceFile":"Controls\\FlowOperateControl.ascx.cs"},{"SourceFile":"Controls\\FlowOperateControl.ascx.designer.cs"},{"SourceFile":"Controls\\QRCodePrint.aspx.cs"},{"SourceFile":"Controls\\QRCodePrint.aspx.designer.cs"},{"SourceFile":"Controls\\SeeQRImage.aspx.cs"},{"SourceFile":"Controls\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"Controls\\ShowQRImage.aspx.cs"},{"SourceFile":"Controls\\ShowQRImage.aspx.designer.cs"},{"SourceFile":"Controls\\UnitProjectTControl.ascx.cs"},{"SourceFile":"Controls\\UnitProjectTControl.ascx.designer.cs"},{"SourceFile":"CQMS\\BaseInfo\\ProjectSysSet.aspx.cs"},{"SourceFile":"CQMS\\BaseInfo\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipment.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckList.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ChecklistEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\ChecklistEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckListFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckListFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckListView.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckListView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckMonth.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckMonth.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ConstructSolutionFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\ConstructSolutionFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\Design.aspx.cs"},{"SourceFile":"CQMS\\Check\\Design.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DesignFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\DesignFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DesignView.aspx.cs"},{"SourceFile":"CQMS\\Check\\DesignView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\Draw.aspx.cs"},{"SourceFile":"CQMS\\Check\\Draw.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DrawEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\DrawEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DrawView.aspx.cs"},{"SourceFile":"CQMS\\Check\\DrawView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipment.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipmentTwo.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipmentTwo.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckMonth.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckMonth.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditDesign.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditDesign.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheckTwo.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheckTwo.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditSportDataCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditSportDataCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditSpotCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditSpotCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditTechnicalContactList.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditTechnicalContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\FileCabinet.aspx.cs"},{"SourceFile":"CQMS\\Check\\FileCabinet.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckStatistics.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ShowWBS.aspx.cs"},{"SourceFile":"CQMS\\Check\\ShowWBS.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckStatistics.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactList.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactView.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\WorkContactFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\WorkContactFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistribution.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistribution.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceiving.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceiving.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrder.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrder.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetails.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetails.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawings.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawings.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApproval.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApproval.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipment.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachine.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachine.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPerson.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPerson.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApproval.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApproval.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagement.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonItem.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonItem.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipe.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipe.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccident.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccident.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagement.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipment.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardList.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardList.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProject.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProject.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBase.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBase.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseProject.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseProject.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit2.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit2.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotList.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotList.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotListEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\WBS2FileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\WBS2FileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\WBSFileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\WBSFileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheck.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointList.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointList.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointListEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ForeignWBSOut.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ForeignWBSOut.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPList.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPList.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProject.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProject.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ShoBreakdownProject.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ShoBreakdownProject.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\CheckStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\CheckStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\DesignChangeStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\DesignChangeStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\HJGLStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\HJGLStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportPrint.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportPrint.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\NCRStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\NCRStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQuality.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQuality.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQualityEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQualityEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportPrint.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportPrint.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\MonthTargetEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\MonthTargetEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\OutDayEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\OutDayEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\Performance.aspx.cs"},{"SourceFile":"CQMS\\Performance\\Performance.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceAudit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceAudit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceConfig.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceConfig.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceSubmit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceSubmit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\ScoreEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\ScoreEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\TaskContentEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\TaskContentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\WorkPlanEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\WorkPlanEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\CheckManStatistics.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\CheckManStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManage.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManage.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagement.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementStatistics.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNotice.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNotice.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNoticeEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNoticeEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\ShowUnitWork.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\ShowUnitWork.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagement.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolution.aspx.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolution.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolutionView.aspx.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolutionView.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\EditConstructSolution.aspx.cs"},{"SourceFile":"CQMS\\Solution\\EditConstructSolution.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\AddWorkContactFinalFile.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\AddWorkContactFinalFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\ContactList.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\ContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\EditWorkContact.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\EditWorkContact.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactFinalFileView.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactFinalFileView.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactView.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactView.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycle.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycle.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSearch.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSearch.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleShow.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleShow.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdown.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdown.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdownProject.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdownProject.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditDivision.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditDivision.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditDivisionProject.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditDivisionProject.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessional.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessional.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPointEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPointEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlItemInitSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlItemInitSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPointFile.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPointFile.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet1.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet1.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2In.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2In.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatisc.aspx.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatisc.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatiscItem.aspx.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatiscItem.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\NCRStatisc.aspx.cs"},{"SourceFile":"DataShowLocal\\NCRStatisc.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\NCRStatiscItem.aspx.cs"},{"SourceFile":"DataShowLocal\\NCRStatiscItem.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\QualityInstruments.aspx.cs"},{"SourceFile":"DataShowLocal\\QualityInstruments.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\QualityInstrumentsItem.aspx.cs"},{"SourceFile":"DataShowLocal\\QualityInstrumentsItem.aspx.designer.cs"},{"SourceFile":"DataShow\\Accident.aspx.cs"},{"SourceFile":"DataShow\\Accident.aspx.designer.cs"},{"SourceFile":"DataShow\\Check.aspx.cs"},{"SourceFile":"DataShow\\Check.aspx.designer.cs"},{"SourceFile":"DataShow\\CompanyPerson.aspx.cs"},{"SourceFile":"DataShow\\CompanyPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\ConstructionEquipment.aspx.cs"},{"SourceFile":"DataShow\\ConstructionEquipment.aspx.designer.cs"},{"SourceFile":"DataShow\\EduTrain.aspx.cs"},{"SourceFile":"DataShow\\EduTrain.aspx.designer.cs"},{"SourceFile":"DataShow\\Emergency.aspx.cs"},{"SourceFile":"DataShow\\Emergency.aspx.designer.cs"},{"SourceFile":"DataShow\\Environmental.aspx.cs"},{"SourceFile":"DataShow\\Environmental.aspx.designer.cs"},{"SourceFile":"DataShow\\HiddenRectification.aspx.cs"},{"SourceFile":"DataShow\\HiddenRectification.aspx.designer.cs"},{"SourceFile":"DataShow\\HiddenRectificationItem.aspx.cs"},{"SourceFile":"DataShow\\HiddenRectificationItem.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLDefect.aspx.cs"},{"SourceFile":"DataShow\\HJGLDefect.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWelder.aspx.cs"},{"SourceFile":"DataShow\\HJGLWelder.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWelding.aspx.cs"},{"SourceFile":"DataShow\\HJGLWelding.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWeldingItem.aspx.cs"},{"SourceFile":"DataShow\\HJGLWeldingItem.aspx.designer.cs"},{"SourceFile":"DataShow\\LargeEngineering.aspx.cs"},{"SourceFile":"DataShow\\LargeEngineering.aspx.designer.cs"},{"SourceFile":"DataShow\\LargeEngineeringItem.aspx.cs"},{"SourceFile":"DataShow\\LargeEngineeringItem.aspx.designer.cs"},{"SourceFile":"DataShow\\License.aspx.cs"},{"SourceFile":"DataShow\\License.aspx.designer.cs"},{"SourceFile":"DataShow\\Meeting.aspx.cs"},{"SourceFile":"DataShow\\Meeting.aspx.designer.cs"},{"SourceFile":"DataShow\\Project.aspx.cs"},{"SourceFile":"DataShow\\Project.aspx.designer.cs"},{"SourceFile":"DataShow\\ProjectDivision.aspx.cs"},{"SourceFile":"DataShow\\ProjectDivision.aspx.designer.cs"},{"SourceFile":"DataShow\\ProjectPerson.aspx.cs"},{"SourceFile":"DataShow\\ProjectPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityAcceptance.aspx.cs"},{"SourceFile":"DataShow\\QualityAcceptance.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityControlPoint.aspx.cs"},{"SourceFile":"DataShow\\QualityControlPoint.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityInstruments.aspx.cs"},{"SourceFile":"DataShow\\QualityInstruments.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityInstrumentsItem.aspx.cs"},{"SourceFile":"DataShow\\QualityInstrumentsItem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityPerson.aspx.cs"},{"SourceFile":"DataShow\\QualityPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityProblem.aspx.cs"},{"SourceFile":"DataShow\\QualityProblem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityProblemItem.aspx.cs"},{"SourceFile":"DataShow\\QualityProblemItem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTraining.aspx.cs"},{"SourceFile":"DataShow\\QualityTraining.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTrainingItem1.aspx.cs"},{"SourceFile":"DataShow\\QualityTrainingItem1.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTrainingItem2.aspx.cs"},{"SourceFile":"DataShow\\QualityTrainingItem2.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityCost.aspx.cs"},{"SourceFile":"DataShow\\SecurityCost.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityRisk.aspx.cs"},{"SourceFile":"DataShow\\SecurityRisk.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityRiskItem.aspx.cs"},{"SourceFile":"DataShow\\SecurityRiskItem.aspx.designer.cs"},{"SourceFile":"DataShow\\WorkingHours.aspx.cs"},{"SourceFile":"DataShow\\WorkingHours.aspx.designer.cs"},{"SourceFile":"DataShow\\WorkingHoursItem.aspx.cs"},{"SourceFile":"DataShow\\WorkingHoursItem.aspx.designer.cs"},{"SourceFile":"DigData\\HSEDataCollect.aspx.cs"},{"SourceFile":"DigData\\HSEDataCollect.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManage.aspx.cs"},{"SourceFile":"DocManage\\DocManage.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManageEdit.aspx.cs"},{"SourceFile":"DocManage\\DocManageEdit.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManageView.aspx.cs"},{"SourceFile":"DocManage\\DocManageView.aspx.designer.cs"},{"SourceFile":"Door\\AbsenceDuty.aspx.cs"},{"SourceFile":"Door\\AbsenceDuty.aspx.designer.cs"},{"SourceFile":"Door\\InOutManHoursItem.aspx.cs"},{"SourceFile":"Door\\InOutManHoursItem.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecordChart.aspx.cs"},{"SourceFile":"Door\\InOutRecordChart.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecordItem.aspx.cs"},{"SourceFile":"Door\\InOutRecordItem.aspx.designer.cs"},{"SourceFile":"Door\\InOutManHours.aspx.cs"},{"SourceFile":"Door\\InOutManHours.aspx.designer.cs"},{"SourceFile":"Door\\InOutList.aspx.cs"},{"SourceFile":"Door\\InOutList.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecord.aspx.cs"},{"SourceFile":"Door\\InOutRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Components.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Components.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Consumables.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Consumables.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Control.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Control.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Defect.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Defect.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Detection.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Detection.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Groove.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Groove.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Material.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Material.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Medium.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Medium.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClass.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClass.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Pressure.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Pressure.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClass.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClass.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethod.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethod.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Testing.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Testing.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMedium.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMedium.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Weld.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Weld.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocation.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocation.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethod.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethod.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldView.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\HJGLData.aspx.cs"},{"SourceFile":"HJGL\\FL\\HJGLData.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\HJGLDataEdit.aspx.cs"},{"SourceFile":"HJGL\\FL\\HJGLDataEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\NdtList.aspx.cs"},{"SourceFile":"HJGL\\FL\\NdtList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\OneOKRate.aspx.cs"},{"SourceFile":"HJGL\\FL\\OneOKRate.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\PressurePackageList.aspx.cs"},{"SourceFile":"HJGL\\FL\\PressurePackageList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\Quantity.aspx.cs"},{"SourceFile":"HJGL\\FL\\Quantity.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\TailItemList.aspx.cs"},{"SourceFile":"HJGL\\FL\\TailItemList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\TotalQuantity.aspx.cs"},{"SourceFile":"HJGL\\FL\\TotalQuantity.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardFeedback.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardFeedback.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReport.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportItem.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportItem.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessFeedback.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessFeedback.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReport.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportItem.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportItem.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAudit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumComplete.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumItemEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatch.aspx.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\RepairNotice.aspx.cs"},{"SourceFile":"HJGL\\NDT\\RepairNotice.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItem.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItem.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageView.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageView.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\SeeQRImage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItem.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItem.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManageEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\OpenResetPoint.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\OpenResetPoint.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\PointAudit.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\PointAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatch.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\TrustBatch.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\TrustBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAudit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningComplete.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairAndExpand.aspx.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairAndExpand.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\SeeFilm.aspx.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\SeeFilm.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit2.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit2.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckView.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckView.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAudit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageComplete.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageCompleteEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageCompleteEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\GetWdldingDailyItem.ashx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineListIn.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineListIn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportAudit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectDailyWeldJoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectDailyWeldJoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectTaskWeldJoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectTaskWeldJoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWPS.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWPS.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTask.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTask.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\DefectStatistics.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\DefectStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\FirstPassRate.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\FirstPassRate.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTMonthlyReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTMonthlyReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTWeeklyReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTWeeklyReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderAvgPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderAvgPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQEdit.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQIn.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQIn.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQList.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQList.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQView.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandle.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandle.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecord.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReport.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOther.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOther.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanList.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanList.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummary.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummary.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditCompanyManageRuleTemplate.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditCompanyManageRuleTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditManagerRuleTemplate.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditManagerRuleTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleList.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleList.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManager.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManager.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerView.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManager.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManager.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerView.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligation.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligation.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayDetailWHEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayDetailWHEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWH.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWH.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHoliday.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHoliday.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailIn.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecial.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecial.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWork.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWork.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailIn.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactList.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactList.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactListEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactListView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificate.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificate.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateView.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\OfficeCheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\OfficeCheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNotices.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNotices.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRecheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRecheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRectify.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAudit.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesView.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ShowCheckItem.aspx.cs"},{"SourceFile":"HSSE\\Check\\ShowCheckItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ShowCompletedDate.aspx.cs"},{"SourceFile":"HSSE\\Check\\ShowCompletedDate.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPerson.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPerson.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostLedger.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostLedger.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManage.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManage.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetail.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetail.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\Expense.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\Expense.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManage.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManage.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlan.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlanEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlanEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistration.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistration.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistrationEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistrationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistration.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistration.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistrationEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistrationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\TotalPayRegistrationView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\TotalPayRegistrationView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCase.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCase.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTraining.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTraining.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\Plan.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\Plan.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\PlanView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\PlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\ShowPerson.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\ShowPerson.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\Task.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\Task.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlan.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItem.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItem.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordPrint.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestStatistics.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTraining.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTraining.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemIn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemIn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingOut.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingOut.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainDB.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainDB.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainFind.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainFind.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordIn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordIn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTest.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTest.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDB.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDB.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestItemEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordList.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordList.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyList.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyList.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcess.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcess.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcessEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcessEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupply.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupply.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrain.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrain.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReport.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlan.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoring.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoring.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmental.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFile.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFile.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfo.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfo.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfoEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfoEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardPrompt.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardPrompt.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardReEvaluator.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardReEvaluator.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardTemplate.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\MajorHazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\MajorHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazard.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazard.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectify.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectifyEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\Response.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\Response.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ResponseItem.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ResponseItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RiskControl.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RiskControl.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspection.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspection.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\SetToolTipTime.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\SetToolTipTime.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ShowEnvironmentalItem.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ShowEnvironmentalItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ShowHazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ShowHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationAdd.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationConfirm.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationConfirm.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationList.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationList.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationRectify.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationView.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationView.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\RiskAnalysisChart.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\RiskAnalysisChart.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDuty.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDuty.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyEdit.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitution.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitution.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitutionEdit.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitutionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOut.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOut.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOut.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOut.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationAnalysis\\CheckAnalysis.aspx.cs"},{"SourceFile":"HSSE\\InformationAnalysis\\CheckAnalysis.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\CreateLawRegulationIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\CreateLawRegulationIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetA.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetA.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetB.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetB.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\Notice.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\Notice.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolder.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolder.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivities.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivities.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardList.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSave.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSave.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationList.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationList.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRule.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulations.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulations.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\BreakGround.aspx.cs"},{"SourceFile":"HSSE\\License\\BreakGround.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\BreakGroundView.aspx.cs"},{"SourceFile":"HSSE\\License\\BreakGroundView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\Electricity.aspx.cs"},{"SourceFile":"HSSE\\License\\Electricity.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\ElectricityView.aspx.cs"},{"SourceFile":"HSSE\\License\\ElectricityView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyList.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyList.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListView.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\FireWork.aspx.cs"},{"SourceFile":"HSSE\\License\\FireWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\FireWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\FireWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HeightWork.aspx.cs"},{"SourceFile":"HSSE\\License\\HeightWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HeightWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\HeightWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnical.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnical.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalView.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManager.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManager.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerView.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LiftingWork.aspx.cs"},{"SourceFile":"HSSE\\License\\LiftingWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LiftingWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\LiftingWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LimitedSpace.aspx.cs"},{"SourceFile":"HSSE\\License\\LimitedSpace.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LimitedSpaceView.aspx.cs"},{"SourceFile":"HSSE\\License\\LimitedSpaceView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\NightWork.aspx.cs"},{"SourceFile":"HSSE\\License\\NightWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\NightWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\NightWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\OpenCircuit.aspx.cs"},{"SourceFile":"HSSE\\License\\OpenCircuit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\OpenCircuitView.aspx.cs"},{"SourceFile":"HSSE\\License\\OpenCircuitView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\RadialWork.aspx.cs"},{"SourceFile":"HSSE\\License\\RadialWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\RadialWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\RadialWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\SecurityLicense.aspx.cs"},{"SourceFile":"HSSE\\License\\SecurityLicense.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReport.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiary.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiary.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiaryView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiaryView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSELogStatistics.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSELogStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELog.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELog.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonth.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonth.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDin.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDin.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeek.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeek.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit1.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit1.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit10.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit10.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit2.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit2.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit3.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit3.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit4.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit4.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit6.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit6.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit5.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit5.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit7.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit7.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit8.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit8.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit9.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit9.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCOut.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCOut.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView1.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView1.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView10.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView10.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView2.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView2.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView3.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView3.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView4.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView4.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView5.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView5.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView6.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView6.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView7.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView7.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView8.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView8.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView9.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView9.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonth.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonth.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeek.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeek.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetection.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetection.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccident.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccident.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExamination.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExamination.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationView.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecord.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordView.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomance.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomance.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceEdit.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceView.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAudit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditView.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecord.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAudit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditView.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Resources\\SignManage.aspx.cs"},{"SourceFile":"HSSE\\Resources\\SignManage.aspx.designer.cs"},{"SourceFile":"HSSE\\Resources\\SignManageEdit.aspx.cs"},{"SourceFile":"HSSE\\Resources\\SignManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganization.aspx.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganization.aspx.designer.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationEdit.aspx.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportImport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportImport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonAutoDetail.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonAutoDetail.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfo.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfo.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonList.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonList.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonListEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonOut.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonOut.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonBaseData.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonBaseData.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\WorkPostStatistic.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\WorkPostStatistic.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonStatistic.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonStatistic.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonUnitRefresh.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonUnitRefresh.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\ReadWriteCard.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\ReadWriteCard.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCard.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCard.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCardView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolution.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolution.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentList.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentList.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEditItem.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEditItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardList.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ShowIndexToLaw.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ShowIndexToLaw.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplate.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateView.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemSet.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemSet.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CompanyEnvironmental.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CompanyEnvironmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CompanyHazardList.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CompanyHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Emergency.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Emergency.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EmergencySelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EmergencySelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Environmental.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Environmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalIn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardList.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListIn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListOut.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListOut.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Rectify.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Rectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifyEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifySelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifySelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialScheme.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialScheme.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeSelectCloumn.aspx.designer.cs"},{"SourceFile":"indexProject.aspx.cs"},{"SourceFile":"indexProject.aspx.designer.cs"},{"SourceFile":"index.aspx.cs"},{"SourceFile":"index.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionView.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionView.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressShow.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressShow.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressStatistics.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressStatistics.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityList.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityList.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityListEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityListEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityListView.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityListView.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\TotalCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\TotalCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\EarnedValueCurve.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\EarnedValueCurve.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\JDReport.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\JDReport.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\PlanAdjust.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\PlanAdjust.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\RectificationMeasureSet.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\RectificationMeasureSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSCompleteAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSCompleteAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReport.aspx.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReport.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\SeeDetailHistory.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\SeeDetailHistory.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanSet.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSWeights\\WeightsAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSWeights\\WeightsAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryShow.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryShow.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailHistoryShow.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailHistoryShow.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekItemDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekItemDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigType.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigType.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeView.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeView.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialType.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialType.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeView.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeView.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\MilePost.aspx.cs"},{"SourceFile":"JDGL\\WBS\\MilePost.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\MilePostEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\MilePostEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSIn.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSIn.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSOut.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSOut.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSet.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAudit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAuditEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAuditEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy2.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy2.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInput.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInput.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEditAll.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEditAll.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputIn.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputIn.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatistics.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatistics.aspx.designer.cs"},{"SourceFile":"Login.aspx.cs"},{"SourceFile":"Login.aspx.designer.cs"},{"SourceFile":"Notice\\IssuedNotice.aspx.cs"},{"SourceFile":"Notice\\IssuedNotice.aspx.designer.cs"},{"SourceFile":"Notice\\NoIssuedNotice.aspx.cs"},{"SourceFile":"Notice\\NoIssuedNotice.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeEdit.aspx.cs"},{"SourceFile":"Notice\\NoticeEdit.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeView.aspx.cs"},{"SourceFile":"Notice\\NoticeView.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeView2.aspx.cs"},{"SourceFile":"Notice\\NoticeView2.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckContentEdit1.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckContentEdit1.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckInfo.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckInfo.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNotice.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNotice.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReport.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReport.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\RectifyEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\RectifyEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluation.aspx.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluation.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationEdit.aspx.designer.cs"},{"SourceFile":"Opinion\\OpinionCollection.aspx.cs"},{"SourceFile":"Opinion\\OpinionCollection.aspx.designer.cs"},{"SourceFile":"Opinion\\OpinionCollectionEdit.aspx.cs"},{"SourceFile":"Opinion\\OpinionCollectionEdit.aspx.designer.cs"},{"SourceFile":"Party\\BasicInformation.aspx.cs"},{"SourceFile":"Party\\BasicInformation.aspx.designer.cs"},{"SourceFile":"Party\\CommentPartyer.aspx.cs"},{"SourceFile":"Party\\CommentPartyer.aspx.designer.cs"},{"SourceFile":"Party\\CommentPartyerEdit.aspx.cs"},{"SourceFile":"Party\\CommentPartyerEdit.aspx.designer.cs"},{"SourceFile":"Party\\DoingThingsForMasses.aspx.cs"},{"SourceFile":"Party\\DoingThingsForMasses.aspx.designer.cs"},{"SourceFile":"Party\\DoingThingsForMassesEdit.aspx.cs"},{"SourceFile":"Party\\DoingThingsForMassesEdit.aspx.designer.cs"},{"SourceFile":"Party\\EmployeeConversationRecord.aspx.cs"},{"SourceFile":"Party\\EmployeeConversationRecord.aspx.designer.cs"},{"SourceFile":"Party\\EmployeeConversationRecordEdit.aspx.cs"},{"SourceFile":"Party\\EmployeeConversationRecordEdit.aspx.designer.cs"},{"SourceFile":"Party\\FocusLearn.aspx.cs"},{"SourceFile":"Party\\FocusLearn.aspx.designer.cs"},{"SourceFile":"Party\\FocusLearnEdit.aspx.cs"},{"SourceFile":"Party\\FocusLearnEdit.aspx.designer.cs"},{"SourceFile":"Party\\LastWorkSummary.aspx.cs"},{"SourceFile":"Party\\LastWorkSummary.aspx.designer.cs"},{"SourceFile":"Party\\LastWorkSummaryEdit.aspx.cs"},{"SourceFile":"Party\\LastWorkSummaryEdit.aspx.designer.cs"},{"SourceFile":"Party\\NewsPropagandaWork.aspx.cs"},{"SourceFile":"Party\\NewsPropagandaWork.aspx.designer.cs"},{"SourceFile":"Party\\NewsPropagandaWorkEdit.aspx.cs"},{"SourceFile":"Party\\NewsPropagandaWorkEdit.aspx.designer.cs"},{"SourceFile":"Party\\OrganizingLife.aspx.cs"},{"SourceFile":"Party\\OrganizingLife.aspx.designer.cs"},{"SourceFile":"Party\\OrganizingLifeEdit.aspx.cs"},{"SourceFile":"Party\\OrganizingLifeEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyCommittee.aspx.cs"},{"SourceFile":"Party\\PartyCommittee.aspx.designer.cs"},{"SourceFile":"Party\\PartyCommitteeEdit.aspx.cs"},{"SourceFile":"Party\\PartyCommitteeEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyCongress.aspx.cs"},{"SourceFile":"Party\\PartyCongress.aspx.designer.cs"},{"SourceFile":"Party\\PartyCongressEdit.aspx.cs"},{"SourceFile":"Party\\PartyCongressEdit.aspx.designer.cs"},{"SourceFile":"Party\\Partyer.aspx.cs"},{"SourceFile":"Party\\Partyer.aspx.designer.cs"},{"SourceFile":"Party\\PartyerEdit.aspx.cs"},{"SourceFile":"Party\\PartyerEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyHistoryStudy.aspx.cs"},{"SourceFile":"Party\\PartyHistoryStudy.aspx.designer.cs"},{"SourceFile":"Party\\PartyHistoryStudyEdit.aspx.cs"},{"SourceFile":"Party\\PartyHistoryStudyEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyLecture.aspx.cs"},{"SourceFile":"Party\\PartyLecture.aspx.designer.cs"},{"SourceFile":"Party\\PartyLectureEdit.aspx.cs"},{"SourceFile":"Party\\PartyLectureEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyMeeting.aspx.cs"},{"SourceFile":"Party\\PartyMeeting.aspx.designer.cs"},{"SourceFile":"Party\\PartyMeetingEdit.aspx.cs"},{"SourceFile":"Party\\PartyMeetingEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyMoneyUse.aspx.cs"},{"SourceFile":"Party\\PartyMoneyUse.aspx.designer.cs"},{"SourceFile":"Party\\PartyMoneyUseEdit.aspx.cs"},{"SourceFile":"Party\\PartyMoneyUseEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyPioneerDemonstration.aspx.cs"},{"SourceFile":"Party\\PartyPioneerDemonstration.aspx.designer.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationEdit.aspx.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationEdit.aspx.designer.cs"},{"SourceFile":"Party\\ThemePartyDay.aspx.cs"},{"SourceFile":"Party\\ThemePartyDay.aspx.designer.cs"},{"SourceFile":"Party\\ThemePartyDayEdit.aspx.cs"},{"SourceFile":"Party\\ThemePartyDayEdit.aspx.designer.cs"},{"SourceFile":"Party\\TwoOneGoodSelection.aspx.cs"},{"SourceFile":"Party\\TwoOneGoodSelection.aspx.designer.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionEdit.aspx.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionEdit.aspx.designer.cs"},{"SourceFile":"Party\\WorkPlan.aspx.cs"},{"SourceFile":"Party\\WorkPlan.aspx.designer.cs"},{"SourceFile":"Party\\WorkPlanEdit.aspx.cs"},{"SourceFile":"Party\\WorkPlanEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonMeeting.aspx.cs"},{"SourceFile":"Personal\\PersonMeeting.aspx.designer.cs"},{"SourceFile":"Personal\\PersonMeetingEdit.aspx.cs"},{"SourceFile":"Personal\\PersonMeetingEdit.aspx.designer.cs"},{"SourceFile":"Personal\\FileSearch.aspx.cs"},{"SourceFile":"Personal\\FileSearch.aspx.designer.cs"},{"SourceFile":"Personal\\PersonCheckInfo.aspx.cs"},{"SourceFile":"Personal\\PersonCheckInfo.aspx.designer.cs"},{"SourceFile":"Personal\\PersonDuty.aspx.cs"},{"SourceFile":"Personal\\PersonDuty.aspx.designer.cs"},{"SourceFile":"Person\\PersonCheck.aspx.cs"},{"SourceFile":"Person\\PersonCheck.aspx.designer.cs"},{"SourceFile":"Person\\PersonChecking.aspx.cs"},{"SourceFile":"Person\\PersonChecking.aspx.designer.cs"},{"SourceFile":"Person\\PersonCheckingView.aspx.cs"},{"SourceFile":"Person\\PersonCheckingView.aspx.designer.cs"},{"SourceFile":"Person\\PersonDuty.aspx.cs"},{"SourceFile":"Person\\PersonDuty.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyAdd.aspx.cs"},{"SourceFile":"Person\\PersonDutyAdd.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyEdit.aspx.cs"},{"SourceFile":"Person\\PersonDutyEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyTemplate.aspx.cs"},{"SourceFile":"Person\\PersonDutyTemplate.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyView.aspx.cs"},{"SourceFile":"Person\\PersonDutyView.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlan.aspx.cs"},{"SourceFile":"Person\\PersonPlan.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanChart.aspx.cs"},{"SourceFile":"Person\\PersonPlanChart.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanEdit.aspx.cs"},{"SourceFile":"Person\\PersonPlanEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanIn.aspx.cs"},{"SourceFile":"Person\\PersonPlanIn.aspx.designer.cs"},{"SourceFile":"Person\\PersonSet.aspx.cs"},{"SourceFile":"Person\\PersonSet.aspx.designer.cs"},{"SourceFile":"Person\\PersonSetEdit.aspx.cs"},{"SourceFile":"Person\\PersonSetEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotal.aspx.cs"},{"SourceFile":"Personal\\PersonTotal.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotalEdit.aspx.cs"},{"SourceFile":"Personal\\PersonTotalEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotalView.aspx.cs"},{"SourceFile":"Personal\\PersonTotalView.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotal.aspx.cs"},{"SourceFile":"Person\\PersonTotal.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotalEdit.aspx.cs"},{"SourceFile":"Person\\PersonTotalEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotalView.aspx.cs"},{"SourceFile":"Person\\PersonTotalView.aspx.designer.cs"},{"SourceFile":"Person\\PersonTraining.aspx.cs"},{"SourceFile":"Person\\PersonTraining.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingAdd.aspx.cs"},{"SourceFile":"Person\\PersonTrainingAdd.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingEdit.aspx.cs"},{"SourceFile":"Person\\PersonTrainingEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingTaskItem.aspx.cs"},{"SourceFile":"Person\\PersonTrainingTaskItem.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingView.aspx.cs"},{"SourceFile":"Person\\PersonTrainingView.aspx.designer.cs"},{"SourceFile":"Person\\Shunt.aspx.cs"},{"SourceFile":"Person\\Shunt.aspx.designer.cs"},{"SourceFile":"Person\\ShuntDetailEdit.aspx.cs"},{"SourceFile":"Person\\ShuntDetailEdit.aspx.designer.cs"},{"SourceFile":"Person\\ShuntEdit.aspx.cs"},{"SourceFile":"Person\\ShuntEdit.aspx.designer.cs"},{"SourceFile":"Person\\ShuntList.aspx.cs"},{"SourceFile":"Person\\ShuntList.aspx.designer.cs"},{"SourceFile":"Person\\ShuntView.aspx.cs"},{"SourceFile":"Person\\ShuntView.aspx.designer.cs"},{"SourceFile":"Person\\PersonIn.aspx.cs"},{"SourceFile":"Person\\PersonIn.aspx.designer.cs"},{"SourceFile":"ProjectData\\Installation.aspx.cs"},{"SourceFile":"ProjectData\\Installation.aspx.designer.cs"},{"SourceFile":"ProjectData\\InstallationSave.aspx.cs"},{"SourceFile":"ProjectData\\InstallationSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItem.aspx.cs"},{"SourceFile":"ProjectData\\MainItem.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItemEdit.aspx.cs"},{"SourceFile":"ProjectData\\MainItemEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItemView.aspx.cs"},{"SourceFile":"ProjectData\\MainItemView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectInformation.aspx.cs"},{"SourceFile":"ProjectData\\ProjectInformation.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectList.aspx.cs"},{"SourceFile":"ProjectData\\ProjectList.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectMonitorList.aspx.cs"},{"SourceFile":"ProjectData\\ProjectMonitorList.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSet.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSet.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetMap.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetMap.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdown.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdown.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdownEdit.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdownEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdownView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdownView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSysSet.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnit.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnit.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitSelect.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitSelect.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUser.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUser.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserSelect.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserSelect.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ShowMainItem.aspx.cs"},{"SourceFile":"ProjectData\\ShowMainItem.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroup.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroup.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroupEdit.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroupEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroupView.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroupView.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWork.aspx.cs"},{"SourceFile":"ProjectData\\UnitWork.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWorkEdit.aspx.cs"},{"SourceFile":"ProjectData\\UnitWorkEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWorkView.aspx.cs"},{"SourceFile":"ProjectData\\UnitWorkView.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXFind.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXFind.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXInfoCount.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXInfoCount.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXList.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXList.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXListEdit.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXListEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLog.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLog.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlan.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlan.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReport.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReport.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\Picture.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\Picture.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManager.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManager.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandover.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandover.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverView.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMap.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMap.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapEdit.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapView.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapView.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageData.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageData.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataSave.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataSave.aspx.designer.cs"},{"SourceFile":"ReportPrint\\PrintDesigner.aspx.cs"},{"SourceFile":"ReportPrint\\PrintDesigner.aspx.designer.cs"},{"SourceFile":"Personal\\RunLog.aspx.cs"},{"SourceFile":"Personal\\RunLog.aspx.designer.cs"},{"SourceFile":"Personal\\PersonalSet.aspx.cs"},{"SourceFile":"Personal\\PersonalSet.aspx.designer.cs"},{"SourceFile":"Personal\\PersonalInfo.aspx.cs"},{"SourceFile":"Personal\\PersonalInfo.aspx.designer.cs"},{"SourceFile":"Captcha\\captcha.ashx.cs"},{"SourceFile":"Captcha\\CaptchaImage.cs"},{"SourceFile":"common\\loading.aspx.cs"},{"SourceFile":"common\\loading.aspx.designer.cs"},{"SourceFile":"common\\ShowUpFile.aspx.cs"},{"SourceFile":"common\\ShowUpFile.aspx.designer.cs"},{"SourceFile":"common\\main0.aspx.cs"},{"SourceFile":"common\\main0.aspx.designer.cs"},{"SourceFile":"common\\source.aspx.cs"},{"SourceFile":"common\\source.aspx.designer.cs"},{"SourceFile":"common\\source_file.aspx.cs"},{"SourceFile":"common\\source_file.aspx.designer.cs"},{"SourceFile":"config\\ajax.aspx.cs"},{"SourceFile":"config\\ajax.aspx.designer.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.designer.cs"},{"SourceFile":"config\\icons.aspx.cs"},{"SourceFile":"config\\icons.aspx.designer.cs"},{"SourceFile":"config\\icons_font.aspx.cs"},{"SourceFile":"config\\icons_font.aspx.designer.cs"},{"SourceFile":"config\\install_toolbox.aspx.cs"},{"SourceFile":"config\\install_toolbox.aspx.designer.cs"},{"SourceFile":"config\\modify_webconfig.aspx.cs"},{"SourceFile":"config\\modify_webconfig.aspx.designer.cs"},{"SourceFile":"Controls\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.designer.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.designer.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"LogOff.aspx.cs"},{"SourceFile":"LogOff.aspx.designer.cs"},{"SourceFile":"common\\PageBase.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"ReportPrint\\CalculateChinaEx.aspx.cs"},{"SourceFile":"ReportPrint\\CalculateChinaEx.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ExPrintSet.aspx.cs"},{"SourceFile":"ReportPrint\\ExPrintSet.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ExReportPrint.aspx.cs"},{"SourceFile":"ReportPrint\\ExReportPrint.aspx.designer.cs"},{"SourceFile":"ReportPrint\\PrintDesigner2.aspx.cs"},{"SourceFile":"ReportPrint\\PrintDesigner2.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ReadExReportFile.aspx.cs"},{"SourceFile":"ReportPrint\\ReadExReportFile.aspx.designer.cs"},{"SourceFile":"ReportPrint\\SaveTabFile.aspx.cs"},{"SourceFile":"ReportPrint\\SaveTabFile.aspx.designer.cs"},{"SourceFile":"res\\umeditor\\net\\imageUp.ashx.cs"},{"SourceFile":"res\\umeditor\\net\\Uploader.cs"},{"SourceFile":"ServiceProxy.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefing.aspx.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefing.aspx.designer.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefingEdit.aspx.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefingEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\CustomQuery.aspx.cs"},{"SourceFile":"SysManage\\CustomQuery.aspx.designer.cs"},{"SourceFile":"SysManage\\Depart.aspx.cs"},{"SourceFile":"SysManage\\Depart.aspx.designer.cs"},{"SourceFile":"SysManage\\HttpLog.aspx.cs"},{"SourceFile":"SysManage\\HttpLog.aspx.designer.cs"},{"SourceFile":"SysManage\\MenuFlowOperateEdit.aspx.cs"},{"SourceFile":"SysManage\\MenuFlowOperateEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\ParticipateProject.aspx.cs"},{"SourceFile":"SysManage\\ParticipateProject.aspx.designer.cs"},{"SourceFile":"SysManage\\ProjectToDo.aspx.cs"},{"SourceFile":"SysManage\\ProjectToDo.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleItem.aspx.cs"},{"SourceFile":"SysManage\\RoleItem.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleItemEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleItemEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleList.aspx.cs"},{"SourceFile":"SysManage\\RoleList.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RolePower.aspx.cs"},{"SourceFile":"SysManage\\RolePower.aspx.designer.cs"},{"SourceFile":"SysManage\\SysConstSet.aspx.cs"},{"SourceFile":"SysManage\\SysConstSet.aspx.designer.cs"},{"SourceFile":"SysManage\\Unit.aspx.cs"},{"SourceFile":"SysManage\\Unit.aspx.designer.cs"},{"SourceFile":"SysManage\\UnitEdit.aspx.cs"},{"SourceFile":"SysManage\\UnitEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UnitIn.aspx.cs"},{"SourceFile":"SysManage\\UnitIn.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UserIn.aspx.cs"},{"SourceFile":"SysManage\\UserIn.aspx.designer.cs"},{"SourceFile":"SysManage\\UserList.aspx.cs"},{"SourceFile":"SysManage\\UserList.aspx.designer.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlan.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlan.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanEdit.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanEdit.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanView.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanView.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestRanking.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestRanking.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestRecord.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestRecord.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\IFLogList.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\IFLogList.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceEdit.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceEdit.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceSet.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceSet.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTask.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTask.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTaskEdit.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTaskEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRun.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRun.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRun.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRunEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandle.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandleEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandleEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectInstrument.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectInstrument.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectProperty.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectProperty.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTechnology.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTechnology.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SetWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SetWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementation.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementation.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementationList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementationList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubSysWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubSysWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SysPipingDeviceImport.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SysPipingDeviceImport.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUpload.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUpload.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUploadList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUploadList.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuy.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuy.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTrace.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTrace.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazard.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazard.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicense.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicense.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasure.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasure.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMap.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMap.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudy.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudy.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverData.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverData.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataTypeEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataTypeEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\Duty.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\Duty.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DutyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DutyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemAdd.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemAdd.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemSelect.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemSelect.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverProgress.aspx.cs"},{"SourceFile":"TestRun\\DriverProgress.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverProgressEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverProgressEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunComplete.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunComplete.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunCompleteEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunCompleteEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRun.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRun.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContact.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContact.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverScheme.aspx.cs"},{"SourceFile":"TestRun\\DriverScheme.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSchemeEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSchemeEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSub.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSub.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContact.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContact.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorIn.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorIn.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorList.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorList.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubSetContactorEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubSetContactorEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\FeedingTestRun.aspx.cs"},{"SourceFile":"TestRun\\FeedingTestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\FeedingTestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\FeedingTestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlan.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContact.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContact.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContent.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContent.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContract.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContract.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlan.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecords.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecords.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySamp.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySamp.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecord.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecord.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReport.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecord.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecord.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReport.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRun.aspx.cs"},{"SourceFile":"TestRun\\TestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRun.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRun.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRunEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SelectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SelectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SetWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SetWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementation.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementation.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementationList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementationList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTermEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubSysWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubSysWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUpload.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUpload.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUploadList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUploadList.aspx.designer.cs"},{"SourceFile":"Transfer\\Chart\\Instrumentation.aspx.cs"},{"SourceFile":"Transfer\\Chart\\Instrumentation.aspx.designer.cs"},{"SourceFile":"Transfer\\Chart\\PunchlistFrom.aspx.cs"},{"SourceFile":"Transfer\\Chart\\PunchlistFrom.aspx.designer.cs"},{"SourceFile":"Transfer\\Chart\\TransferChart.aspx.cs"},{"SourceFile":"Transfer\\Chart\\TransferChart.aspx.designer.cs"},{"SourceFile":"Transfer\\CivilStructure.aspx.cs"},{"SourceFile":"Transfer\\CivilStructure.aspx.designer.cs"},{"SourceFile":"Transfer\\CivilStructureDataIn.aspx.cs"},{"SourceFile":"Transfer\\CivilStructureDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Electrical.aspx.cs"},{"SourceFile":"Transfer\\Electrical.aspx.designer.cs"},{"SourceFile":"Transfer\\ElectricalDataIn.aspx.cs"},{"SourceFile":"Transfer\\ElectricalDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Firefighting.aspx.cs"},{"SourceFile":"Transfer\\Firefighting.aspx.designer.cs"},{"SourceFile":"Transfer\\FirefightingDataIn.aspx.cs"},{"SourceFile":"Transfer\\FirefightingDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\HVAC.aspx.cs"},{"SourceFile":"Transfer\\HVAC.aspx.designer.cs"},{"SourceFile":"Transfer\\HVACDataIn.aspx.cs"},{"SourceFile":"Transfer\\HVACDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Instrumentation.aspx.cs"},{"SourceFile":"Transfer\\Instrumentation.aspx.designer.cs"},{"SourceFile":"Transfer\\InstrumentationDataIn.aspx.cs"},{"SourceFile":"Transfer\\InstrumentationDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Piping.aspx.cs"},{"SourceFile":"Transfer\\Piping.aspx.designer.cs"},{"SourceFile":"Transfer\\PipingDataIn.aspx.cs"},{"SourceFile":"Transfer\\PipingDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Plumbing.aspx.cs"},{"SourceFile":"Transfer\\Plumbing.aspx.designer.cs"},{"SourceFile":"Transfer\\PlumbingDataIn.aspx.cs"},{"SourceFile":"Transfer\\PlumbingDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\ProjectSetup.aspx.cs"},{"SourceFile":"Transfer\\ProjectSetup.aspx.designer.cs"},{"SourceFile":"Transfer\\ProjectSetupDataIn.aspx.cs"},{"SourceFile":"Transfer\\ProjectSetupDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\PunchlistFrom.aspx.cs"},{"SourceFile":"Transfer\\PunchlistFrom.aspx.designer.cs"},{"SourceFile":"Transfer\\PunchlistFromDataIn.aspx.cs"},{"SourceFile":"Transfer\\PunchlistFromDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\RotatingEquipment.aspx.cs"},{"SourceFile":"Transfer\\RotatingEquipment.aspx.designer.cs"},{"SourceFile":"Transfer\\RotatingEquipmentDataIn.aspx.cs"},{"SourceFile":"Transfer\\RotatingEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\StaticEquipment.aspx.cs"},{"SourceFile":"Transfer\\StaticEquipment.aspx.designer.cs"},{"SourceFile":"Transfer\\StaticEquipmentDataIn.aspx.cs"},{"SourceFile":"Transfer\\StaticEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Telecom.aspx.cs"},{"SourceFile":"Transfer\\Telecom.aspx.designer.cs"},{"SourceFile":"Transfer\\TelecomDataIn.aspx.cs"},{"SourceFile":"Transfer\\TelecomDataIn.aspx.designer.cs"},{"SourceFile":"Video\\Video.aspx.cs"},{"SourceFile":"Video\\Video.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\CheckStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\CheckStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\MeetStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\MeetStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\RectifyNoticesStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\RectifyNoticesStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMS.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMS.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMSEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMSEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGL.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGL.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMS.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMS.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMSEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMSEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGL.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGL.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_Data.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_Data.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordList.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordList.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListEdit.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListView.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyList.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyList.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListEdit.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListView.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\ServerEmergencySupply.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\ServerEmergencySupply.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlan.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlan.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoring.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoring.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmental.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmental.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalView.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManage.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManage.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganize.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganize.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitution.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitution.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitutionEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitutionEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetA.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetA.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemView.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemView.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetB.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetB.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\Picture.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\Picture.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureView.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseHiddenDanger.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseHiddenDanger.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResource.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResource.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseSafeAccident.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseSafeAccident.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseWorkTimeCost.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseWorkTimeCost.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportAdd.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportAdd.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportAdd.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportAdd.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQuality.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQuality.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\ReportAuditSee.aspx.cs"},{"SourceFile":"ZHGL\\Information\\ReportAuditSee.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\ReportSubmit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\ReportSubmit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefing.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefing.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummary.aspx.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummary.aspx.designer.cs"},{"SourceFile":"ZHGL\\ManagementReport\\ReportRemind.aspx.cs"},{"SourceFile":"ZHGL\\ManagementReport\\ReportRemind.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeeting.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeeting.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingView.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeeting.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeeting.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingView.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetection.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetection.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccident.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccident.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExamination.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExamination.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Performance\\PerformanceAllData.aspx.cs"},{"SourceFile":"ZHGL\\Performance\\PerformanceAllData.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonEdit.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonIn.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonView.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonEdit.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonIn.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonView.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\ProjectPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\ProjectPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysis.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysis.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentData.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentData.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReport.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportView.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatistics.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsView.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsView.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\OnPost.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\OnPost.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePost.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePost.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostIn.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroRecord.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroRecord.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSet.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSet.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\BasicData.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\BasicData.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReportView.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoTemplate.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoTemplate.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckNotice.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckNotice.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectify.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectify.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowFileUpload.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowFileUpload.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowRectifyItem.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowRectifyItem.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectify.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectify.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReport.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportEdit.aspx.designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Apache.NMS.ActiveMQ.1.7.2\\lib\\net40\\Apache.NMS.ActiveMQ.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\Apache.NMS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\FakesAssemblies\\Apache.NMS.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\AxInterop.SYNCARDOCXLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Portable.BouncyCastle.1.8.9\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\SharpZipLib.1.3.2\\lib\\net45\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Interop.WIA.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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\Microsoft.QualityTools.Testing.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Newtonsoft.Json.12.0.2\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\RestSharp.106.15.0\\lib\\net452\\RestSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"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 (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.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.EnterpriseServices.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.IO.Compression.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.IO.Compression.FileSystem.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.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.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.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.ApplicationServices.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.Web.DynamicData.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.Entity.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.Extensions.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.Services.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.Windows.Forms.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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\FakesAssemblies\\ThoughtWorks.QRCode.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\FineUIPro.Web.dll","OutputItemRelativePath":"FineUIPro.Web.dll"},{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\FineUIPro.Web.pdb","OutputItemRelativePath":"FineUIPro.Web.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web","ProjectFileName":"FineUIPro.Web.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AttachFile\\fileupload.ashx.cs"},{"SourceFile":"AttachFile\\Look.aspx.cs"},{"SourceFile":"AttachFile\\Look.aspx.designer.cs"},{"SourceFile":"AttachFile\\OnlineEditing.aspx.cs"},{"SourceFile":"AttachFile\\OnlineEditing.aspx.designer.cs"},{"SourceFile":"AttachFile\\player.aspx.cs"},{"SourceFile":"AttachFile\\player.aspx.designer.cs"},{"SourceFile":"AttachFile\\uploader.aspx.cs"},{"SourceFile":"AttachFile\\uploader.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.designer.cs"},{"SourceFile":"BaseInfo\\AccidentType.aspx.cs"},{"SourceFile":"BaseInfo\\AccidentType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\BaseFactory.aspx.cs"},{"SourceFile":"BaseInfo\\BaseFactory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\BaseFactoryEdit.aspx.cs"},{"SourceFile":"BaseInfo\\BaseFactoryEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Certificate.aspx.cs"},{"SourceFile":"BaseInfo\\Certificate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessional.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessional.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessionalEdit.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessionalEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessionalView.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessionalView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CostType.aspx.cs"},{"SourceFile":"BaseInfo\\CostType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessional.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessional.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalEdit.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalView.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DocType.aspx.cs"},{"SourceFile":"BaseInfo\\DocType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\EmergencyType.aspx.cs"},{"SourceFile":"BaseInfo\\EmergencyType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\GoodsCategory.aspx.cs"},{"SourceFile":"BaseInfo\\GoodsCategory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypes.aspx.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypes.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypesEdit.aspx.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypesEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListType.aspx.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsType.aspx.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\LicenseType.aspx.cs"},{"SourceFile":"BaseInfo\\LicenseType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ManageRuleType.aspx.cs"},{"SourceFile":"BaseInfo\\ManageRuleType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PictureType.aspx.cs"},{"SourceFile":"BaseInfo\\PictureType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Position.aspx.cs"},{"SourceFile":"BaseInfo\\Position.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PostTitle.aspx.cs"},{"SourceFile":"BaseInfo\\PostTitle.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PracticeCertificate.aspx.cs"},{"SourceFile":"BaseInfo\\PracticeCertificate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ProjectType.aspx.cs"},{"SourceFile":"BaseInfo\\ProjectType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionType.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeEdit.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeView.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QuestionType.aspx.cs"},{"SourceFile":"BaseInfo\\QuestionType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RectificationMeasure.aspx.cs"},{"SourceFile":"BaseInfo\\RectificationMeasure.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureEdit.aspx.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RiskLevel.aspx.cs"},{"SourceFile":"BaseInfo\\RiskLevel.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RiskLevelEdit.aspx.cs"},{"SourceFile":"BaseInfo\\RiskLevelEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsType.aspx.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SafetyMeasures.aspx.cs"},{"SourceFile":"BaseInfo\\SafetyMeasures.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresEdit.aspx.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteType.aspx.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SpecialEquipment.aspx.cs"},{"SourceFile":"BaseInfo\\SpecialEquipment.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeType.aspx.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainLevel.aspx.cs"},{"SourceFile":"BaseInfo\\TrainLevel.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainType.aspx.cs"},{"SourceFile":"BaseInfo\\TrainType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainTypeEdit.aspx.cs"},{"SourceFile":"BaseInfo\\TrainTypeEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TransferMajor.aspx.cs"},{"SourceFile":"BaseInfo\\TransferMajor.aspx.designer.cs"},{"SourceFile":"BaseInfo\\UnitType.aspx.cs"},{"SourceFile":"BaseInfo\\UnitType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\WorkPost.aspx.cs"},{"SourceFile":"BaseInfo\\WorkPost.aspx.designer.cs"},{"SourceFile":"BaseInfo\\WorkStage.aspx.cs"},{"SourceFile":"BaseInfo\\WorkStage.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoExam.aspx.cs"},{"SourceFile":"BoSheng\\BoExam.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoPersonTrainRecord.aspx.cs"},{"SourceFile":"BoSheng\\BoPersonTrainRecord.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoTrainPerson.aspx.cs"},{"SourceFile":"BoSheng\\BoTrainPerson.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoTrain.aspx.cs"},{"SourceFile":"BoSheng\\BoTrain.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoPerson.aspx.cs"},{"SourceFile":"BoSheng\\BoPerson.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoUnit.aspx.cs"},{"SourceFile":"BoSheng\\BoUnit.aspx.designer.cs"},{"SourceFile":"CLGL\\ArrivalDetailList.aspx.cs"},{"SourceFile":"CLGL\\ArrivalDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\CheckOutDetailList.aspx.cs"},{"SourceFile":"CLGL\\CheckOutDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractList.aspx.cs"},{"SourceFile":"CLGL\\ContractList.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractListSum.aspx.cs"},{"SourceFile":"CLGL\\ContractListSum.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractQuantitySheet.aspx.cs"},{"SourceFile":"CLGL\\ContractQuantitySheet.aspx.designer.cs"},{"SourceFile":"CLGL\\GoodsShelves.aspx.cs"},{"SourceFile":"CLGL\\GoodsShelves.aspx.designer.cs"},{"SourceFile":"CLGL\\Material.aspx.cs"},{"SourceFile":"CLGL\\Material.aspx.designer.cs"},{"SourceFile":"CLGL\\MaterialRecord.aspx.cs"},{"SourceFile":"CLGL\\MaterialRecord.aspx.designer.cs"},{"SourceFile":"CLGL\\MTODetail.aspx.cs"},{"SourceFile":"CLGL\\MTODetail.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialCodeList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialCodeList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialSumList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialSumList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineSupplierList.aspx.cs"},{"SourceFile":"CLGL\\PipelineSupplierList.aspx.designer.cs"},{"SourceFile":"CLGL\\PurchaseRequisition.aspx.cs"},{"SourceFile":"CLGL\\PurchaseRequisition.aspx.designer.cs"},{"SourceFile":"CLGL\\RequestDetailList.aspx.cs"},{"SourceFile":"CLGL\\RequestDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\SubUnit.aspx.cs"},{"SourceFile":"CLGL\\SubUnit.aspx.designer.cs"},{"SourceFile":"CLGL\\Supplier.aspx.cs"},{"SourceFile":"CLGL\\Supplier.aspx.designer.cs"},{"SourceFile":"common\\main2.aspx.cs"},{"SourceFile":"common\\main2.aspx.designer.cs"},{"SourceFile":"common\\mainI.aspx.cs"},{"SourceFile":"common\\mainI.aspx.designer.cs"},{"SourceFile":"common\\mainIV.aspx.cs"},{"SourceFile":"common\\mainIV.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_DigitalSite.aspx.cs"},{"SourceFile":"common\\mainMenu_DigitalSite.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HJGL.aspx.cs"},{"SourceFile":"common\\mainMenu_HJGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HJGL2.aspx.cs"},{"SourceFile":"common\\mainMenu_HJGL2.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HSSE2.aspx.cs"},{"SourceFile":"common\\mainMenu_HSSE2.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_Party.aspx.cs"},{"SourceFile":"common\\mainMenu_Party.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PDigData.aspx.cs"},{"SourceFile":"common\\mainMenu_PDigData.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PZHGL.aspx.cs"},{"SourceFile":"common\\mainMenu_PZHGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_SYHSE.aspx.cs"},{"SourceFile":"common\\mainMenu_SYHSE.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_SYHSEN.aspx.cs"},{"SourceFile":"common\\mainMenu_SYHSEN.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_TestRun.aspx.cs"},{"SourceFile":"common\\mainMenu_TestRun.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PHTGL.aspx.cs"},{"SourceFile":"common\\mainMenu_PHTGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_JDGL.aspx.cs"},{"SourceFile":"common\\mainMenu_JDGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_CQMS.aspx.cs"},{"SourceFile":"common\\mainMenu_CQMS.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HSSE.aspx.cs"},{"SourceFile":"common\\mainMenu_HSSE.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_Transfer.aspx.cs"},{"SourceFile":"common\\mainMenu_Transfer.aspx.designer.cs"},{"SourceFile":"common\\mainProject0.aspx.cs"},{"SourceFile":"common\\mainProject0.aspx.designer.cs"},{"SourceFile":"common\\mainIII.aspx.cs"},{"SourceFile":"common\\mainIII.aspx.designer.cs"},{"SourceFile":"common\\mainProject1.aspx.cs"},{"SourceFile":"common\\mainProject1.aspx.designer.cs"},{"SourceFile":"common\\main.aspx.cs"},{"SourceFile":"common\\main.aspx.designer.cs"},{"SourceFile":"common\\mainProject.aspx.cs"},{"SourceFile":"common\\mainProject.aspx.designer.cs"},{"SourceFile":"common\\mainProject2.aspx.cs"},{"SourceFile":"common\\mainProject2.aspx.designer.cs"},{"SourceFile":"common\\main_new.aspx.cs"},{"SourceFile":"common\\main_new.aspx.designer.cs"},{"SourceFile":"common\\main_new0.aspx.cs"},{"SourceFile":"common\\main_new0.aspx.designer.cs"},{"SourceFile":"common\\main_new1.aspx.cs"},{"SourceFile":"common\\main_new1.aspx.designer.cs"},{"SourceFile":"common\\themes.aspx.cs"},{"SourceFile":"common\\themes.aspx.designer.cs"},{"SourceFile":"Controls\\DataImportControl.ascx.cs"},{"SourceFile":"Controls\\DataImportControl.ascx.designer.cs"},{"SourceFile":"Controls\\FlowOperateControl.ascx.cs"},{"SourceFile":"Controls\\FlowOperateControl.ascx.designer.cs"},{"SourceFile":"Controls\\QRCodePrint.aspx.cs"},{"SourceFile":"Controls\\QRCodePrint.aspx.designer.cs"},{"SourceFile":"Controls\\SeeQRImage.aspx.cs"},{"SourceFile":"Controls\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"Controls\\ShowQRImage.aspx.cs"},{"SourceFile":"Controls\\ShowQRImage.aspx.designer.cs"},{"SourceFile":"Controls\\UnitProjectTControl.ascx.cs"},{"SourceFile":"Controls\\UnitProjectTControl.ascx.designer.cs"},{"SourceFile":"CQMS\\BaseInfo\\ProjectSysSet.aspx.cs"},{"SourceFile":"CQMS\\BaseInfo\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipment.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckList.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ChecklistEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\ChecklistEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckListFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckListFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckListView.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckListView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckMonth.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckMonth.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ConstructSolutionFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\ConstructSolutionFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\Design.aspx.cs"},{"SourceFile":"CQMS\\Check\\Design.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DesignFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\DesignFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DesignView.aspx.cs"},{"SourceFile":"CQMS\\Check\\DesignView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\Draw.aspx.cs"},{"SourceFile":"CQMS\\Check\\Draw.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DrawEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\DrawEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DrawView.aspx.cs"},{"SourceFile":"CQMS\\Check\\DrawView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipment.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipmentTwo.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipmentTwo.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckMonth.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckMonth.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditDesign.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditDesign.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheckTwo.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheckTwo.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditSportDataCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditSportDataCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditSpotCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditSpotCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditTechnicalContactList.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditTechnicalContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\FileCabinet.aspx.cs"},{"SourceFile":"CQMS\\Check\\FileCabinet.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckStatistics.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ShowWBS.aspx.cs"},{"SourceFile":"CQMS\\Check\\ShowWBS.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckStatistics.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactList.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactView.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\WorkContactFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\WorkContactFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosure.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosure.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosureDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosureDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosureEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\ConTechnologyDisclosureEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistribution.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistribution.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceiving.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceiving.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDoc.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDoc.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDocEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrder.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrder.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetails.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetails.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawings.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawings.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApproval.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApproval.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipment.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachine.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachine.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPerson.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPerson.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlan.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlan.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlanDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlanDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlanEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionTestPlanEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApproval.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApproval.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagement.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonItem.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonItem.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipe.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipe.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccident.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccident.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawings.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawings.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawingsDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawingsDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawingsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\ReviewDrawingsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagement.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipment.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecords.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecords.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecordsDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecordsDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecordsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\TrainingRecordsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardList.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardList.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProject.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProject.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBase.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBase.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseProject.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseProject.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit2.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit2.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotList.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotList.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotListEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\WBS2FileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\WBS2FileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\WBSFileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\WBSFileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheck.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointList.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointList.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointListEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ForeignWBSOut.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ForeignWBSOut.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPList.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPList.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProject.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProject.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ShoBreakdownProject.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ShoBreakdownProject.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportNewEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportNewEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportNewEdit1.aspx.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportNewEdit1.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportNewEdit2.aspx.cs"},{"SourceFile":"CQMS\\ManageReportNew\\MonthReportNewEdit2.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReportNew\\WeekReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReportNew\\WeekReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReportNew\\WeekReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReportNew\\WeekReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\CheckStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\CheckStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\DesignChangeStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\DesignChangeStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\HJGLStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\HJGLStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportPrint.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportPrint.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\NCRStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\NCRStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQuality.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQuality.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQualityEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQualityEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportPrint.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportPrint.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\MonthTargetEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\MonthTargetEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\OutDayEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\OutDayEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\Performance.aspx.cs"},{"SourceFile":"CQMS\\Performance\\Performance.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceAudit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceAudit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceConfig.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceConfig.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceSubmit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceSubmit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\ScoreEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\ScoreEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\TaskContentEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\TaskContentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\WorkPlanEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\WorkPlanEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\CheckManStatistics.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\CheckManStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManage.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManage.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagement.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementStatistics.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNotice.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNotice.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNoticeEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNoticeEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest_New.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest_New.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest_NewEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest_NewEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\ShowUnitWork.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\ShowUnitWork.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagement.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolution.aspx.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolution.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolutionView.aspx.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolutionView.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\EditConstructSolution.aspx.cs"},{"SourceFile":"CQMS\\Solution\\EditConstructSolution.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\AddWorkContactFinalFile.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\AddWorkContactFinalFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\ContactList.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\ContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\EditWorkContact.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\EditWorkContact.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactFinalFileView.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactFinalFileView.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactView.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactView.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycle.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycle.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSearch.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSearch.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleShow.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleShow.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdown.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdown.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdownProject.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdownProject.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditDivision.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditDivision.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditDivisionProject.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditDivisionProject.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessional.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessional.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPointEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPointEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlItemInitSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlItemInitSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPointFile.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPointFile.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet1.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet1.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2In.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2In.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatisc.aspx.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatisc.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatiscItem.aspx.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatiscItem.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\NCRStatisc.aspx.cs"},{"SourceFile":"DataShowLocal\\NCRStatisc.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\NCRStatiscItem.aspx.cs"},{"SourceFile":"DataShowLocal\\NCRStatiscItem.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\QualityInstruments.aspx.cs"},{"SourceFile":"DataShowLocal\\QualityInstruments.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\QualityInstrumentsItem.aspx.cs"},{"SourceFile":"DataShowLocal\\QualityInstrumentsItem.aspx.designer.cs"},{"SourceFile":"DataShow\\Accident.aspx.cs"},{"SourceFile":"DataShow\\Accident.aspx.designer.cs"},{"SourceFile":"DataShow\\Check.aspx.cs"},{"SourceFile":"DataShow\\Check.aspx.designer.cs"},{"SourceFile":"DataShow\\CompanyPerson.aspx.cs"},{"SourceFile":"DataShow\\CompanyPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\ConstructionEquipment.aspx.cs"},{"SourceFile":"DataShow\\ConstructionEquipment.aspx.designer.cs"},{"SourceFile":"DataShow\\EduTrain.aspx.cs"},{"SourceFile":"DataShow\\EduTrain.aspx.designer.cs"},{"SourceFile":"DataShow\\Emergency.aspx.cs"},{"SourceFile":"DataShow\\Emergency.aspx.designer.cs"},{"SourceFile":"DataShow\\Environmental.aspx.cs"},{"SourceFile":"DataShow\\Environmental.aspx.designer.cs"},{"SourceFile":"DataShow\\GJSX.aspx.cs"},{"SourceFile":"DataShow\\GJSX.aspx.designer.cs"},{"SourceFile":"DataShow\\GJSXItem.aspx.cs"},{"SourceFile":"DataShow\\GJSXItem.aspx.designer.cs"},{"SourceFile":"DataShow\\HiddenRectification.aspx.cs"},{"SourceFile":"DataShow\\HiddenRectification.aspx.designer.cs"},{"SourceFile":"DataShow\\HiddenRectificationItem.aspx.cs"},{"SourceFile":"DataShow\\HiddenRectificationItem.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLDefect.aspx.cs"},{"SourceFile":"DataShow\\HJGLDefect.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWelder.aspx.cs"},{"SourceFile":"DataShow\\HJGLWelder.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWelding.aspx.cs"},{"SourceFile":"DataShow\\HJGLWelding.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWeldingItem.aspx.cs"},{"SourceFile":"DataShow\\HJGLWeldingItem.aspx.designer.cs"},{"SourceFile":"DataShow\\InspectionManagement.aspx.cs"},{"SourceFile":"DataShow\\InspectionManagement.aspx.designer.cs"},{"SourceFile":"DataShow\\InspectionManagementItem.aspx.cs"},{"SourceFile":"DataShow\\InspectionManagementItem.aspx.designer.cs"},{"SourceFile":"DataShow\\LargeEngineering.aspx.cs"},{"SourceFile":"DataShow\\LargeEngineering.aspx.designer.cs"},{"SourceFile":"DataShow\\LargeEngineeringItem.aspx.cs"},{"SourceFile":"DataShow\\LargeEngineeringItem.aspx.designer.cs"},{"SourceFile":"DataShow\\License.aspx.cs"},{"SourceFile":"DataShow\\License.aspx.designer.cs"},{"SourceFile":"DataShow\\Meeting.aspx.cs"},{"SourceFile":"DataShow\\Meeting.aspx.designer.cs"},{"SourceFile":"DataShow\\Person1.aspx.cs"},{"SourceFile":"DataShow\\Person1.aspx.designer.cs"},{"SourceFile":"DataShow\\Person2.aspx.cs"},{"SourceFile":"DataShow\\Person2.aspx.designer.cs"},{"SourceFile":"DataShow\\Person3.aspx.cs"},{"SourceFile":"DataShow\\Person3.aspx.designer.cs"},{"SourceFile":"DataShow\\Project.aspx.cs"},{"SourceFile":"DataShow\\Project.aspx.designer.cs"},{"SourceFile":"DataShow\\ProjectDivision.aspx.cs"},{"SourceFile":"DataShow\\ProjectDivision.aspx.designer.cs"},{"SourceFile":"DataShow\\ProjectPerson.aspx.cs"},{"SourceFile":"DataShow\\ProjectPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityAcceptance.aspx.cs"},{"SourceFile":"DataShow\\QualityAcceptance.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityControlPoint.aspx.cs"},{"SourceFile":"DataShow\\QualityControlPoint.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityInstruments.aspx.cs"},{"SourceFile":"DataShow\\QualityInstruments.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityInstrumentsItem.aspx.cs"},{"SourceFile":"DataShow\\QualityInstrumentsItem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityPerson.aspx.cs"},{"SourceFile":"DataShow\\QualityPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityProblem.aspx.cs"},{"SourceFile":"DataShow\\QualityProblem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityProblemItem.aspx.cs"},{"SourceFile":"DataShow\\QualityProblemItem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTraining.aspx.cs"},{"SourceFile":"DataShow\\QualityTraining.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTrainingItem1.aspx.cs"},{"SourceFile":"DataShow\\QualityTrainingItem1.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTrainingItem2.aspx.cs"},{"SourceFile":"DataShow\\QualityTrainingItem2.aspx.designer.cs"},{"SourceFile":"DataShow\\SafePerson.aspx.cs"},{"SourceFile":"DataShow\\SafePerson.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityCost.aspx.cs"},{"SourceFile":"DataShow\\SecurityCost.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityRisk.aspx.cs"},{"SourceFile":"DataShow\\SecurityRisk.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityRiskItem.aspx.cs"},{"SourceFile":"DataShow\\SecurityRiskItem.aspx.designer.cs"},{"SourceFile":"DataShow\\WeldOneOK.aspx.cs"},{"SourceFile":"DataShow\\WeldOneOK.aspx.designer.cs"},{"SourceFile":"DataShow\\WeldOneOKItem.aspx.cs"},{"SourceFile":"DataShow\\WeldOneOKItem.aspx.designer.cs"},{"SourceFile":"DataShow\\WorkingHours.aspx.cs"},{"SourceFile":"DataShow\\WorkingHours.aspx.designer.cs"},{"SourceFile":"DataShow\\WorkingHoursItem.aspx.cs"},{"SourceFile":"DataShow\\WorkingHoursItem.aspx.designer.cs"},{"SourceFile":"DigData\\HSEDataCollect.aspx.cs"},{"SourceFile":"DigData\\HSEDataCollect.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManage.aspx.cs"},{"SourceFile":"DocManage\\DocManage.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManageEdit.aspx.cs"},{"SourceFile":"DocManage\\DocManageEdit.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManageView.aspx.cs"},{"SourceFile":"DocManage\\DocManageView.aspx.designer.cs"},{"SourceFile":"Door\\AbsenceDuty.aspx.cs"},{"SourceFile":"Door\\AbsenceDuty.aspx.designer.cs"},{"SourceFile":"Door\\InOutManHoursItem.aspx.cs"},{"SourceFile":"Door\\InOutManHoursItem.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecordChart.aspx.cs"},{"SourceFile":"Door\\InOutRecordChart.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecordItem.aspx.cs"},{"SourceFile":"Door\\InOutRecordItem.aspx.designer.cs"},{"SourceFile":"Door\\InOutManHours.aspx.cs"},{"SourceFile":"Door\\InOutManHours.aspx.designer.cs"},{"SourceFile":"Door\\InOutList.aspx.cs"},{"SourceFile":"Door\\InOutList.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecord.aspx.cs"},{"SourceFile":"Door\\InOutRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Components.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Components.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Consumables.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Consumables.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Control.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Control.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Defect.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Defect.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Detection.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Detection.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Groove.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Groove.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Material.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Material.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Medium.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Medium.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClass.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClass.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Pressure.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Pressure.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClass.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClass.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethod.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethod.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Testing.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Testing.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMedium.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMedium.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Weld.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Weld.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocation.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocation.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethod.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethod.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldView.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\HJGLData.aspx.cs"},{"SourceFile":"HJGL\\FL\\HJGLData.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\HJGLDataEdit.aspx.cs"},{"SourceFile":"HJGL\\FL\\HJGLDataEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\NdtList.aspx.cs"},{"SourceFile":"HJGL\\FL\\NdtList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\OneOKRate.aspx.cs"},{"SourceFile":"HJGL\\FL\\OneOKRate.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\PressurePackageList.aspx.cs"},{"SourceFile":"HJGL\\FL\\PressurePackageList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\Quantity.aspx.cs"},{"SourceFile":"HJGL\\FL\\Quantity.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\TailItemList.aspx.cs"},{"SourceFile":"HJGL\\FL\\TailItemList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\TotalQuantity.aspx.cs"},{"SourceFile":"HJGL\\FL\\TotalQuantity.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardFeedback.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardFeedback.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReport.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportItem.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportItem.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessFeedback.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessFeedback.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReport.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportItem.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportItem.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAudit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumComplete.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumItemEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatch.aspx.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\RepairNotice.aspx.cs"},{"SourceFile":"HJGL\\NDT\\RepairNotice.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItem.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItem.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageView.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageView.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\SeeQRImage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItem.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItem.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManageEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\OpenResetPoint.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\OpenResetPoint.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\PointAudit.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\PointAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatch.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\TrustBatch.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\TrustBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAudit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningComplete.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairAndExpand.aspx.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairAndExpand.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\SeeFilm.aspx.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\SeeFilm.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit2.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit2.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckView.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckView.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAudit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageComplete.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageCompleteEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageCompleteEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\GetWdldingDailyItem.ashx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineListIn.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineListIn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportAudit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectDailyWeldJoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectDailyWeldJoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectTaskWeldJoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectTaskWeldJoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWPS.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWPS.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTask.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTask.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\DefectStatistics.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\DefectStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\FirstPassRate.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\FirstPassRate.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTMonthlyReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTMonthlyReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTWeeklyReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTWeeklyReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderAvgPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderAvgPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQEdit.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQIn.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQIn.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQList.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQList.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQView.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandle.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandle.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecord.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReport.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOther.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOther.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanList.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanList.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummary.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummary.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditCompanyManageRuleTemplate.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditCompanyManageRuleTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditManagerRuleTemplate.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditManagerRuleTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleList.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleList.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManager.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManager.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerView.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManager.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManager.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerView.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligation.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligation.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayDetailWHEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayDetailWHEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWH.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWH.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHoliday.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHoliday.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailIn.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecial.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecial.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWork.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWork.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailIn.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactList.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactList.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactListEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactListView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificate.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificate.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateView.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\OfficeCheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\OfficeCheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNotices.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNotices.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRecheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRecheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRectify.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAudit.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesView.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ShowCheckItem.aspx.cs"},{"SourceFile":"HSSE\\Check\\ShowCheckItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ShowCompletedDate.aspx.cs"},{"SourceFile":"HSSE\\Check\\ShowCompletedDate.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPerson.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPerson.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostLedger.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostLedger.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManage.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManage.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetail.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetail.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\Expense.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\Expense.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManage.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManage.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlan.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlanEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlanEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistration.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistration.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistrationEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistrationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistration.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistration.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistrationEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistrationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\TotalPayRegistrationView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\TotalPayRegistrationView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCase.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCase.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTraining.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTraining.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\Plan.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\Plan.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\PlanView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\PlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\ShowPerson.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\ShowPerson.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\Task.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\Task.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlan.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItem.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItem.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordPrint.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestStatistics.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTraining.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTraining.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemIn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemIn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingOut.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingOut.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainDB.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainDB.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainFind.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainFind.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordIn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordIn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTest.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTest.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDB.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDB.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestItemEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordList.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordList.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyList.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyList.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcess.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcess.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcessEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcessEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupply.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupply.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrain.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrain.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReport.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlan.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoring.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoring.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmental.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFile.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFile.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfo.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfo.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfoEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfoEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardPrompt.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardPrompt.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardReEvaluator.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardReEvaluator.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardTemplate.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\MajorHazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\MajorHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazard.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazard.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectify.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectifyEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\Response.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\Response.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ResponseItem.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ResponseItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RiskControl.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RiskControl.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspection.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspection.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\SetToolTipTime.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\SetToolTipTime.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ShowEnvironmentalItem.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ShowEnvironmentalItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ShowHazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ShowHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationAdd.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationConfirm.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationConfirm.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationList.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationList.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationRectify.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationView.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationView.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\RiskAnalysisChart.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\RiskAnalysisChart.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDuty.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDuty.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyEdit.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitution.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitution.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitutionEdit.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitutionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOut.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOut.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOut.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOut.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationAnalysis\\CheckAnalysis.aspx.cs"},{"SourceFile":"HSSE\\InformationAnalysis\\CheckAnalysis.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\CreateLawRegulationIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\CreateLawRegulationIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetA.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetA.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetB.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetB.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\Notice.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\Notice.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolder.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolder.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivities.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivities.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardList.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSave.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSave.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationList.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationList.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRule.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulations.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulations.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\BreakGround.aspx.cs"},{"SourceFile":"HSSE\\License\\BreakGround.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\BreakGroundView.aspx.cs"},{"SourceFile":"HSSE\\License\\BreakGroundView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\Electricity.aspx.cs"},{"SourceFile":"HSSE\\License\\Electricity.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\ElectricityView.aspx.cs"},{"SourceFile":"HSSE\\License\\ElectricityView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyList.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyList.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListView.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\FireWork.aspx.cs"},{"SourceFile":"HSSE\\License\\FireWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\FireWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\FireWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HeightWork.aspx.cs"},{"SourceFile":"HSSE\\License\\HeightWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HeightWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\HeightWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnical.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnical.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalView.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManager.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManager.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerView.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LiftingWork.aspx.cs"},{"SourceFile":"HSSE\\License\\LiftingWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LiftingWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\LiftingWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LimitedSpace.aspx.cs"},{"SourceFile":"HSSE\\License\\LimitedSpace.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LimitedSpaceView.aspx.cs"},{"SourceFile":"HSSE\\License\\LimitedSpaceView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\NightWork.aspx.cs"},{"SourceFile":"HSSE\\License\\NightWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\NightWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\NightWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\OpenCircuit.aspx.cs"},{"SourceFile":"HSSE\\License\\OpenCircuit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\OpenCircuitView.aspx.cs"},{"SourceFile":"HSSE\\License\\OpenCircuitView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\RadialWork.aspx.cs"},{"SourceFile":"HSSE\\License\\RadialWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\RadialWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\RadialWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\SecurityLicense.aspx.cs"},{"SourceFile":"HSSE\\License\\SecurityLicense.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReport.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiary.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiary.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiaryView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiaryView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSELogStatistics.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSELogStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELog.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELog.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonth.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonth.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDin.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDin.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeek.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeek.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit1.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit1.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit10.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit10.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit2.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit2.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit3.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit3.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit4.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit4.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit6.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit6.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit5.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit5.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit7.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit7.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit8.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit8.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit9.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit9.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCOut.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCOut.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView1.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView1.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView10.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView10.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView2.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView2.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView3.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView3.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView4.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView4.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView5.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView5.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView6.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView6.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView7.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView7.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView8.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView8.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView9.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView9.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonth.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonth.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeek.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeek.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetection.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetection.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccident.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccident.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExamination.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExamination.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationView.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecord.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordView.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomance.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomance.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceEdit.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceView.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAudit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditView.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecord.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAudit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditView.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Resources\\SignManage.aspx.cs"},{"SourceFile":"HSSE\\Resources\\SignManage.aspx.designer.cs"},{"SourceFile":"HSSE\\Resources\\SignManageEdit.aspx.cs"},{"SourceFile":"HSSE\\Resources\\SignManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganization.aspx.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganization.aspx.designer.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationEdit.aspx.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportImport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportImport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonAutoDetail.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonAutoDetail.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfo.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfo.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonList.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonList.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonListEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonOut.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonOut.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonBaseData.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonBaseData.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\WorkPostStatistic.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\WorkPostStatistic.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonStatistic.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonStatistic.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonUnitRefresh.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonUnitRefresh.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\ReadWriteCard.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\ReadWriteCard.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCard.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCard.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCardView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolution.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolution.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentList.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentList.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEditItem.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEditItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardList.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ShowIndexToLaw.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ShowIndexToLaw.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplate.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateView.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemSet.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemSet.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CompanyEnvironmental.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CompanyEnvironmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CompanyHazardList.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CompanyHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Emergency.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Emergency.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EmergencySelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EmergencySelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Environmental.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Environmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalIn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardList.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListIn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListOut.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListOut.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Rectify.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Rectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifyEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifySelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifySelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialScheme.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialScheme.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeSelectCloumn.aspx.designer.cs"},{"SourceFile":"indexProject.aspx.cs"},{"SourceFile":"indexProject.aspx.designer.cs"},{"SourceFile":"index.aspx.cs"},{"SourceFile":"index.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MonthPlan.aspx.cs"},{"SourceFile":"JDGL\\Check\\MonthPlan.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionView.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionView.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressShow.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressShow.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressStatistics.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressStatistics.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityList.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityList.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityListEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityListEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityListView.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityListView.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\TotalCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\TotalCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\EarnedValueCurve.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\EarnedValueCurve.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\JDReport.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\JDReport.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\PlanAdjust.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\PlanAdjust.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\RectificationMeasureSet.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\RectificationMeasureSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSCompleteAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSCompleteAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReport.aspx.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReport.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\SeeDetailHistory.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\SeeDetailHistory.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanSet.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSWeights\\WeightsAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSWeights\\WeightsAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryShow.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryShow.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailHistoryShow.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailHistoryShow.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekItemDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekItemDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigType.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigType.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeView.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeView.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialType.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialType.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeView.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeView.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\MilePost.aspx.cs"},{"SourceFile":"JDGL\\WBS\\MilePost.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\MilePostEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\MilePostEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSIn.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSIn.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSOut.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSOut.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSet.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAudit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAuditEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAuditEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy2.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy2.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInput.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInput.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEditAll.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEditAll.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputIn.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputIn.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatistics.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatistics.aspx.designer.cs"},{"SourceFile":"Login.aspx.cs"},{"SourceFile":"Login.aspx.designer.cs"},{"SourceFile":"Notice\\IssuedNotice.aspx.cs"},{"SourceFile":"Notice\\IssuedNotice.aspx.designer.cs"},{"SourceFile":"Notice\\NoIssuedNotice.aspx.cs"},{"SourceFile":"Notice\\NoIssuedNotice.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeEdit.aspx.cs"},{"SourceFile":"Notice\\NoticeEdit.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeView.aspx.cs"},{"SourceFile":"Notice\\NoticeView.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeView2.aspx.cs"},{"SourceFile":"Notice\\NoticeView2.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckContentEdit1.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckContentEdit1.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckInfo.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckInfo.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNotice.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNotice.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReport.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReport.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\RectifyEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\RectifyEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluation.aspx.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluation.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationEdit.aspx.designer.cs"},{"SourceFile":"Opinion\\OpinionCollection.aspx.cs"},{"SourceFile":"Opinion\\OpinionCollection.aspx.designer.cs"},{"SourceFile":"Opinion\\OpinionCollectionEdit.aspx.cs"},{"SourceFile":"Opinion\\OpinionCollectionEdit.aspx.designer.cs"},{"SourceFile":"Party\\BasicInformation.aspx.cs"},{"SourceFile":"Party\\BasicInformation.aspx.designer.cs"},{"SourceFile":"Party\\CommentPartyer.aspx.cs"},{"SourceFile":"Party\\CommentPartyer.aspx.designer.cs"},{"SourceFile":"Party\\CommentPartyerEdit.aspx.cs"},{"SourceFile":"Party\\CommentPartyerEdit.aspx.designer.cs"},{"SourceFile":"Party\\DoingThingsForMasses.aspx.cs"},{"SourceFile":"Party\\DoingThingsForMasses.aspx.designer.cs"},{"SourceFile":"Party\\DoingThingsForMassesEdit.aspx.cs"},{"SourceFile":"Party\\DoingThingsForMassesEdit.aspx.designer.cs"},{"SourceFile":"Party\\EmployeeConversationRecord.aspx.cs"},{"SourceFile":"Party\\EmployeeConversationRecord.aspx.designer.cs"},{"SourceFile":"Party\\EmployeeConversationRecordEdit.aspx.cs"},{"SourceFile":"Party\\EmployeeConversationRecordEdit.aspx.designer.cs"},{"SourceFile":"Party\\FocusLearn.aspx.cs"},{"SourceFile":"Party\\FocusLearn.aspx.designer.cs"},{"SourceFile":"Party\\FocusLearnEdit.aspx.cs"},{"SourceFile":"Party\\FocusLearnEdit.aspx.designer.cs"},{"SourceFile":"Party\\LastWorkSummary.aspx.cs"},{"SourceFile":"Party\\LastWorkSummary.aspx.designer.cs"},{"SourceFile":"Party\\LastWorkSummaryEdit.aspx.cs"},{"SourceFile":"Party\\LastWorkSummaryEdit.aspx.designer.cs"},{"SourceFile":"Party\\NewsPropagandaWork.aspx.cs"},{"SourceFile":"Party\\NewsPropagandaWork.aspx.designer.cs"},{"SourceFile":"Party\\NewsPropagandaWorkEdit.aspx.cs"},{"SourceFile":"Party\\NewsPropagandaWorkEdit.aspx.designer.cs"},{"SourceFile":"Party\\OrganizingLife.aspx.cs"},{"SourceFile":"Party\\OrganizingLife.aspx.designer.cs"},{"SourceFile":"Party\\OrganizingLifeEdit.aspx.cs"},{"SourceFile":"Party\\OrganizingLifeEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyCommittee.aspx.cs"},{"SourceFile":"Party\\PartyCommittee.aspx.designer.cs"},{"SourceFile":"Party\\PartyCommitteeEdit.aspx.cs"},{"SourceFile":"Party\\PartyCommitteeEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyCongress.aspx.cs"},{"SourceFile":"Party\\PartyCongress.aspx.designer.cs"},{"SourceFile":"Party\\PartyCongressEdit.aspx.cs"},{"SourceFile":"Party\\PartyCongressEdit.aspx.designer.cs"},{"SourceFile":"Party\\Partyer.aspx.cs"},{"SourceFile":"Party\\Partyer.aspx.designer.cs"},{"SourceFile":"Party\\PartyerEdit.aspx.cs"},{"SourceFile":"Party\\PartyerEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyHistoryStudy.aspx.cs"},{"SourceFile":"Party\\PartyHistoryStudy.aspx.designer.cs"},{"SourceFile":"Party\\PartyHistoryStudyEdit.aspx.cs"},{"SourceFile":"Party\\PartyHistoryStudyEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyLecture.aspx.cs"},{"SourceFile":"Party\\PartyLecture.aspx.designer.cs"},{"SourceFile":"Party\\PartyLectureEdit.aspx.cs"},{"SourceFile":"Party\\PartyLectureEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyMeeting.aspx.cs"},{"SourceFile":"Party\\PartyMeeting.aspx.designer.cs"},{"SourceFile":"Party\\PartyMeetingEdit.aspx.cs"},{"SourceFile":"Party\\PartyMeetingEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyMoneyUse.aspx.cs"},{"SourceFile":"Party\\PartyMoneyUse.aspx.designer.cs"},{"SourceFile":"Party\\PartyMoneyUseEdit.aspx.cs"},{"SourceFile":"Party\\PartyMoneyUseEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyPioneerDemonstration.aspx.cs"},{"SourceFile":"Party\\PartyPioneerDemonstration.aspx.designer.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationEdit.aspx.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationEdit.aspx.designer.cs"},{"SourceFile":"Party\\ThemePartyDay.aspx.cs"},{"SourceFile":"Party\\ThemePartyDay.aspx.designer.cs"},{"SourceFile":"Party\\ThemePartyDayEdit.aspx.cs"},{"SourceFile":"Party\\ThemePartyDayEdit.aspx.designer.cs"},{"SourceFile":"Party\\TwoOneGoodSelection.aspx.cs"},{"SourceFile":"Party\\TwoOneGoodSelection.aspx.designer.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionEdit.aspx.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionEdit.aspx.designer.cs"},{"SourceFile":"Party\\WorkPlan.aspx.cs"},{"SourceFile":"Party\\WorkPlan.aspx.designer.cs"},{"SourceFile":"Party\\WorkPlanEdit.aspx.cs"},{"SourceFile":"Party\\WorkPlanEdit.aspx.designer.cs"},{"SourceFile":"Personal\\BusinessTrip.aspx.cs"},{"SourceFile":"Personal\\BusinessTrip.aspx.designer.cs"},{"SourceFile":"Personal\\BusinessTripEdit.aspx.cs"},{"SourceFile":"Personal\\BusinessTripEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonMeeting.aspx.cs"},{"SourceFile":"Personal\\PersonMeeting.aspx.designer.cs"},{"SourceFile":"Personal\\PersonMeetingEdit.aspx.cs"},{"SourceFile":"Personal\\PersonMeetingEdit.aspx.designer.cs"},{"SourceFile":"Personal\\FileSearch.aspx.cs"},{"SourceFile":"Personal\\FileSearch.aspx.designer.cs"},{"SourceFile":"Personal\\PersonCheckInfo.aspx.cs"},{"SourceFile":"Personal\\PersonCheckInfo.aspx.designer.cs"},{"SourceFile":"Personal\\PersonDuty.aspx.cs"},{"SourceFile":"Personal\\PersonDuty.aspx.designer.cs"},{"SourceFile":"Personal\\ShowTestRunPerformanceStandard.aspx.cs"},{"SourceFile":"Personal\\ShowTestRunPerformanceStandard.aspx.designer.cs"},{"SourceFile":"Personal\\TestRunMonthSummary.aspx.cs"},{"SourceFile":"Personal\\TestRunMonthSummary.aspx.designer.cs"},{"SourceFile":"Personal\\TestRunMonthSummaryEdit.aspx.cs"},{"SourceFile":"Personal\\TestRunMonthSummaryEdit.aspx.designer.cs"},{"SourceFile":"Personal\\TestRunPerformance.aspx.cs"},{"SourceFile":"Personal\\TestRunPerformance.aspx.designer.cs"},{"SourceFile":"Personal\\TestRunPerformanceEdit.aspx.cs"},{"SourceFile":"Personal\\TestRunPerformanceEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonCheck.aspx.cs"},{"SourceFile":"Person\\PersonCheck.aspx.designer.cs"},{"SourceFile":"Person\\PersonChecking.aspx.cs"},{"SourceFile":"Person\\PersonChecking.aspx.designer.cs"},{"SourceFile":"Person\\PersonCheckingView.aspx.cs"},{"SourceFile":"Person\\PersonCheckingView.aspx.designer.cs"},{"SourceFile":"Person\\PersonDuty.aspx.cs"},{"SourceFile":"Person\\PersonDuty.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyAdd.aspx.cs"},{"SourceFile":"Person\\PersonDutyAdd.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyEdit.aspx.cs"},{"SourceFile":"Person\\PersonDutyEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyTemplate.aspx.cs"},{"SourceFile":"Person\\PersonDutyTemplate.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyView.aspx.cs"},{"SourceFile":"Person\\PersonDutyView.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlan.aspx.cs"},{"SourceFile":"Person\\PersonPlan.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanChart.aspx.cs"},{"SourceFile":"Person\\PersonPlanChart.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanEdit.aspx.cs"},{"SourceFile":"Person\\PersonPlanEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanIn.aspx.cs"},{"SourceFile":"Person\\PersonPlanIn.aspx.designer.cs"},{"SourceFile":"Person\\PersonSet.aspx.cs"},{"SourceFile":"Person\\PersonSet.aspx.designer.cs"},{"SourceFile":"Person\\PersonSetEdit.aspx.cs"},{"SourceFile":"Person\\PersonSetEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotal.aspx.cs"},{"SourceFile":"Personal\\PersonTotal.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotalEdit.aspx.cs"},{"SourceFile":"Personal\\PersonTotalEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotalView.aspx.cs"},{"SourceFile":"Personal\\PersonTotalView.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotal.aspx.cs"},{"SourceFile":"Person\\PersonTotal.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotalEdit.aspx.cs"},{"SourceFile":"Person\\PersonTotalEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotalView.aspx.cs"},{"SourceFile":"Person\\PersonTotalView.aspx.designer.cs"},{"SourceFile":"Person\\PersonTraining.aspx.cs"},{"SourceFile":"Person\\PersonTraining.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingAdd.aspx.cs"},{"SourceFile":"Person\\PersonTrainingAdd.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingEdit.aspx.cs"},{"SourceFile":"Person\\PersonTrainingEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingTaskItem.aspx.cs"},{"SourceFile":"Person\\PersonTrainingTaskItem.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingView.aspx.cs"},{"SourceFile":"Person\\PersonTrainingView.aspx.designer.cs"},{"SourceFile":"Person\\Shunt.aspx.cs"},{"SourceFile":"Person\\Shunt.aspx.designer.cs"},{"SourceFile":"Person\\ShuntDetailEdit.aspx.cs"},{"SourceFile":"Person\\ShuntDetailEdit.aspx.designer.cs"},{"SourceFile":"Person\\ShuntEdit.aspx.cs"},{"SourceFile":"Person\\ShuntEdit.aspx.designer.cs"},{"SourceFile":"Person\\ShuntList.aspx.cs"},{"SourceFile":"Person\\ShuntList.aspx.designer.cs"},{"SourceFile":"Person\\ShuntView.aspx.cs"},{"SourceFile":"Person\\ShuntView.aspx.designer.cs"},{"SourceFile":"Person\\PersonIn.aspx.cs"},{"SourceFile":"Person\\PersonIn.aspx.designer.cs"},{"SourceFile":"ProjectData\\Installation.aspx.cs"},{"SourceFile":"ProjectData\\Installation.aspx.designer.cs"},{"SourceFile":"ProjectData\\InstallationSave.aspx.cs"},{"SourceFile":"ProjectData\\InstallationSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItem.aspx.cs"},{"SourceFile":"ProjectData\\MainItem.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItemEdit.aspx.cs"},{"SourceFile":"ProjectData\\MainItemEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItemView.aspx.cs"},{"SourceFile":"ProjectData\\MainItemView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectInformation.aspx.cs"},{"SourceFile":"ProjectData\\ProjectInformation.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectList.aspx.cs"},{"SourceFile":"ProjectData\\ProjectList.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectMonitorList.aspx.cs"},{"SourceFile":"ProjectData\\ProjectMonitorList.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSet.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSet.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetMap.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetMap.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdown.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdown.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdownEdit.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdownEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdownView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdownView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSysSet.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnit.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnit.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitSelect.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitSelect.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUser.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUser.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserSelect.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserSelect.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ShowMainItem.aspx.cs"},{"SourceFile":"ProjectData\\ShowMainItem.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroup.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroup.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroupEdit.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroupEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroupView.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroupView.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWork.aspx.cs"},{"SourceFile":"ProjectData\\UnitWork.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWorkEdit.aspx.cs"},{"SourceFile":"ProjectData\\UnitWorkEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWorkView.aspx.cs"},{"SourceFile":"ProjectData\\UnitWorkView.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXFind.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXFind.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXInfoCount.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXInfoCount.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXList.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXList.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXListEdit.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXListEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLog.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLog.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlan.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlan.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReport.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReport.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\Picture.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\Picture.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManager.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManager.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandover.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandover.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverView.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMap.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMap.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapEdit.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapView.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapView.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageData.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageData.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataSave.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataSave.aspx.designer.cs"},{"SourceFile":"ReportPrint\\PrintDesigner.aspx.cs"},{"SourceFile":"ReportPrint\\PrintDesigner.aspx.designer.cs"},{"SourceFile":"Personal\\RunLog.aspx.cs"},{"SourceFile":"Personal\\RunLog.aspx.designer.cs"},{"SourceFile":"Personal\\PersonalSet.aspx.cs"},{"SourceFile":"Personal\\PersonalSet.aspx.designer.cs"},{"SourceFile":"Personal\\PersonalInfo.aspx.cs"},{"SourceFile":"Personal\\PersonalInfo.aspx.designer.cs"},{"SourceFile":"Captcha\\captcha.ashx.cs"},{"SourceFile":"Captcha\\CaptchaImage.cs"},{"SourceFile":"common\\loading.aspx.cs"},{"SourceFile":"common\\loading.aspx.designer.cs"},{"SourceFile":"common\\ShowUpFile.aspx.cs"},{"SourceFile":"common\\ShowUpFile.aspx.designer.cs"},{"SourceFile":"common\\main0.aspx.cs"},{"SourceFile":"common\\main0.aspx.designer.cs"},{"SourceFile":"common\\source.aspx.cs"},{"SourceFile":"common\\source.aspx.designer.cs"},{"SourceFile":"common\\source_file.aspx.cs"},{"SourceFile":"common\\source_file.aspx.designer.cs"},{"SourceFile":"config\\ajax.aspx.cs"},{"SourceFile":"config\\ajax.aspx.designer.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.designer.cs"},{"SourceFile":"config\\icons.aspx.cs"},{"SourceFile":"config\\icons.aspx.designer.cs"},{"SourceFile":"config\\icons_font.aspx.cs"},{"SourceFile":"config\\icons_font.aspx.designer.cs"},{"SourceFile":"config\\install_toolbox.aspx.cs"},{"SourceFile":"config\\install_toolbox.aspx.designer.cs"},{"SourceFile":"config\\modify_webconfig.aspx.cs"},{"SourceFile":"config\\modify_webconfig.aspx.designer.cs"},{"SourceFile":"Controls\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.designer.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.designer.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"LogOff.aspx.cs"},{"SourceFile":"LogOff.aspx.designer.cs"},{"SourceFile":"common\\PageBase.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"ReportPrint\\CalculateChinaEx.aspx.cs"},{"SourceFile":"ReportPrint\\CalculateChinaEx.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ExPrintSet.aspx.cs"},{"SourceFile":"ReportPrint\\ExPrintSet.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ExReportPrint.aspx.cs"},{"SourceFile":"ReportPrint\\ExReportPrint.aspx.designer.cs"},{"SourceFile":"ReportPrint\\PrintDesigner2.aspx.cs"},{"SourceFile":"ReportPrint\\PrintDesigner2.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ReadExReportFile.aspx.cs"},{"SourceFile":"ReportPrint\\ReadExReportFile.aspx.designer.cs"},{"SourceFile":"ReportPrint\\SaveTabFile.aspx.cs"},{"SourceFile":"ReportPrint\\SaveTabFile.aspx.designer.cs"},{"SourceFile":"res\\umeditor\\net\\imageUp.ashx.cs"},{"SourceFile":"res\\umeditor\\net\\Uploader.cs"},{"SourceFile":"ServiceProxy.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefing.aspx.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefing.aspx.designer.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefingEdit.aspx.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefingEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\CustomQuery.aspx.cs"},{"SourceFile":"SysManage\\CustomQuery.aspx.designer.cs"},{"SourceFile":"SysManage\\Depart.aspx.cs"},{"SourceFile":"SysManage\\Depart.aspx.designer.cs"},{"SourceFile":"SysManage\\HttpLog.aspx.cs"},{"SourceFile":"SysManage\\HttpLog.aspx.designer.cs"},{"SourceFile":"SysManage\\MenuFlowOperateEdit.aspx.cs"},{"SourceFile":"SysManage\\MenuFlowOperateEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\ParticipateProject.aspx.cs"},{"SourceFile":"SysManage\\ParticipateProject.aspx.designer.cs"},{"SourceFile":"SysManage\\ProjectToDo.aspx.cs"},{"SourceFile":"SysManage\\ProjectToDo.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleItem.aspx.cs"},{"SourceFile":"SysManage\\RoleItem.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleItemEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleItemEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleList.aspx.cs"},{"SourceFile":"SysManage\\RoleList.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RolePower.aspx.cs"},{"SourceFile":"SysManage\\RolePower.aspx.designer.cs"},{"SourceFile":"SysManage\\SysConstSet.aspx.cs"},{"SourceFile":"SysManage\\SysConstSet.aspx.designer.cs"},{"SourceFile":"SysManage\\Unit.aspx.cs"},{"SourceFile":"SysManage\\Unit.aspx.designer.cs"},{"SourceFile":"SysManage\\UnitEdit.aspx.cs"},{"SourceFile":"SysManage\\UnitEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UnitIn.aspx.cs"},{"SourceFile":"SysManage\\UnitIn.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UserIn.aspx.cs"},{"SourceFile":"SysManage\\UserIn.aspx.designer.cs"},{"SourceFile":"SysManage\\UserList.aspx.cs"},{"SourceFile":"SysManage\\UserList.aspx.designer.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlan.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlan.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanEdit.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanEdit.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanView.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanView.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestRanking.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestRanking.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestRecord.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestRecord.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\IFLogList.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\IFLogList.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceEdit.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceEdit.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceSet.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceSet.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTask.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTask.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTaskEdit.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTaskEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRun.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRun.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRun.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRunEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandle.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandleEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandleEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectInstrument.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectInstrument.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectProperty.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectProperty.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTechnology.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTechnology.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SetWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SetWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementation.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementation.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementationList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementationList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubSysWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubSysWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SysPipingDeviceImport.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SysPipingDeviceImport.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUpload.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUpload.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUploadList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUploadList.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuy.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuy.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModel.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModel.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModelDataIn.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModelDataIn.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModelEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsModelEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTrace.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTrace.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\ShowGoodsModel.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\ShowGoodsModel.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazard.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazard.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicense.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicense.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasure.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasure.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMap.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMap.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\TestRunLicenseTypeEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\TestRunLicenseTypeEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudy.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudy.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverData.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverData.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataTypeEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataTypeEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\Duty.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\Duty.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DutyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DutyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemAdd.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemAdd.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemSelect.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemSelect.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverProgress.aspx.cs"},{"SourceFile":"TestRun\\DriverProgress.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverProgressEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverProgressEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunComplete.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunComplete.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunCompleteEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunCompleteEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportNewEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportNewEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportNewView.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportNewView.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportPush.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportPush.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportPushView.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportPushView.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportView.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportView.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRun.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRun.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContact.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContact.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunView.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunView.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverScheme.aspx.cs"},{"SourceFile":"TestRun\\DriverScheme.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSchemeChart.aspx.cs"},{"SourceFile":"TestRun\\DriverSchemeChart.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSchemeEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSchemeEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSchemeView.aspx.cs"},{"SourceFile":"TestRun\\DriverSchemeView.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSub.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSub.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContact.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContact.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorIn.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorIn.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorList.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorList.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubSetContactorEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubSetContactorEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubSetProgressEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubSetProgressEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\PersonalSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\PersonalSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\PersonalSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\PersonalSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\SpecialSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\SpecialSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\SpecialSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\SpecialSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\FeedingTestRun.aspx.cs"},{"SourceFile":"TestRun\\FeedingTestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\FeedingTestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\FeedingTestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\FeedingRunApplication.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\FeedingRunApplication.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\SelectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\SelectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\SubInspectTermEdit.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\SubInspectTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\Feeding\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\Feedback.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\Feedback.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingInitiate.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingInitiate.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingInitiateEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingInitiateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingSummary.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingSummaryView.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingSummaryView.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingView.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingView.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingView.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingView.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingView.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingView.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlan.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContact.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContact.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContent.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContent.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContract.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContract.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlan.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecords.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecords.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySamp.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySamp.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecord.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecord.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReport.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\RunningLogManagementEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\RunningLogManagementEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\RunningLogManagementList.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\RunningLogManagementList.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecord.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecord.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReport.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\Produce\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\Produce\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\Produce\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\Produce\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\Produce\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\Produce\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\Produce\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\Produce\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\Report\\FourDecisionSchedule.aspx.cs"},{"SourceFile":"TestRun\\Report\\FourDecisionSchedule.aspx.designer.cs"},{"SourceFile":"TestRun\\Report\\PreRunSchedule.aspx.cs"},{"SourceFile":"TestRun\\Report\\PreRunSchedule.aspx.designer.cs"},{"SourceFile":"TestRun\\Report\\ScheduleSetUp.aspx.cs"},{"SourceFile":"TestRun\\Report\\ScheduleSetUp.aspx.designer.cs"},{"SourceFile":"TestRun\\Report\\TestRunSchedule.aspx.cs"},{"SourceFile":"TestRun\\Report\\TestRunSchedule.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRun.aspx.cs"},{"SourceFile":"TestRun\\TestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRun.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRun.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRunEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SelectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SelectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SetWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SetWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementation.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementation.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementationList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementationList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTermEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubSysWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubSysWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUpload.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUpload.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUploadList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUploadList.aspx.designer.cs"},{"SourceFile":"Transfer\\Chart\\Instrumentation.aspx.cs"},{"SourceFile":"Transfer\\Chart\\Instrumentation.aspx.designer.cs"},{"SourceFile":"Transfer\\Chart\\PunchlistFrom.aspx.cs"},{"SourceFile":"Transfer\\Chart\\PunchlistFrom.aspx.designer.cs"},{"SourceFile":"Transfer\\Chart\\PunchlistFromChart.aspx.cs"},{"SourceFile":"Transfer\\Chart\\PunchlistFromChart.aspx.designer.cs"},{"SourceFile":"Transfer\\Chart\\TransferChart.aspx.cs"},{"SourceFile":"Transfer\\Chart\\TransferChart.aspx.designer.cs"},{"SourceFile":"Transfer\\CivilStructure.aspx.cs"},{"SourceFile":"Transfer\\CivilStructure.aspx.designer.cs"},{"SourceFile":"Transfer\\CivilStructureDataIn.aspx.cs"},{"SourceFile":"Transfer\\CivilStructureDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Electrical.aspx.cs"},{"SourceFile":"Transfer\\Electrical.aspx.designer.cs"},{"SourceFile":"Transfer\\ElectricalDataIn.aspx.cs"},{"SourceFile":"Transfer\\ElectricalDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Firefighting.aspx.cs"},{"SourceFile":"Transfer\\Firefighting.aspx.designer.cs"},{"SourceFile":"Transfer\\FirefightingDataIn.aspx.cs"},{"SourceFile":"Transfer\\FirefightingDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\HVAC.aspx.cs"},{"SourceFile":"Transfer\\HVAC.aspx.designer.cs"},{"SourceFile":"Transfer\\HVACDataIn.aspx.cs"},{"SourceFile":"Transfer\\HVACDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Instrumentation.aspx.cs"},{"SourceFile":"Transfer\\Instrumentation.aspx.designer.cs"},{"SourceFile":"Transfer\\InstrumentationDataIn.aspx.cs"},{"SourceFile":"Transfer\\InstrumentationDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Piping.aspx.cs"},{"SourceFile":"Transfer\\Piping.aspx.designer.cs"},{"SourceFile":"Transfer\\PipingDataIn.aspx.cs"},{"SourceFile":"Transfer\\PipingDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Plumbing.aspx.cs"},{"SourceFile":"Transfer\\Plumbing.aspx.designer.cs"},{"SourceFile":"Transfer\\PlumbingDataIn.aspx.cs"},{"SourceFile":"Transfer\\PlumbingDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\ProjectSetup.aspx.cs"},{"SourceFile":"Transfer\\ProjectSetup.aspx.designer.cs"},{"SourceFile":"Transfer\\ProjectSetupDataIn.aspx.cs"},{"SourceFile":"Transfer\\ProjectSetupDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\PunchlistFrom.aspx.cs"},{"SourceFile":"Transfer\\PunchlistFrom.aspx.designer.cs"},{"SourceFile":"Transfer\\PunchlistFromDataIn.aspx.cs"},{"SourceFile":"Transfer\\PunchlistFromDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\RotatingEquipment.aspx.cs"},{"SourceFile":"Transfer\\RotatingEquipment.aspx.designer.cs"},{"SourceFile":"Transfer\\RotatingEquipmentDataIn.aspx.cs"},{"SourceFile":"Transfer\\RotatingEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\StaticEquipment.aspx.cs"},{"SourceFile":"Transfer\\StaticEquipment.aspx.designer.cs"},{"SourceFile":"Transfer\\StaticEquipmentDataIn.aspx.cs"},{"SourceFile":"Transfer\\StaticEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"Transfer\\Telecom.aspx.cs"},{"SourceFile":"Transfer\\Telecom.aspx.designer.cs"},{"SourceFile":"Transfer\\TelecomDataIn.aspx.cs"},{"SourceFile":"Transfer\\TelecomDataIn.aspx.designer.cs"},{"SourceFile":"Video\\Video.aspx.cs"},{"SourceFile":"Video\\Video.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\CheckStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\CheckStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\MeetStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\MeetStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\RectifyNoticesStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\RectifyNoticesStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMS.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMS.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMSEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMSEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGL.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGL.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMS.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMS.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMSEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMSEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGL.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGL.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_Data.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_Data.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordList.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordList.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListEdit.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListView.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyList.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyList.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListEdit.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListView.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\ServerEmergencySupply.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\ServerEmergencySupply.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlan.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlan.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoring.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoring.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmental.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmental.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalView.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManage.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManage.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganize.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganize.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitution.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitution.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitutionEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitutionEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetA.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetA.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemView.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemView.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetB.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetB.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\Picture.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\Picture.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureView.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseHiddenDanger.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseHiddenDanger.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResource.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResource.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseSafeAccident.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseSafeAccident.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseWorkTimeCost.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseWorkTimeCost.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportAdd.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportAdd.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportAdd.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportAdd.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQuality.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQuality.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\ReportAuditSee.aspx.cs"},{"SourceFile":"ZHGL\\Information\\ReportAuditSee.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\ReportSubmit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\ReportSubmit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefing.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefing.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummary.aspx.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummary.aspx.designer.cs"},{"SourceFile":"ZHGL\\ManagementReport\\ReportRemind.aspx.cs"},{"SourceFile":"ZHGL\\ManagementReport\\ReportRemind.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeeting.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeeting.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingView.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeeting.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeeting.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingView.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetection.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetection.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccident.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccident.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExamination.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExamination.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Performance\\PerformanceAllData.aspx.cs"},{"SourceFile":"ZHGL\\Performance\\PerformanceAllData.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonEdit.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonIn.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonView.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonEdit.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonIn.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonView.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\ProjectPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\ProjectPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysis.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysis.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentData.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentData.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReport.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportView.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatistics.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsView.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsView.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\OnPost.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\OnPost.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePost.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePost.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostIn.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroRecord.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroRecord.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSet.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSet.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\BasicData.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\BasicData.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReportView.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoTemplate.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoTemplate.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckNotice.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckNotice.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectify.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectify.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowFileUpload.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowFileUpload.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowRectifyItem.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowRectifyItem.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectify.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectify.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReport.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunMonthSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunMonthSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunMonthSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunMonthSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceMonthReport.aspx.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceMonthReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceMonthReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceMonthReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceStandard.aspx.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceStandard.aspx.designer.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceStandardEdit.aspx.cs"},{"SourceFile":"ZHGL\\TestRunPerformance\\TestRunPerformanceStandardEdit.aspx.designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Apache.NMS.ActiveMQ.1.7.2\\lib\\net40\\Apache.NMS.ActiveMQ.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\Apache.NMS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\FakesAssemblies\\Apache.NMS.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\AxInterop.SYNCARDOCXLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Portable.BouncyCastle.1.8.9\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\SharpZipLib.1.3.2\\lib\\net45\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Interop.WIA.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\Microsoft.QualityTools.Testing.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\RestSharp.106.15.0\\lib\\net452\\RestSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.IO.Compression.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.IO.Compression.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\FakesAssemblies\\ThoughtWorks.QRCode.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\FineUIPro.Web.dll","OutputItemRelativePath":"FineUIPro.Web.dll"},{"OutputItemFullPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\FineUIPro.Web.pdb","OutputItemRelativePath":"FineUIPro.Web.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx new file mode 100644 index 00000000..e5f09818 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx @@ -0,0 +1,78 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PointCropping.aspx.cs" Inherits="FineUIPro.Web.CQMS.WBS.Control.PointCropping" %> + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.cs b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.cs new file mode 100644 index 00000000..b944a9b0 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.cs @@ -0,0 +1,209 @@ +using BLL; +using Model; +using System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Data; +using System.IO; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.CQMS.WBS.Control +{ + public partial class PointCropping : PageBase + { + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + DataBrid(); + } + } + + #region 数据绑定和事件 + + /// + /// 数据绑定 + /// + public void DataBrid() + { + string strSql = @"select a.ControlId,a.ProjectId,a.ParentId,a.ControlCode,a.ControlLevel,a.PlanId,a.PlanTypeId,a.SubItemsId,a.DetectionItems,a.BasedCriterion,a.QualityRecordName,a.RecordNumber,a.Subcontractors,a.OperateTime,a.Sort from Control_PointCropping as a order by a.ControlLevel,a.Sort asc"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); + if (!string.IsNullOrEmpty(sDetectionItems.Text.Trim())) + { + strSql += " and a.DetectionItems like '%@DetectionItems%'"; + listStr.Add(new SqlParameter("@DetectionItems", this.sDetectionItems.Text.Trim())); + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.DataSource = tb; + Grid1.DataBind(); + } + + /// + /// 行点击 事件 + /// + protected void Grid1_RowCommand(object sender, GridCommandEventArgs e) + { + if (e.CommandName == "Delete") + { + string rowID = e.RowID; + DeleteRowByIDInternal(rowID); + DataBrid(); + ShowNotify("删除成功!"); + } + } + + /// + /// 行加载事件 + /// + protected void Grid1_RowDataBound(object sender, GridRowEventArgs e) + { + int controlLevel = Grid1.DataKeys[e.RowIndex][2] != null ? int.Parse(Grid1.DataKeys[e.RowIndex][2].ToString()) : 2; + if (controlLevel < 2) + { + e.TreeNodeExpanded = true; + } + } + + #endregion + + #region 按钮 + + /// + /// 搜索 + /// + protected void btnSearch_Click(object sender, EventArgs e) + { + DataBrid(); + } + + /// + /// 删除 + /// + protected void btnDelete_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + ShowNotify("至少选择一条数据!"); + return; + } + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + DeleteRowByIDInternal(rowID); + } + DataBrid(); + ShowNotify("删除成功!"); + + } + + /// + /// 新增 + /// + protected void btnAdd_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference($"PointCroppingEdit.aspx?ControlId=&ParentId=", "新增")); + } + + /// + /// 添加子级 + /// + protected void btnParentAdd_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + ShowNotify("请选择一条数据!", MessageBoxIcon.Warning); + return; + } + + var rowIndex = Grid1.SelectedRowIndex; + var rowId = Grid1.DataKeys[rowIndex][0].ToString(); + var controlLevel = Grid1.DataKeys[rowIndex][2] != null ? Convert.ToInt32(Grid1.DataKeys[rowIndex][2]) : 1; + if (controlLevel > 2) + { + ShowNotify("最小节点无子节点!", MessageBoxIcon.Warning); + return; + } + PageContext.RegisterStartupScript(Window1.GetShowReference($"PointCroppingEdit.aspx?ControlId=&ParentId={rowId}", "添加子级")); + } + + /// + /// 编辑 + /// + protected void btnEdit_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + ShowNotify("请选择一条数据!", MessageBoxIcon.Warning); + return; + } + + var rowIndex = Grid1.SelectedRowIndex; + var rowId = Grid1.DataKeys[rowIndex][0].ToString(); + var parentId = Grid1.DataKeys[rowIndex][1] != null ? Grid1.DataKeys[rowIndex][1].ToString() : string.Empty; + PageContext.RegisterStartupScript(Window1.GetShowReference($"PointCroppingEdit.aspx?ControlId={rowId}&ParentId={parentId}", "编辑")); + } + + /// + /// 关闭 + /// + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + DataBrid(); + } + + /// + /// 右击修改 + /// + protected void btnMenuModify_Click(object sender, EventArgs e) + { + btnEdit_Click(sender, e); + } + + /// + /// 右击新增子级别 + /// + protected void btnMenuParentAdd_Click(object sender, EventArgs e) + { + btnParentAdd_Click(sender, e); + } + + #endregion + + #region 私有方法 + + /// + /// 根据行ID来删除行数据 + /// + private void DeleteRowByIDInternal(string rowID) + { + var model = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == rowID); + if (model != null) + { + Funs.DB.Control_PointCropping.DeleteOnSubmit(model); + GetDevice(rowID); + } + Funs.DB.SubmitChanges(); + } + + /// + /// 删除 + /// + private void GetDevice(string id) + { + var model = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ParentId == id); + if (model != null) + { + Funs.DB.Control_PointCropping.DeleteOnSubmit(model); + GetDevice(model.ControlId); + } + } + + #endregion + + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.designer.cs new file mode 100644 index 00000000..ce3e993a --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCropping.aspx.designer.cs @@ -0,0 +1,152 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.WBS.Control +{ + + + public partial class PointCropping + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// sDetectionItems 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox sDetectionItems; + + /// + /// btnSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSearch; + + /// + /// btnAdd 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAdd; + + /// + /// btnParentAdd 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnParentAdd; + + /// + /// btnEdit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnEdit; + + /// + /// btnDelete 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDelete; + + /// + /// Window1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Menu1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuModify 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuModify; + + /// + /// btnMenuParentAdd 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuParentAdd; + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx new file mode 100644 index 00000000..8f0773ff --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx @@ -0,0 +1,103 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PointCroppingEdit.aspx.cs" Inherits="FineUIPro.Web.CQMS.WBS.Control.PointCroppingEdit" %> + + + + + + + 编辑 + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.cs new file mode 100644 index 00000000..c66699c7 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.cs @@ -0,0 +1,217 @@ +using BLL; +using Model; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.CQMS.WBS.Control +{ + public partial class PointCroppingEdit : PageBase + { + /// + /// 上级主键 + /// + public string ParentId + { + get { return (string)ViewState["ParentId"]; } + set { ViewState["ParentId"] = value; } + } + + /// + /// 主键 + /// + public string ControlId + { + get { return (string)ViewState["ControlId"]; } + set { ViewState["ControlId"] = value; } + } + + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.ControlId = Request.Params["ControlId"]; + this.ParentId = Request.Params["ParentId"]; + //绑定数据 + PageIn(); + } + } + + /// + /// 绑定数据 + /// + /// 主键 + /// 上级主键 + public void PageIn() + { + var num = 0; + if (!string.IsNullOrWhiteSpace(this.ParentId)) + { + var parenLs = GetAllCropping(this.ParentId); + if (parenLs.Count > 0) + { + var itemModel = parenLs.FirstOrDefault(p => p.ControlId == this.ParentId); + if (itemModel != null) + { + if (itemModel.ControlLevel == 1) + { + one.Hidden = false; + var oneModel = parenLs.FirstOrDefault(p => p.ControlLevel == 1); + if (oneModel != null) + { + lblOneDetectionItems.Text = oneModel.DetectionItems; + if (string.IsNullOrWhiteSpace(this.ControlId)) + { + num = Funs.DB.Control_PointCropping.Count() + 1; + txtSort.Text = num.ToString(); + } + } + } + else if (itemModel.ControlLevel == 2) + { + one.Hidden = false; + two.Hidden = false; + var oneModel = parenLs.FirstOrDefault(p => p.ControlLevel == 1); + if (oneModel != null) + { + lblOneDetectionItems.Text = oneModel.DetectionItems; + } + var twoModel = parenLs.FirstOrDefault(p => p.ControlLevel == 2); + if (twoModel != null) + { + lblTwoDetectionItems.Text = twoModel.DetectionItems; + } + if (string.IsNullOrWhiteSpace(this.ControlId)) + { + num = Funs.DB.Control_PointCropping.Count() + 1; + txtSort.Text = num.ToString(); + } + } + } + } + } + else + { + if (string.IsNullOrWhiteSpace(this.ControlId)) + { + num = Funs.DB.Control_PointCropping.Count() + 1; + txtSort.Text = num.ToString(); + } + } + if (!string.IsNullOrWhiteSpace(this.ControlId)) + { + var controModel = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == this.ControlId); + if (controModel != null) + { + txtRemark.Text = controModel.Remark; + txtSort.Text = controModel.Sort.ToString(); + txtDetectionItems.Text = controModel.DetectionItems; + txtBasedCriterion.Text = controModel.BasedCriterion; + txtQualityRecordName.Text = controModel.QualityRecordName; + txtRecordNumber.Text = controModel.RecordNumber; + txtPartition.Text = controModel.Partition; + txtControlCode.Text = controModel.ControlCode; + txtRemark.Text = controModel.Remark; + } + } + } + + /// + /// 保存 + /// + protected void btnSave_Click(object sender, EventArgs e) + { + var model = new Control_PointCropping(); + model.ControlId = Guid.NewGuid().ToString(); + var oneControlId = string.Empty; + var twoControlId = string.Empty; + if (!string.IsNullOrWhiteSpace(this.ControlId)) + { + model = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == this.ControlId); + } + if (model == null) + { + ShowNotify("传递参数错误!", MessageBoxIcon.Error); + return; + } + //model.ProjectId = CurrUser.LoginProjectId; + if (!string.IsNullOrWhiteSpace(this.ParentId)) + { + var parenLs = GetAllCropping(this.ParentId); + if (parenLs.Count > 0) + { + var oneModel = parenLs.FirstOrDefault(p => p.ControlLevel == 1); + if (oneModel != null) + { + model.PlanId = oneModel.ControlId; + model.ParentId = oneModel.ControlId; + model.PlanTypeId = model.ControlId; + model.ControlLevel = 2; + } + var twoModel = parenLs.FirstOrDefault(p => p.ControlLevel == 2); + if (twoModel != null) + { + model.PlanId = twoModel.PlanId; + model.ParentId = twoModel.ControlId; + model.PlanTypeId = twoModel.ControlId; + model.SubItemsId = model.ControlId; + model.ControlLevel = 3; + } + } + } + else + { + model.ControlLevel = 1; + } + model.AddUser = this.CurrUser.UserId; + model.OperateTime = DateTime.Now; + model.Sort = !string.IsNullOrEmpty(txtSort.Text) ? int.Parse(txtSort.Text) : Funs.DB.Control_PointCropping.Count() + 1; + model.DetectionItems = txtDetectionItems.Text; + model.BasedCriterion = txtBasedCriterion.Text; + model.QualityRecordName = txtQualityRecordName.Text; + model.RecordNumber = txtRecordNumber.Text; + model.Partition = txtPartition.Text; + model.ControlCode = txtControlCode.Text; + model.Remark = txtRemark.Text; + if (string.IsNullOrWhiteSpace(this.ControlId)) Funs.DB.Control_PointCropping.InsertOnSubmit(model); + Funs.DB.SubmitChanges(); + ShowNotify("保存成功!", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference()); + } + + + #region 私有方法 + + /// + /// 根据主键获取所有节点 + /// + /// + public List GetAllCropping(string parentId) + { + var result = new List(); + + var ids = new List(); + var itemCropping = Funs.DB.Control_PointCropping.FirstOrDefault(p => p.ControlId == parentId); + if (itemCropping != null) + { + ids.Add(itemCropping.ControlId); + if (!string.IsNullOrWhiteSpace(itemCropping.PlanId)) + { + ids.Add(itemCropping.PlanId); + } + if (!string.IsNullOrWhiteSpace(itemCropping.PlanTypeId)) + { + ids.Add(itemCropping.PlanTypeId); + } + result = Funs.DB.Control_PointCropping.Where(p => ids.Contains(p.ControlId)).ToList(); + } + return result; + } + + #endregion + + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.designer.cs new file mode 100644 index 00000000..1fb146e3 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/WBS/Control/PointCroppingEdit.aspx.designer.cs @@ -0,0 +1,197 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.WBS.Control +{ + + + public partial class PointCroppingEdit + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// Toolbar1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// ToolbarFill1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// btnSave 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSave; + + /// + /// ContentPanel2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ContentPanel ContentPanel2; + + /// + /// Form2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form Form2; + + /// + /// one 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FormRow one; + + /// + /// lblOneDetectionItems 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label lblOneDetectionItems; + + /// + /// two 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FormRow two; + + /// + /// lblTwoDetectionItems 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label lblTwoDetectionItems; + + /// + /// txtDetectionItems 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtDetectionItems; + + /// + /// txtBasedCriterion 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtBasedCriterion; + + /// + /// txtQualityRecordName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtQualityRecordName; + + /// + /// txtRecordNumber 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtRecordNumber; + + /// + /// txtPartition 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtPartition; + + /// + /// txtControlCode 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtControlCode; + + /// + /// txtRemark 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextArea txtRemark; + + /// + /// txtSort 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.NumberBox txtSort; + } +} diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index e69de29b..f9ea7fba 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -0,0 +1,42 @@ + +错误信息开始=====> +错误类型:HttpException +错误信息:文件“/CQMS/WBS/Control/PointCroppingEdit.aspx”不存在。 +错误堆栈: + 在 System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath) + 在 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 在 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 在 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 在 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 在 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 在 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 在 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:05/08/2024 01:15:14 +出错文件:http://localhost:8579/CQMS/WBS/Control/PointCroppingEdit.aspx?ControlId=&ParentId= +IP地址:::1 + +出错时间:05/08/2024 01:15:14 + + +错误信息开始=====> +错误类型:HttpException +错误信息:文件“/CQMS/WBS/Control/PointCroppingEdit.aspx”不存在。 +错误堆栈: + 在 System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath) + 在 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 在 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 在 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 在 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 在 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 在 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 在 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:05/08/2024 01:15:20 +出错文件:http://localhost:8579/CQMS/WBS/Control/PointCroppingEdit.aspx?ControlId=&ParentId=A9CBACE9-59C6-40CF-B587-EB1367A16137 +IP地址:::1 + +出错时间:05/08/2024 01:15:20 + diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 772fde5b..d9baf44a 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -12,7 +12,7 @@ Properties FineUIPro.Web FineUIPro.Web - v4.6.1 + v4.8 true @@ -581,6 +581,8 @@ + + @@ -8463,6 +8465,20 @@ ControlPoint.aspx + + PointCropping.aspx + ASPXCodeBehind + + + PointCropping.aspx + + + PointCroppingEdit.aspx + ASPXCodeBehind + + + PointCroppingEdit.aspx + EditBreakdown.aspx ASPXCodeBehind @@ -18759,7 +18775,7 @@ - + diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user index 9e91deff..e687716b 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -16,8 +16,9 @@ - Login.aspx - SpecificPage + + + CurrentPage True False False diff --git a/SGGL/FineUIPro.Web/Web.config b/SGGL/FineUIPro.Web/Web.config index 163db60f..7912ba7d 100644 --- a/SGGL/FineUIPro.Web/Web.config +++ b/SGGL/FineUIPro.Web/Web.config @@ -9,10 +9,10 @@
- + - + @@ -77,7 +77,7 @@ - + diff --git a/SGGL/FineUIPro.Web/common/Menu_CQMS.xml b/SGGL/FineUIPro.Web/common/Menu_CQMS.xml index 772210e3..87be14d7 100644 --- a/SGGL/FineUIPro.Web/common/Menu_CQMS.xml +++ b/SGGL/FineUIPro.Web/common/Menu_CQMS.xml @@ -1,8 +1,9 @@  - + + diff --git a/SGGL/FineUIPro.Web/common/Menu_JDGL.xml b/SGGL/FineUIPro.Web/common/Menu_JDGL.xml index e83a527e..2fac288a 100644 --- a/SGGL/FineUIPro.Web/common/Menu_JDGL.xml +++ b/SGGL/FineUIPro.Web/common/Menu_JDGL.xml @@ -10,6 +10,7 @@ + diff --git a/SGGL/FineUIPro.Web/common/Menu_TestRun.xml b/SGGL/FineUIPro.Web/common/Menu_TestRun.xml index b1a26ee1..26f32e6a 100644 --- a/SGGL/FineUIPro.Web/common/Menu_TestRun.xml +++ b/SGGL/FineUIPro.Web/common/Menu_TestRun.xml @@ -46,12 +46,12 @@ - - - + + + + - @@ -71,6 +71,7 @@ + @@ -119,7 +120,8 @@ - + + diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 31e60f74..96ccff1b 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -620,6 +620,9 @@ namespace Model partial void InsertComprehensive_TrainingRecords(Comprehensive_TrainingRecords instance); partial void UpdateComprehensive_TrainingRecords(Comprehensive_TrainingRecords instance); partial void DeleteComprehensive_TrainingRecords(Comprehensive_TrainingRecords instance); + partial void InsertControl_PointCropping(Control_PointCropping instance); + partial void UpdateControl_PointCropping(Control_PointCropping instance); + partial void DeleteControl_PointCropping(Control_PointCropping instance); partial void InsertCostGoods_CostManage(CostGoods_CostManage instance); partial void UpdateCostGoods_CostManage(CostGoods_CostManage instance); partial void DeleteCostGoods_CostManage(CostGoods_CostManage instance); @@ -4271,6 +4274,14 @@ namespace Model } } + public System.Data.Linq.Table Control_PointCropping + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table CostGoods_CostManage { get @@ -103232,6 +103243,548 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Control_PointCropping")] + public partial class Control_PointCropping : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _ControlId; + + private string _ProjectId; + + private string _ParentId; + + private string _ControlCode; + + private System.Nullable _ControlLevel; + + private string _PlanId; + + private string _PlanTypeId; + + private string _SubItemsId; + + private string _DetectionItems; + + private string _BasedCriterion; + + private string _QualityRecordName; + + private string _RecordNumber; + + private string _Partition; + + private string _Subcontractors; + + private string _FiveRings; + + private string _Supervision; + + private string _Owner; + + private string _Remark; + + private string _AddUser; + + private System.Nullable _OperateTime; + + private System.Nullable _Sort; + + #region 可扩展性方法定义 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnControlIdChanging(string value); + partial void OnControlIdChanged(); + partial void OnProjectIdChanging(string value); + partial void OnProjectIdChanged(); + partial void OnParentIdChanging(string value); + partial void OnParentIdChanged(); + partial void OnControlCodeChanging(string value); + partial void OnControlCodeChanged(); + partial void OnControlLevelChanging(System.Nullable value); + partial void OnControlLevelChanged(); + partial void OnPlanIdChanging(string value); + partial void OnPlanIdChanged(); + partial void OnPlanTypeIdChanging(string value); + partial void OnPlanTypeIdChanged(); + partial void OnSubItemsIdChanging(string value); + partial void OnSubItemsIdChanged(); + partial void OnDetectionItemsChanging(string value); + partial void OnDetectionItemsChanged(); + partial void OnBasedCriterionChanging(string value); + partial void OnBasedCriterionChanged(); + partial void OnQualityRecordNameChanging(string value); + partial void OnQualityRecordNameChanged(); + partial void OnRecordNumberChanging(string value); + partial void OnRecordNumberChanged(); + partial void OnPartitionChanging(string value); + partial void OnPartitionChanged(); + partial void OnSubcontractorsChanging(string value); + partial void OnSubcontractorsChanged(); + partial void OnFiveRingsChanging(string value); + partial void OnFiveRingsChanged(); + partial void OnSupervisionChanging(string value); + partial void OnSupervisionChanged(); + partial void OnOwnerChanging(string value); + partial void OnOwnerChanged(); + partial void OnRemarkChanging(string value); + partial void OnRemarkChanged(); + partial void OnAddUserChanging(string value); + partial void OnAddUserChanged(); + partial void OnOperateTimeChanging(System.Nullable value); + partial void OnOperateTimeChanged(); + partial void OnSortChanging(System.Nullable value); + partial void OnSortChanged(); + #endregion + + public Control_PointCropping() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ControlId", DbType="VarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string ControlId + { + get + { + return this._ControlId; + } + set + { + if ((this._ControlId != value)) + { + this.OnControlIdChanging(value); + this.SendPropertyChanging(); + this._ControlId = value; + this.SendPropertyChanged("ControlId"); + this.OnControlIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="VarChar(50)")] + public string ProjectId + { + get + { + return this._ProjectId; + } + set + { + if ((this._ProjectId != value)) + { + this.OnProjectIdChanging(value); + this.SendPropertyChanging(); + this._ProjectId = value; + this.SendPropertyChanged("ProjectId"); + this.OnProjectIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ParentId", DbType="VarChar(50)")] + public string ParentId + { + get + { + return this._ParentId; + } + set + { + if ((this._ParentId != value)) + { + this.OnParentIdChanging(value); + this.SendPropertyChanging(); + this._ParentId = value; + this.SendPropertyChanged("ParentId"); + this.OnParentIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ControlCode", DbType="VarChar(50)")] + public string ControlCode + { + get + { + return this._ControlCode; + } + set + { + if ((this._ControlCode != value)) + { + this.OnControlCodeChanging(value); + this.SendPropertyChanging(); + this._ControlCode = value; + this.SendPropertyChanged("ControlCode"); + this.OnControlCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ControlLevel", DbType="Int")] + public System.Nullable ControlLevel + { + get + { + return this._ControlLevel; + } + set + { + if ((this._ControlLevel != value)) + { + this.OnControlLevelChanging(value); + this.SendPropertyChanging(); + this._ControlLevel = value; + this.SendPropertyChanged("ControlLevel"); + this.OnControlLevelChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanId", DbType="VarChar(50)")] + public string PlanId + { + get + { + return this._PlanId; + } + set + { + if ((this._PlanId != value)) + { + this.OnPlanIdChanging(value); + this.SendPropertyChanging(); + this._PlanId = value; + this.SendPropertyChanged("PlanId"); + this.OnPlanIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanTypeId", DbType="VarChar(50)")] + public string PlanTypeId + { + get + { + return this._PlanTypeId; + } + set + { + if ((this._PlanTypeId != value)) + { + this.OnPlanTypeIdChanging(value); + this.SendPropertyChanging(); + this._PlanTypeId = value; + this.SendPropertyChanged("PlanTypeId"); + this.OnPlanTypeIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubItemsId", DbType="VarChar(50)")] + public string SubItemsId + { + get + { + return this._SubItemsId; + } + set + { + if ((this._SubItemsId != value)) + { + this.OnSubItemsIdChanging(value); + this.SendPropertyChanging(); + this._SubItemsId = value; + this.SendPropertyChanged("SubItemsId"); + this.OnSubItemsIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DetectionItems", DbType="VarChar(1000)")] + public string DetectionItems + { + get + { + return this._DetectionItems; + } + set + { + if ((this._DetectionItems != value)) + { + this.OnDetectionItemsChanging(value); + this.SendPropertyChanging(); + this._DetectionItems = value; + this.SendPropertyChanged("DetectionItems"); + this.OnDetectionItemsChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BasedCriterion", DbType="VarChar(1000)")] + public string BasedCriterion + { + get + { + return this._BasedCriterion; + } + set + { + if ((this._BasedCriterion != value)) + { + this.OnBasedCriterionChanging(value); + this.SendPropertyChanging(); + this._BasedCriterion = value; + this.SendPropertyChanged("BasedCriterion"); + this.OnBasedCriterionChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QualityRecordName", DbType="VarChar(1000)")] + public string QualityRecordName + { + get + { + return this._QualityRecordName; + } + set + { + if ((this._QualityRecordName != value)) + { + this.OnQualityRecordNameChanging(value); + this.SendPropertyChanging(); + this._QualityRecordName = value; + this.SendPropertyChanged("QualityRecordName"); + this.OnQualityRecordNameChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordNumber", DbType="VarChar(1000)")] + public string RecordNumber + { + get + { + return this._RecordNumber; + } + set + { + if ((this._RecordNumber != value)) + { + this.OnRecordNumberChanging(value); + this.SendPropertyChanging(); + this._RecordNumber = value; + this.SendPropertyChanged("RecordNumber"); + this.OnRecordNumberChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Partition", DbType="VarChar(20)")] + public string Partition + { + get + { + return this._Partition; + } + set + { + if ((this._Partition != value)) + { + this.OnPartitionChanging(value); + this.SendPropertyChanging(); + this._Partition = value; + this.SendPropertyChanged("Partition"); + this.OnPartitionChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subcontractors", DbType="VarChar(50)")] + public string Subcontractors + { + get + { + return this._Subcontractors; + } + set + { + if ((this._Subcontractors != value)) + { + this.OnSubcontractorsChanging(value); + this.SendPropertyChanging(); + this._Subcontractors = value; + this.SendPropertyChanged("Subcontractors"); + this.OnSubcontractorsChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FiveRings", DbType="VarChar(50)")] + public string FiveRings + { + get + { + return this._FiveRings; + } + set + { + if ((this._FiveRings != value)) + { + this.OnFiveRingsChanging(value); + this.SendPropertyChanging(); + this._FiveRings = value; + this.SendPropertyChanged("FiveRings"); + this.OnFiveRingsChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Supervision", DbType="VarChar(50)")] + public string Supervision + { + get + { + return this._Supervision; + } + set + { + if ((this._Supervision != value)) + { + this.OnSupervisionChanging(value); + this.SendPropertyChanging(); + this._Supervision = value; + this.SendPropertyChanged("Supervision"); + this.OnSupervisionChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Owner", DbType="VarChar(50)")] + public string Owner + { + get + { + return this._Owner; + } + set + { + if ((this._Owner != value)) + { + this.OnOwnerChanging(value); + this.SendPropertyChanging(); + this._Owner = value; + this.SendPropertyChanged("Owner"); + this.OnOwnerChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(150)")] + public string Remark + { + get + { + return this._Remark; + } + set + { + if ((this._Remark != value)) + { + this.OnRemarkChanging(value); + this.SendPropertyChanging(); + this._Remark = value; + this.SendPropertyChanged("Remark"); + this.OnRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")] + public string AddUser + { + get + { + return this._AddUser; + } + set + { + if ((this._AddUser != value)) + { + this.OnAddUserChanging(value); + this.SendPropertyChanging(); + this._AddUser = value; + this.SendPropertyChanged("AddUser"); + this.OnAddUserChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OperateTime", DbType="DateTime")] + public System.Nullable OperateTime + { + get + { + return this._OperateTime; + } + set + { + if ((this._OperateTime != value)) + { + this.OnOperateTimeChanging(value); + this.SendPropertyChanging(); + this._OperateTime = value; + this.SendPropertyChanged("OperateTime"); + this.OnOperateTimeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort", DbType="Int")] + public System.Nullable Sort + { + get + { + return this._Sort; + } + set + { + if ((this._Sort != value)) + { + this.OnSortChanging(value); + this.SendPropertyChanging(); + this._Sort = value; + this.SendPropertyChanged("Sort"); + this.OnSortChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CostGoods_CostManage")] public partial class CostGoods_CostManage : INotifyPropertyChanging, INotifyPropertyChanged { @@ -275593,7 +276146,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] public string Remark { get @@ -275738,6 +276291,20 @@ namespace Model private string _PropertyTechnologyId; + private System.Nullable _InspectTime; + + private string _AddUser; + + private System.Nullable _AddTime; + + private System.Nullable _IsSiteImplement; + + private System.Nullable _SiteImplementConfirmData; + + private System.Nullable _RecordUploadData; + + private string _SiteImplementUser; + private System.Nullable _SubcontractorAllPassData; private System.Nullable _ContractorAllPassData; @@ -275746,36 +276313,22 @@ namespace Model private System.Nullable _OwnerAllPassData; - private System.Nullable _WanderIsComplete; - private System.Nullable _WanderCompleteData; - private System.Nullable _IsSiteImplement; - - private string _SiteImplementUser; - - private System.Nullable _SiteImplementConfirmData; - - private System.Nullable _RecordUploadData; + private System.Nullable _WanderIsComplete; private System.Nullable _InspectIsClose; - private string _InspectIsCloseUser; - private System.Nullable _InspectCloseData; + private string _InspectIsCloseUser; + private System.Nullable _IsUnifyWanderAbout; private System.Nullable _UnifyWanderAboutData; private string _UnifyWanderAboutOpinion; - private System.Nullable _InspectTime; - - private string _AddUser; - - private System.Nullable _AddTime; - #region 可扩展性方法定义 partial void OnLoaded(); partial void OnValidate(System.Data.Linq.ChangeAction action); @@ -275818,6 +276371,20 @@ namespace Model partial void OnWorkPackTypeChanged(); partial void OnPropertyTechnologyIdChanging(string value); partial void OnPropertyTechnologyIdChanged(); + partial void OnInspectTimeChanging(System.Nullable value); + partial void OnInspectTimeChanged(); + partial void OnAddUserChanging(string value); + partial void OnAddUserChanged(); + partial void OnAddTimeChanging(System.Nullable value); + partial void OnAddTimeChanged(); + partial void OnIsSiteImplementChanging(System.Nullable value); + partial void OnIsSiteImplementChanged(); + partial void OnSiteImplementConfirmDataChanging(System.Nullable value); + partial void OnSiteImplementConfirmDataChanged(); + partial void OnRecordUploadDataChanging(System.Nullable value); + partial void OnRecordUploadDataChanged(); + partial void OnSiteImplementUserChanging(string value); + partial void OnSiteImplementUserChanged(); partial void OnSubcontractorAllPassDataChanging(System.Nullable value); partial void OnSubcontractorAllPassDataChanged(); partial void OnContractorAllPassDataChanging(System.Nullable value); @@ -275826,36 +276393,22 @@ namespace Model partial void OnSupervisionAllPassDataChanged(); partial void OnOwnerAllPassDataChanging(System.Nullable value); partial void OnOwnerAllPassDataChanged(); - partial void OnWanderIsCompleteChanging(System.Nullable value); - partial void OnWanderIsCompleteChanged(); partial void OnWanderCompleteDataChanging(System.Nullable value); partial void OnWanderCompleteDataChanged(); - partial void OnIsSiteImplementChanging(System.Nullable value); - partial void OnIsSiteImplementChanged(); - partial void OnSiteImplementUserChanging(string value); - partial void OnSiteImplementUserChanged(); - partial void OnSiteImplementConfirmDataChanging(System.Nullable value); - partial void OnSiteImplementConfirmDataChanged(); - partial void OnRecordUploadDataChanging(System.Nullable value); - partial void OnRecordUploadDataChanged(); + partial void OnWanderIsCompleteChanging(System.Nullable value); + partial void OnWanderIsCompleteChanged(); partial void OnInspectIsCloseChanging(System.Nullable value); partial void OnInspectIsCloseChanged(); - partial void OnInspectIsCloseUserChanging(string value); - partial void OnInspectIsCloseUserChanged(); partial void OnInspectCloseDataChanging(System.Nullable value); partial void OnInspectCloseDataChanged(); + partial void OnInspectIsCloseUserChanging(string value); + partial void OnInspectIsCloseUserChanged(); partial void OnIsUnifyWanderAboutChanging(System.Nullable value); partial void OnIsUnifyWanderAboutChanged(); partial void OnUnifyWanderAboutDataChanging(System.Nullable value); partial void OnUnifyWanderAboutDataChanged(); partial void OnUnifyWanderAboutOpinionChanging(string value); partial void OnUnifyWanderAboutOpinionChanged(); - partial void OnInspectTimeChanging(System.Nullable value); - partial void OnInspectTimeChanged(); - partial void OnAddUserChanging(string value); - partial void OnAddUserChanged(); - partial void OnAddTimeChanging(System.Nullable value); - partial void OnAddTimeChanged(); #endregion public PreRun_SubInspectTerm() @@ -276243,6 +276796,146 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectTime", DbType="DateTime")] + public System.Nullable InspectTime + { + get + { + return this._InspectTime; + } + set + { + if ((this._InspectTime != value)) + { + this.OnInspectTimeChanging(value); + this.SendPropertyChanging(); + this._InspectTime = value; + this.SendPropertyChanged("InspectTime"); + this.OnInspectTimeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")] + public string AddUser + { + get + { + return this._AddUser; + } + set + { + if ((this._AddUser != value)) + { + this.OnAddUserChanging(value); + this.SendPropertyChanging(); + this._AddUser = value; + this.SendPropertyChanged("AddUser"); + this.OnAddUserChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")] + public System.Nullable AddTime + { + get + { + return this._AddTime; + } + set + { + if ((this._AddTime != value)) + { + this.OnAddTimeChanging(value); + this.SendPropertyChanging(); + this._AddTime = value; + this.SendPropertyChanged("AddTime"); + this.OnAddTimeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSiteImplement", DbType="Int")] + public System.Nullable IsSiteImplement + { + get + { + return this._IsSiteImplement; + } + set + { + if ((this._IsSiteImplement != value)) + { + this.OnIsSiteImplementChanging(value); + this.SendPropertyChanging(); + this._IsSiteImplement = value; + this.SendPropertyChanged("IsSiteImplement"); + this.OnIsSiteImplementChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementConfirmData", DbType="DateTime")] + public System.Nullable SiteImplementConfirmData + { + get + { + return this._SiteImplementConfirmData; + } + set + { + if ((this._SiteImplementConfirmData != value)) + { + this.OnSiteImplementConfirmDataChanging(value); + this.SendPropertyChanging(); + this._SiteImplementConfirmData = value; + this.SendPropertyChanged("SiteImplementConfirmData"); + this.OnSiteImplementConfirmDataChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordUploadData", DbType="DateTime")] + public System.Nullable RecordUploadData + { + get + { + return this._RecordUploadData; + } + set + { + if ((this._RecordUploadData != value)) + { + this.OnRecordUploadDataChanging(value); + this.SendPropertyChanging(); + this._RecordUploadData = value; + this.SendPropertyChanged("RecordUploadData"); + this.OnRecordUploadDataChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementUser", DbType="VarChar(50)")] + public string SiteImplementUser + { + get + { + return this._SiteImplementUser; + } + set + { + if ((this._SiteImplementUser != value)) + { + this.OnSiteImplementUserChanging(value); + this.SendPropertyChanging(); + this._SiteImplementUser = value; + this.SendPropertyChanged("SiteImplementUser"); + this.OnSiteImplementUserChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorAllPassData", DbType="DateTime")] public System.Nullable SubcontractorAllPassData { @@ -276323,26 +277016,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderIsComplete", DbType="Int")] - public System.Nullable WanderIsComplete - { - get - { - return this._WanderIsComplete; - } - set - { - if ((this._WanderIsComplete != value)) - { - this.OnWanderIsCompleteChanging(value); - this.SendPropertyChanging(); - this._WanderIsComplete = value; - this.SendPropertyChanged("WanderIsComplete"); - this.OnWanderIsCompleteChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderCompleteData", DbType="DateTime")] public System.Nullable WanderCompleteData { @@ -276363,82 +277036,22 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSiteImplement", DbType="Int")] - public System.Nullable IsSiteImplement + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderIsComplete", DbType="Int")] + public System.Nullable WanderIsComplete { get { - return this._IsSiteImplement; + return this._WanderIsComplete; } set { - if ((this._IsSiteImplement != value)) + if ((this._WanderIsComplete != value)) { - this.OnIsSiteImplementChanging(value); + this.OnWanderIsCompleteChanging(value); this.SendPropertyChanging(); - this._IsSiteImplement = value; - this.SendPropertyChanged("IsSiteImplement"); - this.OnIsSiteImplementChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementUser", DbType="VarChar(50)")] - public string SiteImplementUser - { - get - { - return this._SiteImplementUser; - } - set - { - if ((this._SiteImplementUser != value)) - { - this.OnSiteImplementUserChanging(value); - this.SendPropertyChanging(); - this._SiteImplementUser = value; - this.SendPropertyChanged("SiteImplementUser"); - this.OnSiteImplementUserChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementConfirmData", DbType="DateTime")] - public System.Nullable SiteImplementConfirmData - { - get - { - return this._SiteImplementConfirmData; - } - set - { - if ((this._SiteImplementConfirmData != value)) - { - this.OnSiteImplementConfirmDataChanging(value); - this.SendPropertyChanging(); - this._SiteImplementConfirmData = value; - this.SendPropertyChanged("SiteImplementConfirmData"); - this.OnSiteImplementConfirmDataChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordUploadData", DbType="DateTime")] - public System.Nullable RecordUploadData - { - get - { - return this._RecordUploadData; - } - set - { - if ((this._RecordUploadData != value)) - { - this.OnRecordUploadDataChanging(value); - this.SendPropertyChanging(); - this._RecordUploadData = value; - this.SendPropertyChanged("RecordUploadData"); - this.OnRecordUploadDataChanged(); + this._WanderIsComplete = value; + this.SendPropertyChanged("WanderIsComplete"); + this.OnWanderIsCompleteChanged(); } } } @@ -276463,26 +277076,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsCloseUser", DbType="VarChar(50)")] - public string InspectIsCloseUser - { - get - { - return this._InspectIsCloseUser; - } - set - { - if ((this._InspectIsCloseUser != value)) - { - this.OnInspectIsCloseUserChanging(value); - this.SendPropertyChanging(); - this._InspectIsCloseUser = value; - this.SendPropertyChanged("InspectIsCloseUser"); - this.OnInspectIsCloseUserChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectCloseData", DbType="DateTime")] public System.Nullable InspectCloseData { @@ -276503,6 +277096,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsCloseUser", DbType="VarChar(50)")] + public string InspectIsCloseUser + { + get + { + return this._InspectIsCloseUser; + } + set + { + if ((this._InspectIsCloseUser != value)) + { + this.OnInspectIsCloseUserChanging(value); + this.SendPropertyChanging(); + this._InspectIsCloseUser = value; + this.SendPropertyChanged("InspectIsCloseUser"); + this.OnInspectIsCloseUserChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUnifyWanderAbout", DbType="Int")] public System.Nullable IsUnifyWanderAbout { @@ -276563,66 +277176,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectTime", DbType="DateTime")] - public System.Nullable InspectTime - { - get - { - return this._InspectTime; - } - set - { - if ((this._InspectTime != value)) - { - this.OnInspectTimeChanging(value); - this.SendPropertyChanging(); - this._InspectTime = value; - this.SendPropertyChanged("InspectTime"); - this.OnInspectTimeChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")] - public string AddUser - { - get - { - return this._AddUser; - } - set - { - if ((this._AddUser != value)) - { - this.OnAddUserChanging(value); - this.SendPropertyChanging(); - this._AddUser = value; - this.SendPropertyChanged("AddUser"); - this.OnAddUserChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")] - public System.Nullable AddTime - { - get - { - return this._AddTime; - } - set - { - if ((this._AddTime != value)) - { - this.OnAddTimeChanging(value); - this.SendPropertyChanging(); - this._AddTime = value; - this.SendPropertyChanged("AddTime"); - this.OnAddTimeChanged(); - } - } - } - public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangedEventHandler PropertyChanged; @@ -278430,8 +278983,6 @@ namespace Model private string _RestrictCondition; - private System.Nullable _ResponsibilityProposeSatate; - private System.Nullable _ResponsibilityConfirm; private System.Nullable _ProposeConfirm; @@ -278442,11 +278993,9 @@ namespace Model private System.Nullable _OwnerConfirm; - private System.Nullable _ProposeConfirmData; - private System.Nullable _ResponsibilityConfirmData; - private System.Nullable _ProposeHandleData; + private System.Nullable _ProposeConfirmData; private System.Nullable _GeneraConfirmData; @@ -278462,6 +279011,10 @@ namespace Model private System.Nullable _Sort; + private System.Nullable _ResponsibilityProposeSatate; + + private System.Nullable _ProposeHandleData; + private string _FourDecisionCode; #region 可扩展性方法定义 @@ -278498,8 +279051,6 @@ namespace Model partial void OnRealityDestructionTimeChanged(); partial void OnRestrictConditionChanging(string value); partial void OnRestrictConditionChanged(); - partial void OnResponsibilityProposeSatateChanging(System.Nullable value); - partial void OnResponsibilityProposeSatateChanged(); partial void OnResponsibilityConfirmChanging(System.Nullable value); partial void OnResponsibilityConfirmChanged(); partial void OnProposeConfirmChanging(System.Nullable value); @@ -278510,12 +279061,10 @@ namespace Model partial void OnSupervisionConfirmChanged(); partial void OnOwnerConfirmChanging(System.Nullable value); partial void OnOwnerConfirmChanged(); - partial void OnProposeConfirmDataChanging(System.Nullable value); - partial void OnProposeConfirmDataChanged(); partial void OnResponsibilityConfirmDataChanging(System.Nullable value); partial void OnResponsibilityConfirmDataChanged(); - partial void OnProposeHandleDataChanging(System.Nullable value); - partial void OnProposeHandleDataChanged(); + partial void OnProposeConfirmDataChanging(System.Nullable value); + partial void OnProposeConfirmDataChanged(); partial void OnGeneraConfirmDataChanging(System.Nullable value); partial void OnGeneraConfirmDataChanged(); partial void OnSupervisionConfirmDataChanging(System.Nullable value); @@ -278530,6 +279079,10 @@ namespace Model partial void OnAddTimeChanged(); partial void OnSortChanging(System.Nullable value); partial void OnSortChanged(); + partial void OnResponsibilityProposeSatateChanging(System.Nullable value); + partial void OnResponsibilityProposeSatateChanged(); + partial void OnProposeHandleDataChanging(System.Nullable value); + partial void OnProposeHandleDataChanged(); partial void OnFourDecisionCodeChanging(string value); partial void OnFourDecisionCodeChanged(); #endregion @@ -278839,26 +279392,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityProposeSatate", DbType="Int")] - public System.Nullable ResponsibilityProposeSatate - { - get - { - return this._ResponsibilityProposeSatate; - } - set - { - if ((this._ResponsibilityProposeSatate != value)) - { - this.OnResponsibilityProposeSatateChanging(value); - this.SendPropertyChanging(); - this._ResponsibilityProposeSatate = value; - this.SendPropertyChanged("ResponsibilityProposeSatate"); - this.OnResponsibilityProposeSatateChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityConfirm", DbType="Int")] public System.Nullable ResponsibilityConfirm { @@ -278959,26 +279492,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeConfirmData", DbType="DateTime")] - public System.Nullable ProposeConfirmData - { - get - { - return this._ProposeConfirmData; - } - set - { - if ((this._ProposeConfirmData != value)) - { - this.OnProposeConfirmDataChanging(value); - this.SendPropertyChanging(); - this._ProposeConfirmData = value; - this.SendPropertyChanged("ProposeConfirmData"); - this.OnProposeConfirmDataChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityConfirmData", DbType="DateTime")] public System.Nullable ResponsibilityConfirmData { @@ -278999,22 +279512,22 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeHandleData", DbType="DateTime")] - public System.Nullable ProposeHandleData + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeConfirmData", DbType="DateTime")] + public System.Nullable ProposeConfirmData { get { - return this._ProposeHandleData; + return this._ProposeConfirmData; } set { - if ((this._ProposeHandleData != value)) + if ((this._ProposeConfirmData != value)) { - this.OnProposeHandleDataChanging(value); + this.OnProposeConfirmDataChanging(value); this.SendPropertyChanging(); - this._ProposeHandleData = value; - this.SendPropertyChanged("ProposeHandleData"); - this.OnProposeHandleDataChanged(); + this._ProposeConfirmData = value; + this.SendPropertyChanged("ProposeConfirmData"); + this.OnProposeConfirmDataChanged(); } } } @@ -279159,6 +279672,46 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityProposeSatate", DbType="Int")] + public System.Nullable ResponsibilityProposeSatate + { + get + { + return this._ResponsibilityProposeSatate; + } + set + { + if ((this._ResponsibilityProposeSatate != value)) + { + this.OnResponsibilityProposeSatateChanging(value); + this.SendPropertyChanging(); + this._ResponsibilityProposeSatate = value; + this.SendPropertyChanged("ResponsibilityProposeSatate"); + this.OnResponsibilityProposeSatateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeHandleData", DbType="DateTime")] + public System.Nullable ProposeHandleData + { + get + { + return this._ProposeHandleData; + } + set + { + if ((this._ProposeHandleData != value)) + { + this.OnProposeHandleDataChanging(value); + this.SendPropertyChanging(); + this._ProposeHandleData = value; + this.SendPropertyChanged("ProposeHandleData"); + this.OnProposeHandleDataChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FourDecisionCode", DbType="VarChar(20)")] public string FourDecisionCode { @@ -279871,7 +280424,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] public string Remark { get diff --git a/SGGL/Model/Model.csproj b/SGGL/Model/Model.csproj index 91949a57..d299c35e 100644 --- a/SGGL/Model/Model.csproj +++ b/SGGL/Model/Model.csproj @@ -10,7 +10,7 @@ Properties Model Model - v4.6.1 + v4.8 512 diff --git a/SGGL/SgManager.AI/SgManager.AI.csproj b/SGGL/SgManager.AI/SgManager.AI.csproj index 83e8a86a..b199a0f9 100644 --- a/SGGL/SgManager.AI/SgManager.AI.csproj +++ b/SGGL/SgManager.AI/SgManager.AI.csproj @@ -9,7 +9,7 @@ Properties SgManager.AI SgManager.AI - v4.6.1 + v4.8 512 diff --git a/SGGL/SgManager.AI/app.config b/SGGL/SgManager.AI/app.config index e936cc13..c764f532 100644 --- a/SGGL/SgManager.AI/app.config +++ b/SGGL/SgManager.AI/app.config @@ -1,11 +1,11 @@ - + - - + + - \ No newline at end of file + diff --git a/SGGL/WebAPI/.vs/WebAPI.csproj.dtbcache.json b/SGGL/WebAPI/.vs/WebAPI.csproj.dtbcache.json index 053d0522..4d11761b 100644 --- a/SGGL/WebAPI/.vs/WebAPI.csproj.dtbcache.json +++ b/SGGL/WebAPI/.vs/WebAPI.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\WebAPI","ProjectFileName":"WebAPI.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"App_Start\\BundleConfig.cs"},{"SourceFile":"App_Start\\FilterConfig.cs"},{"SourceFile":"App_Start\\RouteConfig.cs"},{"SourceFile":"App_Start\\WebApiConfig.cs"},{"SourceFile":"Controllers\\BaseInfoController.cs"},{"SourceFile":"Controllers\\CommonController.cs"},{"SourceFile":"Controllers\\CQMS\\InspectionManagementController.cs"},{"SourceFile":"Controllers\\CQMS\\PerformanceController.cs"},{"SourceFile":"Controllers\\CQMS\\WBSController.cs"},{"SourceFile":"Controllers\\DataSync\\CNCECServerController.cs"},{"SourceFile":"Controllers\\DoorProject\\getController.cs"},{"SourceFile":"Controllers\\DoorProject\\uploadController.cs"},{"SourceFile":"Controllers\\FaceController.cs"},{"SourceFile":"Controllers\\DoorServerController.cs"},{"SourceFile":"Controllers\\HJGL\\GetHJDataController.cs"},{"SourceFile":"Controllers\\HSSE\\GeneralEquipmentQualityController.cs"},{"SourceFile":"Controllers\\HSSE\\HSSELogController.cs"},{"SourceFile":"Controllers\\HSSE\\TestingController.cs"},{"SourceFile":"Controllers\\Person\\PersonCheckController.cs"},{"SourceFile":"Controllers\\CQMS\\CheckEquipmentController.cs"},{"SourceFile":"Controllers\\CQMS\\CheckListController.cs"},{"SourceFile":"Controllers\\CQMS\\CommenInfoController.cs"},{"SourceFile":"Controllers\\CQMS\\ContactController.cs"},{"SourceFile":"Controllers\\CQMS\\CQMSConstructSolutionController.cs"},{"SourceFile":"Controllers\\CQMS\\DesignController.cs"},{"SourceFile":"Controllers\\CQMS\\DrawController.cs"},{"SourceFile":"Controllers\\CQMS\\IndexController.cs"},{"SourceFile":"Controllers\\CQMS\\JointCheckController.cs"},{"SourceFile":"Controllers\\CQMS\\SpotCheckController.cs"},{"SourceFile":"Controllers\\CQMS\\TechnicalContactController.cs"},{"SourceFile":"Controllers\\HJGL\\HotProcessHardController.cs"},{"SourceFile":"Controllers\\HJGL\\NDETrustController.cs"},{"SourceFile":"Controllers\\HJGL\\PipeJointController.cs"},{"SourceFile":"Controllers\\HJGL\\PreWeldingDailyController.cs"},{"SourceFile":"Controllers\\HJGL\\ReportQueryController.cs"},{"SourceFile":"Controllers\\HJGL\\TestPackageController.cs"},{"SourceFile":"Controllers\\HSSE\\ChartAnalysisController.cs"},{"SourceFile":"Controllers\\HSSE\\CheckSpecialController.cs"},{"SourceFile":"Controllers\\HSSE\\ConstructSolutionController.cs"},{"SourceFile":"Controllers\\HSSE\\EmergencyController.cs"},{"SourceFile":"Controllers\\HSSE\\EquipmentQualityController.cs"},{"SourceFile":"Controllers\\HSSE\\HazardListController.cs"},{"SourceFile":"Controllers\\HSSE\\HazardRegisterController.cs"},{"SourceFile":"Controllers\\HSSE\\HSEDiaryController.cs"},{"SourceFile":"Controllers\\HSSE\\HSSEStandardsListController.cs"},{"SourceFile":"Controllers\\HSSE\\IncentiveNoticeController.cs"},{"SourceFile":"Controllers\\HSSE\\LawManageRuleController.cs"},{"SourceFile":"Controllers\\HSSE\\LawRegulationListController.cs"},{"SourceFile":"Controllers\\HSSE\\LawRulesRegulationsController.cs"},{"SourceFile":"Controllers\\HSSE\\LicenseController.cs"},{"SourceFile":"Controllers\\HSSE\\MeetingController.cs"},{"SourceFile":"Controllers\\HSSE\\PageDataController.cs"},{"SourceFile":"Controllers\\HSSE\\PauseNoticeController.cs"},{"SourceFile":"Controllers\\HSSE\\PersonQualityController.cs"},{"SourceFile":"Controllers\\HSSE\\PunishNoticeController.cs"},{"SourceFile":"Controllers\\HSSE\\ReceiveFileManagerController.cs"},{"SourceFile":"Controllers\\HSSE\\RectifyNoticesController.cs"},{"SourceFile":"Controllers\\HSSE\\ResourcesController.cs"},{"SourceFile":"Controllers\\HSSE\\SeDinMonthReportController.cs"},{"SourceFile":"Controllers\\HSSE\\ServerTestPlanController.cs"},{"SourceFile":"Controllers\\HSSE\\ServerTestRecordController.cs"},{"SourceFile":"Controllers\\HSSE\\TestPlanController.cs"},{"SourceFile":"Controllers\\HSSE\\TestRecordController.cs"},{"SourceFile":"Controllers\\HSSE\\TrainingPlanController.cs"},{"SourceFile":"Controllers\\HSSE\\TrainingTaskController.cs"},{"SourceFile":"Controllers\\HSSE\\TrainRecordController.cs"},{"SourceFile":"Controllers\\IDCardController.cs"},{"SourceFile":"Controllers\\FileUploadController.cs"},{"SourceFile":"Controllers\\HomeController.cs"},{"SourceFile":"Controllers\\PersonController.cs"},{"SourceFile":"Controllers\\ProjectController.cs"},{"SourceFile":"Controllers\\ToDoItemController.cs"},{"SourceFile":"Controllers\\UnitController.cs"},{"SourceFile":"Controllers\\UserController.cs"},{"SourceFile":"Controllers\\VideoController.cs"},{"SourceFile":"Filter\\TestPermissionAttribute.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Antlr.3.5.0.2\\lib\\Antlr3.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\\lib\\net45\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.Web.Infrastructure.1.0.0.0\\lib\\net40\\Microsoft.Web.Infrastructure.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Newtonsoft.Json.12.0.1\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ComponentModel.DataAnnotations.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 (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.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.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.Client.5.2.7\\lib\\net45\\System.Net.Http.Formatting.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.Http.WebRequest.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.Web.Abstractions.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.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Cors.5.2.7\\lib\\net45\\System.Web.Cors.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.Web.DynamicData.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.Entity.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.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.Helpers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.Cors.5.2.7\\lib\\net45\\System.Web.Http.Cors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.Core.5.2.7\\lib\\net45\\System.Web.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.WebHost.5.2.4\\lib\\net45\\System.Web.Http.WebHost.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Mvc.5.2.4\\lib\\net45\\System.Web.Mvc.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Web.Optimization.1.1.3\\lib\\net40\\System.Web.Optimization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Razor.3.2.4\\lib\\net45\\System.Web.Razor.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.Routing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.WebPages.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.WebPages.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.WebPages.Razor.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":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\WebGrease.1.6.0\\lib\\WebGrease.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\WebAPI\\bin\\WebAPI.dll","OutputItemRelativePath":"WebAPI.dll"},{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\WebAPI\\bin\\WebAPI.pdb","OutputItemRelativePath":"WebAPI.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\WebAPI","ProjectFileName":"WebAPI.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"App_Start\\BundleConfig.cs"},{"SourceFile":"App_Start\\FilterConfig.cs"},{"SourceFile":"App_Start\\RouteConfig.cs"},{"SourceFile":"App_Start\\WebApiConfig.cs"},{"SourceFile":"Controllers\\BaseInfoController.cs"},{"SourceFile":"Controllers\\CommonController.cs"},{"SourceFile":"Controllers\\CQMS\\InspectionManagementController.cs"},{"SourceFile":"Controllers\\CQMS\\PerformanceController.cs"},{"SourceFile":"Controllers\\CQMS\\WBSController.cs"},{"SourceFile":"Controllers\\DataSync\\CNCECServerController.cs"},{"SourceFile":"Controllers\\DoorProject\\getController.cs"},{"SourceFile":"Controllers\\DoorProject\\uploadController.cs"},{"SourceFile":"Controllers\\FaceController.cs"},{"SourceFile":"Controllers\\DoorServerController.cs"},{"SourceFile":"Controllers\\HJGL\\GetHJDataController.cs"},{"SourceFile":"Controllers\\HSSE\\GeneralEquipmentQualityController.cs"},{"SourceFile":"Controllers\\HSSE\\HSSELogController.cs"},{"SourceFile":"Controllers\\HSSE\\TestingController.cs"},{"SourceFile":"Controllers\\Person\\PersonCheckController.cs"},{"SourceFile":"Controllers\\CQMS\\CheckEquipmentController.cs"},{"SourceFile":"Controllers\\CQMS\\CheckListController.cs"},{"SourceFile":"Controllers\\CQMS\\CommenInfoController.cs"},{"SourceFile":"Controllers\\CQMS\\ContactController.cs"},{"SourceFile":"Controllers\\CQMS\\CQMSConstructSolutionController.cs"},{"SourceFile":"Controllers\\CQMS\\DesignController.cs"},{"SourceFile":"Controllers\\CQMS\\DrawController.cs"},{"SourceFile":"Controllers\\CQMS\\IndexController.cs"},{"SourceFile":"Controllers\\CQMS\\JointCheckController.cs"},{"SourceFile":"Controllers\\CQMS\\SpotCheckController.cs"},{"SourceFile":"Controllers\\CQMS\\TechnicalContactController.cs"},{"SourceFile":"Controllers\\HJGL\\HotProcessHardController.cs"},{"SourceFile":"Controllers\\HJGL\\NDETrustController.cs"},{"SourceFile":"Controllers\\HJGL\\PipeJointController.cs"},{"SourceFile":"Controllers\\HJGL\\PreWeldingDailyController.cs"},{"SourceFile":"Controllers\\HJGL\\ReportQueryController.cs"},{"SourceFile":"Controllers\\HJGL\\TestPackageController.cs"},{"SourceFile":"Controllers\\HSSE\\ChartAnalysisController.cs"},{"SourceFile":"Controllers\\HSSE\\CheckSpecialController.cs"},{"SourceFile":"Controllers\\HSSE\\ConstructSolutionController.cs"},{"SourceFile":"Controllers\\HSSE\\EmergencyController.cs"},{"SourceFile":"Controllers\\HSSE\\EquipmentQualityController.cs"},{"SourceFile":"Controllers\\HSSE\\HazardListController.cs"},{"SourceFile":"Controllers\\HSSE\\HazardRegisterController.cs"},{"SourceFile":"Controllers\\HSSE\\HSEDiaryController.cs"},{"SourceFile":"Controllers\\HSSE\\HSSEStandardsListController.cs"},{"SourceFile":"Controllers\\HSSE\\IncentiveNoticeController.cs"},{"SourceFile":"Controllers\\HSSE\\LawManageRuleController.cs"},{"SourceFile":"Controllers\\HSSE\\LawRegulationListController.cs"},{"SourceFile":"Controllers\\HSSE\\LawRulesRegulationsController.cs"},{"SourceFile":"Controllers\\HSSE\\LicenseController.cs"},{"SourceFile":"Controllers\\HSSE\\MeetingController.cs"},{"SourceFile":"Controllers\\HSSE\\PageDataController.cs"},{"SourceFile":"Controllers\\HSSE\\PauseNoticeController.cs"},{"SourceFile":"Controllers\\HSSE\\PersonQualityController.cs"},{"SourceFile":"Controllers\\HSSE\\PunishNoticeController.cs"},{"SourceFile":"Controllers\\HSSE\\ReceiveFileManagerController.cs"},{"SourceFile":"Controllers\\HSSE\\RectifyNoticesController.cs"},{"SourceFile":"Controllers\\HSSE\\ResourcesController.cs"},{"SourceFile":"Controllers\\HSSE\\SeDinMonthReportController.cs"},{"SourceFile":"Controllers\\HSSE\\ServerTestPlanController.cs"},{"SourceFile":"Controllers\\HSSE\\ServerTestRecordController.cs"},{"SourceFile":"Controllers\\HSSE\\TestPlanController.cs"},{"SourceFile":"Controllers\\HSSE\\TestRecordController.cs"},{"SourceFile":"Controllers\\HSSE\\TrainingPlanController.cs"},{"SourceFile":"Controllers\\HSSE\\TrainingTaskController.cs"},{"SourceFile":"Controllers\\HSSE\\TrainRecordController.cs"},{"SourceFile":"Controllers\\IDCardController.cs"},{"SourceFile":"Controllers\\FileUploadController.cs"},{"SourceFile":"Controllers\\HomeController.cs"},{"SourceFile":"Controllers\\PersonController.cs"},{"SourceFile":"Controllers\\ProjectController.cs"},{"SourceFile":"Controllers\\TestRun\\DriverRunController.cs"},{"SourceFile":"Controllers\\ToDoItemController.cs"},{"SourceFile":"Controllers\\UnitController.cs"},{"SourceFile":"Controllers\\UserController.cs"},{"SourceFile":"Controllers\\VideoController.cs"},{"SourceFile":"Filter\\TestPermissionAttribute.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Antlr.3.5.0.2\\lib\\Antlr3.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\\lib\\net45\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.Web.Infrastructure.1.0.0.0\\lib\\net40\\Microsoft.Web.Infrastructure.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Newtonsoft.Json.12.0.1\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.Client.5.2.7\\lib\\net45\\System.Net.Http.Formatting.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Net.Http.WebRequest.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\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.8\\System.Web.Abstractions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Cors.5.2.7\\lib\\net45\\System.Web.Cors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.Helpers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.Cors.5.2.7\\lib\\net45\\System.Web.Http.Cors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.Core.5.2.7\\lib\\net45\\System.Web.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebApi.WebHost.5.2.4\\lib\\net45\\System.Web.Http.WebHost.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Mvc.5.2.4\\lib\\net45\\System.Web.Mvc.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Web.Optimization.1.1.3\\lib\\net40\\System.Web.Optimization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.Razor.3.2.4\\lib\\net45\\System.Web.Razor.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.Routing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.WebPages.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.WebPages.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Microsoft.AspNet.WebPages.3.2.4\\lib\\net45\\System.Web.WebPages.Razor.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\WebGrease.1.6.0\\lib\\WebGrease.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\WebAPI\\bin\\WebAPI.dll","OutputItemRelativePath":"WebAPI.dll"},{"OutputItemFullPath":"C:\\诺比达\\五环项目\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\WebAPI\\bin\\WebAPI.pdb","OutputItemRelativePath":"WebAPI.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SGGL/WebAPI/Web.config b/SGGL/WebAPI/Web.config index b5114d3e..ea8551ae 100644 --- a/SGGL/WebAPI/Web.config +++ b/SGGL/WebAPI/Web.config @@ -46,7 +46,7 @@ --> - + diff --git a/SGGL/WebAPI/WebAPI.csproj b/SGGL/WebAPI/WebAPI.csproj index d162082b..bfa5ddb0 100644 --- a/SGGL/WebAPI/WebAPI.csproj +++ b/SGGL/WebAPI/WebAPI.csproj @@ -14,7 +14,7 @@ Properties WebAPI WebAPI - v4.6.1 + v4.8 false true diff --git a/SGGL/WebAPI/WebAPI.csproj.user b/SGGL/WebAPI/WebAPI.csproj.user index 5fe155da..5108706c 100644 --- a/SGGL/WebAPI/WebAPI.csproj.user +++ b/SGGL/WebAPI/WebAPI.csproj.user @@ -39,7 +39,7 @@ True - True + False From d49e6ba2a56e8c480e3f0af7407925769c81c7d3 Mon Sep 17 00:00:00 2001 From: wangqing <945983254@qq.com> Date: Tue, 14 May 2024 23:31:55 +0800 Subject: [PATCH 3/7] 1 --- SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 2849b8fd..4eca2a70 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -18815,7 +18815,7 @@ - + From aaa563448c4fe5a3d1750defb316efe0c9d6730a Mon Sep 17 00:00:00 2001 From: wangqing <945983254@qq.com> Date: Tue, 14 May 2024 23:34:27 +0800 Subject: [PATCH 4/7] 1 --- DataBase/版本日志/SGGLDB_WH_2024-05-14-wq.sql | 946 ++++++++++++++++++ SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 2 +- SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user | 28 +- 3 files changed, 949 insertions(+), 27 deletions(-) create mode 100644 DataBase/版本日志/SGGLDB_WH_2024-05-14-wq.sql diff --git a/DataBase/版本日志/SGGLDB_WH_2024-05-14-wq.sql b/DataBase/版本日志/SGGLDB_WH_2024-05-14-wq.sql new file mode 100644 index 00000000..a2710ff6 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_WH_2024-05-14-wq.sql @@ -0,0 +1,946 @@ +delete Sys_Menu where MenuId='1025D812-2325-4FE9-A1E9-D53F2CAACDC6' +INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Icon,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)VALUES('1025D812-2325-4FE9-A1E9-D53F2CAACDC6','ֳƵü()',null,'CQMS/WBS/Control/PointCropping.aspx',1,'3B322232-38A1-4291-9832-CD4A01C2A975','Menu_CQMS',0,1,1) + +--==WBSƵü +if object_id(N'Control_PointCropping',N'U') is not null +drop table dbo.Control_PointCropping +CREATE TABLE dbo.Control_PointCropping( + ControlId varchar(50) NOT NULL,-- + ProjectId varchar(50) NULL,--Ŀ + ParentId varchar (50) NULL,--ϼ + ControlCode varchar(50) NULL,-- + ControlLevel int NULL,--1:ƻ2:ƻ3: + PlanId varchar(50) NULL,--ƻ(ֶ) + PlanTypeId varchar(50) NULL,--ƻ(ֶ) + SubItemsId varchar(50) NULL,--(ֶ) + DetectionItems varchar(1000) NULL,--Ƶ顢 + BasedCriterion varchar(1000) NULL,--ִݻ׼ + QualityRecordName varchar(1000) NULL,--¼ + RecordNumber varchar(1000) NULL,--¼ʽı + Partition varchar(20) NULL,-- + Subcontractors varchar(50) NULL,--ְ + FiveRings varchar(50) NULL,--廷 + Supervision varchar(50) NULL,-- + Owner varchar(50) NULL,--ҵ + Remark nvarchar(150) NULL,--ע + AddUser varchar(50) NULL,-- + OperateTime datetime NULL,-- + Sort int NULL,-- + CONSTRAINT [PK_Control_PointCropping] PRIMARY KEY CLUSTERED +( + [ControlId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +truncate table Control_PointCropping +go +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'002E7DEF-C153-4F69-B2CD-54B2F67F6FE9', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'002E7DEF-C153-4F69-B2CD-54B2F67F6FE9', N'¥', N'GB50209-2010', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 365) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'00BFD68A-FAD7-421B-8BE8-7FB0587A01A1', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'00BFD68A-FAD7-421B-8BE8-7FB0587A01A1', N'λDZ', N'GB 50093-2013 +SH/T 3521-2013', N'λDZУ¼', N'SH/T 3543G604', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 663) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'00D3239F-05C7-4707-B753-7F478A78600E', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'00D3239F-05C7-4707-B753-7F478A78600E', N'װ', N'װðװʩչ淶GB50172-2012', N'ֱϵͳϣupsװ¼', N'SH/T 3503J510', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 55) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'024453CD-7351-4EFD-A8D3-EBD46951CC10', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.5.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'024453CD-7351-4EFD-A8D3-EBD46951CC10', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 323) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'02F55AE0-BF6A-4CC3-898A-92764863B77D', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'02F55AE0-BF6A-4CC3-898A-92764863B77D', N'ӵػ㰲װ', NULL, NULL, NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 124) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0304A83B-406C-4F6D-9817-05D37673DFE8', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'0304A83B-406C-4F6D-9817-05D37673DFE8', N'ķˮ', N'GB50207-2012', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 457) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0316C647-05AB-4892-98AE-75E01F407A19', N'', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'6.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'0316C647-05AB-4892-98AE-75E01F407A19', N'ѹ©', N'GB 50093-2013 +SH/T 3521-2013', N'DZܵѹ¼ +DZܵй©/նȷ¼', N'SH/T 3503J603 SH/T 3503J604', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 673) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'032F588D-B766-4638-A0A4-EDA279B6F805', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'032F588D-B766-4638-A0A4-EDA279B6F805', N'ܼװ', N'GB50243-2016', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 513) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0429C39F-BF2E-4866-BD76-C610259C6195', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'0429C39F-BF2E-4866-BD76-C610259C6195', N'Ե', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'Ե/У¼', N'SH/T 3543G123', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 8) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0452E377-A8F6-400E-9702-34F331FB2AD9', N'', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'5.1', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'0452E377-A8F6-400E-9702-34F331FB2AD9', N'豸Ӽ', N'GB 50126-2008', N'ȹռ¼', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 243) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'049E0567-E64F-49B0-8038-DE9E3CB4C9DE', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'049E0567-E64F-49B0-8038-DE9E3CB4C9DE', N'㴦', NULL, N'ϸ֤鱨', NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 275) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'04AB623C-6920-4EF2-BCE4-7E110DB4975A', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'04AB623C-6920-4EF2-BCE4-7E110DB4975A', N'DZУ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 38) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'055B3D3C-35AA-4449-9A23-90D099467700', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'055B3D3C-35AA-4449-9A23-90D099467700', N'Ԥƹλཬ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 315) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0562DC91-5376-427E-93B3-5F8DD5DBEE11', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'0562DC91-5376-427E-93B3-5F8DD5DBEE11', N'һ㹹', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 334) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'058EEBC7-DE91-4C6A-B1CB-1F3E83F878A1', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.5', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'058EEBC7-DE91-4C6A-B1CB-1F3E83F878A1', N'ཬǰ', N'GB 50461-2008', N'μ¼', N'SH/T 3503J113', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 206) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'05F5C999-2987-474A-9FC5-6A0193055128', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'05F5C999-2987-474A-9FC5-6A0193055128', N'', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'ѹ¼ ', N'SH/T 3543G504', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 14) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'061D9215-F303-4867-9293-B7464AD4B5DE', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'6', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'', N'()ӵװ', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 73) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'062636CA-C19D-42EF-8469-6F1302B607F6', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'062636CA-C19D-42EF-8469-6F1302B607F6', N'뿪ؼװ', N'װðװ̸ѹʩչ淶GB50147-2010', N'뿪ؼװ', N'SH/T 3543G523', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 20) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'066F85C6-7675-4514-A2A3-AC2639C5E73D', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'066F85C6-7675-4514-A2A3-AC2639C5E73D', N'()䰲װ', N'GB 50093-2013 +SH/T 3521-2013', N'ֳDZװ¼', N'SH/T 3543G620', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 632) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'06CCDE1D-0F16-4DF6-8CA9-DE12A77F7BCF', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'06CCDE1D-0F16-4DF6-8CA9-DE12A77F7BCF', N'λƲDZ', N'GB 50093-2013 +SH/T 3521-2013', N'λơDZУ¼', N'SH/T 3543G608', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 664) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'06F19285-EE0F-44D8-A500-FF9C95BEC5AD', N'', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'4.5', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'06F19285-EE0F-44D8-A500-FF9C95BEC5AD', N'Ե', N'GB 50727-2011', N'ռ¼ ', N'SH/T 3503J118', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 239) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'06F405B1-311C-431D-B46F-29F33FA33700', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'06F405B1-311C-431D-B46F-29F33FA33700', N'ܰװ', NULL, N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 107) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'07585E82-AC58-4670-8E97-F798BF2D0AAB', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.11', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'07585E82-AC58-4670-8E97-F798BF2D0AAB', N'ܿڲǿȦ', N'GB 50128-2014', N'ʽԲͲδ޿ײǿȦ', N'SH/T 3503J333-2', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 584) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'079DCE60-F53B-44C9-A6D2-391971363866', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'079DCE60-F53B-44C9-A6D2-391971363866', N'ӵ尲װ', N'װðװ̽ӵװʩչ淶GB50169-2016', N'ι̼¼ ', N'SH/T 3503J112', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 75) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'083201EF-21DF-4467-AFF3-B1E7A7F0BF29', N'', N'A698C11C-A082-4775-A237-37899754160E', N'8.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'A698C11C-A082-4775-A237-37899754160E', N'083201EF-21DF-4467-AFF3-B1E7A7F0BF29', N'Ե', N'GB 50093-2013 +SH/T 3521-2013', N'ռ¼', N'SH/T 3503J118', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 690) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'084FF2DF-3FB7-4770-B54D-D6443C3F1821', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.11', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'084FF2DF-3FB7-4770-B54D-D6443C3F1821', N'ʽѹװ', N'GB 50231-2009', N'ۼ϶¼ +ߴֱȼ¼ +߼϶¼ +ʮͷ뻬϶¼ +װ¼ +Ϻ϶¼ +Բܼ϶¼ +װ¼ +϶¼', N'SH/T 3543G331 +SH/T 3543G332 +SH/T 3543G333 +SH/T 3543G334/5 +SH/T 3543G336 +SH/T 3543G340 +SH/T 3543G338 +SH/T 3543G339 +SH/T 3543G337', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 184) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'090A5FBA-725D-4038-9498-36243AA2FE26', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.13', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'090A5FBA-725D-4038-9498-36243AA2FE26', N'ŵ', N'װðװʩչ淶GB50172-2012', N'سŵ¼һ +سŵ¼', N'SH/T 3543G524-1 +SH/T 3543G524-1', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 57) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'09EC9228-8891-424A-A1BF-8F4D2ACA7622', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.3.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'09EC9228-8891-424A-A1BF-8F4D2ACA7622', N'ķˮ', NULL, N'ķˮռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 463) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0A780F12-F28C-4C35-9D85-6DE9A39DE346', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.6', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'0A780F12-F28C-4C35-9D85-6DE9A39DE346', N'λһιཬ', N'GB 50275-2010', NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 179) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0AB4FE9A-31E4-4AEC-A330-72F40E329215', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.6', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'0AB4FE9A-31E4-4AEC-A330-72F40E329215', N'ػװ', N'GB 50278-2010', N'ػװ¼', N'SH/T 3543-G802~811', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 197) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0AE81DB6-13B0-4327-84E4-B12CAE5C41F2', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'0AE81DB6-13B0-4327-84E4-B12CAE5C41F2', N'װλߡ̶', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 521) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0AEE10B5-54CB-413E-8FC5-725CE155FC50', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.1', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'0AEE10B5-54CB-413E-8FC5-725CE155FC50', N'', N'GB 50094-2010', N'ǰ塢֧鱨 +δԤƼ¼ +֤ļһ', N'SH/T 3503-J702 +SH/T 3503-J703J704J705 +SH/T 3503-J132-1', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 588) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0B363362-2AB8-4EA9-BA00-DBF814968247', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'0B363362-2AB8-4EA9-BA00-DBF814968247', N'Ϳˢÿȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 483) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0C1BDD8F-45B3-42F9-9A51-1CC175B0D321', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.8', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'0C1BDD8F-45B3-42F9-9A51-1CC175B0D321', N'ϴװҪ', N'GB 50275-2010', N'켰װ¼ +װȷϼ¼', N'SH/T 3543G301 +SH/T 3503J305', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 165) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0C434B32-161F-42C5-A938-24DCD9350CD7', N'', N'53A99896-E494-4474-AC1F-0186263C3481', N'4.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'53A99896-E494-4474-AC1F-0186263C3481', N'0C434B32-161F-42C5-A938-24DCD9350CD7', N'DZ', N'GB 50093-2013 +SH/T 3521-2013', N'͵ָʾǵУ¼ֱʽѹơ¶ȼƣ', N'SH/T 3543G605', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 658) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0C66A470-EF87-42EB-B921-72A8C53DB183', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'0C66A470-EF87-42EB-B921-72A8C53DB183', N'͸ְװ', NULL, N'̡͸ְװռ¼', N'SH/T 3503J502', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 18) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0CD7A115-1218-453F-AC95-C8F03B0801D5', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'0CD7A115-1218-453F-AC95-C8F03B0801D5', N'͸ְװ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̡͸ְװռ¼', N'SH/T 3503J502', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 47) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0D37DCC8-4969-4B0E-A413-C559C6A2B109', N'', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'4.5', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'0D37DCC8-4969-4B0E-A413-C559C6A2B109', N'Ե', N'GB 50726-2023', N'Ե𻨼ⱨ ', N'SH/T 3503J120', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 608) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0D9BAA48-8D0B-4354-A1FF-8BAF40280AEF', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.6', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'0D9BAA48-8D0B-4354-A1FF-8BAF40280AEF', N'֧', N'GB 50094-2010', N'δ֧¼', N'SH/T 3503-J708', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 593) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0E50B7D0-93F3-43D6-BB1F-CF828383621E', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.6.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'0E50B7D0-93F3-43D6-BB1F-CF828383621E', N'һ㺸캸', N'GB50205-2020', N'ֽṹ(װ)ӹ̼ռ¼', NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 329) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0EDD444F-8945-4DE3-AA12-6CC57F3AF264', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'0EDD444F-8945-4DE3-AA12-6CC57F3AF264', N'', N'GB50204-2015', N'(ԭϼϱʩ)( I )(II) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 279) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0EF2EED1-029A-4984-9697-87937EB2C060', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'0EF2EED1-029A-4984-9697-87937EB2C060', N'䰲װ', N'ʩչ淶 GB50303-2015', N'ֳ/䰲װ¼', N'SH/T 3543G527', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 105) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0F40A751-E57B-4173-8D60-6AE81436EF56', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.6.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'0F40A751-E57B-4173-8D60-6AE81436EF56', N'ˢ()', NULL, N'ˮͿͿռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 421) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'7', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'', N'¹', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 86) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'', N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2', 2, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'', N'ֶ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 213) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1204397F-63BA-4F28-AEF7-0B3BB46EB288', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'1204397F-63BA-4F28-AEF7-0B3BB46EB288', N'߰װ', N'GB50242-2002', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 502) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'122F540B-FD48-4256-BD96-2F60C1C52A97', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'122F540B-FD48-4256-BD96-2F60C1C52A97', N'豸Ϻ˶', NULL, N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 133) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'12767A8F-5DEE-4A56-BF82-6A538784A4F2', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'12767A8F-5DEE-4A56-BF82-6A538784A4F2', N'֧ܰװ', N'GB 50093-2013 +SH/T 3521-2013', N'²/żܰװ¼', N'SH/T 3543G615', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 677) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'12BC9E9A-2CC6-45BB-9183-4C60DF3C1B0A', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'12BC9E9A-2CC6-45BB-9183-4C60DF3C1B0A', N'', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 426) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1381C832-8446-4591-B061-C14AA3CB04C5', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'1381C832-8446-4591-B061-C14AA3CB04C5', N'Сĸ߰װ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̣װ¼', N'SH/T 3503J509', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 34) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'13E0DDF7-955B-4EFC-9037-E4ED60F2B17A', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'13E0DDF7-955B-4EFC-9037-E4ED60F2B17A', N'Ҫ֧ģǿȡնȡȶԡ֧ŵ', N'GB50204-2015', N'ģ(װԤƹ)(I)(II)(III) ռ¼', N'O10601 +20101', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 286) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'142115B7-093C-483F-90D2-CFA39C88D365', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'142115B7-093C-483F-90D2-CFA39C88D365', N'ܷ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̣װ¼', N'SH/T 3503J509', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 40) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'144AAA39-70A1-4196-9AC1-D0ADCB69B1B3', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'144AAA39-70A1-4196-9AC1-D0ADCB69B1B3', N'', N'װðװ̵·ʩչ淶GB50168-2006', N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 65) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'15212F4B-3879-4357-B53A-62B836843B89', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'15212F4B-3879-4357-B53A-62B836843B89', N'Կȼ', N'GB50204-2015', N'ȼ¼', NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 302) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'15EEB12D-05E5-4D40-BB19-875D443A5988', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'15EEB12D-05E5-4D40-BB19-875D443A5988', N'·װ', N'װðװ̸ѹʩչ淶GB50147-2010', N'·װ', N'SH/T 3543G522', N'C/CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 21) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'16A85A3E-B10A-449A-A6A8-A530C00574F4', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'16A85A3E-B10A-449A-A6A8-A530C00574F4', N'ԭϼ', N'GB50243-2016', N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 510) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1714E22D-3442-431B-8466-8BBBDC765280', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.8', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'1714E22D-3442-431B-8466-8BBBDC765280', N'⣨졢ĸı棩', N'GB 50094-2010', N'¼RT/UT/MT/PT', N'SH/T 3543-G124/G125/G126/G127', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 595) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'172E9026-D962-4F69-9173-17EC6A10BC27', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'172E9026-D962-4F69-9173-17EC6A10BC27', N'·', N'GB 50093-2013 +SH/T 3521-2013', N'ֳDZװ¼', N'SH/T 3543G620', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 635) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1766334C-258F-4653-8B48-0F0D877E9C66', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1766334C-258F-4653-8B48-0F0D877E9C66', N'ֽ', N'GB50204-2015', N'ֽ(ӹװ)ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 278) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'17B3C49D-C99A-4357-B346-41FF1B0041E6', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.5.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'17B3C49D-C99A-4357-B346-41FF1B0041E6', N'ԭϼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 409) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'17DE1C9C-76F2-4844-BE59-FECBB730A92B', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'17DE1C9C-76F2-4844-BE59-FECBB730A92B', N'豸', N'GB 50093-2013 +SH/T 3521-2013', N'¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 645) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'17EDC730-B4EF-45D2-B82E-0E0B4741614B', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'17EDC730-B4EF-45D2-B82E-0E0B4741614B', N'ɢϱ²ȡ¶ȼѹʵ̶ȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 453) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1801B771-778E-4F62-B151-BF9EDF1A5A95', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'1801B771-778E-4F62-B151-BF9EDF1A5A95', N'()', N'GB50207-2012', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 449) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1819A5A1-A292-43E1-86F3-B682C0C1BA4F', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'1819A5A1-A292-43E1-86F3-B682C0C1BA4F', N'ϽŴװ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 389) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'18F00D80-1CCB-472A-AC73-A8A034A0AB95', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.5', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'18F00D80-1CCB-472A-AC73-A8A034A0AB95', N'λƽһιཬ', N'GB 50231-2009', NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 162) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'19219F43-003F-4894-A5D3-1A0AFF719D67', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'19219F43-003F-4894-A5D3-1A0AFF719D67', N'߰װ', NULL, N'װ¼', N'SH/T 3543G525', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 109) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1976826D-EA05-40EE-BAB3-17916F2035B4', N'', N'A698C11C-A082-4775-A237-37899754160E', N'8.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'A698C11C-A082-4775-A237-37899754160E', N'1976826D-EA05-40EE-BAB3-17916F2035B4', N'ϽӼ', N'GB 50093-2013 +SH/T 3521-2013', N'ռ¼', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 687) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'19BDE9E1-CD7B-45FE-9B7D-7A41009ECDD5', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.15', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'19BDE9E1-CD7B-45FE-9B7D-7A41009ECDD5', N'Գ', N'GB 50275-2010', N'Գȷϼ¼', N'SH/T 3503J307', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 188) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'', N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'2', 2, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 587) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1A81E7CE-A27E-4158-A1D5-FEE894363F25', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'1A81E7CE-A27E-4158-A1D5-FEE894363F25', N'ָ졢ˮߡ̨ڼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 399) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1B53BAD8-95BD-4B70-B799-28A0B735A49A', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.14', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'1B53BAD8-95BD-4B70-B799-28A0B735A49A', N'װü', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 129) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1C158E0D-63D4-4ADA-933C-695C7AC9C806', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'1C158E0D-63D4-4ADA-933C-695C7AC9C806', N'ˮܵǰ', NULL, N'ι̼¼', N'J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 499) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1C5BD47C-F9D0-40E9-BE73-74E4BE1321C8', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.2.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'1C5BD47C-F9D0-40E9-BE73-74E4BE1321C8', N'ֽǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 296) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1C5C33E3-4DCC-486F-BE03-9234E162342D', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'1C5C33E3-4DCC-486F-BE03-9234E162342D', N'װװ޷ֲ', NULL, N'װװ޷ֲռ¼', NULL, N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 440) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1C7E8133-B928-4232-A931-278C64939789', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'1C7E8133-B928-4232-A931-278C64939789', N'װĨ', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 401) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1C7FD275-3C74-41AF-B9F6-FED77BE39FF9', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.9.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'1C7FD275-3C74-41AF-B9F6-FED77BE39FF9', N'弰ľǼܷ', NULL, N'尲װռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 439) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1CA6C7EF-ABB3-43AF-9A55-ED36A7C1CF20', N'', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'6.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'1CA6C7EF-ABB3-43AF-9A55-ED36A7C1CF20', N'֧ܰװ', N'GB 50093-2013 +SH/T 3521-2013', N'ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 670) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1CACB945-BD69-4D64-8C74-E3C43F5F2B82', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'1CACB945-BD69-4D64-8C74-E3C43F5F2B82', N'ܵǰ', NULL, N'ߡѹعװ¼', N'SH/T 3503J508', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 26) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1D71853A-13F9-432F-B2FA-F12157AFD69F', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'1D71853A-13F9-432F-B2FA-F12157AFD69F', N'Ԫװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 119) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1D7CDB9B-F008-4020-820F-35592B462E99', N'', N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'5', 2, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'', N'ʩ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 610) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1DA294A6-F549-4029-9402-F84CAD5DA844', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'1DA294A6-F549-4029-9402-F84CAD5DA844', N'שʯ', N'GB50203-2011', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 318) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1DE226CB-E70D-49B2-9647-8E5AF15EECA0', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'1DE226CB-E70D-49B2-9647-8E5AF15EECA0', N'', N'װðװ̵豸ձ׼GB50150-2016', N'綯¼ +ֱ綯¼', N'SH/T 3543G502 +SH/T 3543G503', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 67) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1DED6D92-9744-412C-BA30-1364A1C92CB7', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'1DED6D92-9744-412C-BA30-1364A1C92CB7', N'ϲ()', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 373) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1DEFF6D1-C54F-4399-BFCD-FC8923555501', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'1DEFF6D1-C54F-4399-BFCD-FC8923555501', N'ͨѶֻװ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 140) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'', N'', N'0', 1, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'', N'', N'DZ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 617) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'1F7D6516-1C18-4C34-A2AD-960A3590A353', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'1F7D6516-1C18-4C34-A2AD-960A3590A353', N'е', NULL, N'豸鵥¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 532) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2027E065-F81E-4381-9CF5-3EE4039F760F', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'2027E065-F81E-4381-9CF5-3EE4039F760F', N'ӵػ', NULL, N'ӵص¼', N'SH/T 3503J508 +SH/T 3503J122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 24) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'20481B39-E90C-46D3-8B65-2D78F63BAA55', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.9', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'20481B39-E90C-46D3-8B65-2D78F63BAA55', N'±', N'GB 50093-2013 +SH/T 3521-2013', N'ֳDZװ¼', N'SH/T 3543G620', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 638) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'206A4FAE-88EE-473E-BFC1-B3E4A1E304C6', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'206A4FAE-88EE-473E-BFC1-B3E4A1E304C6', N'ɰɰʯػǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 261) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'20801625-6CE8-4411-8061-3C5ABB5B1318', N'', N'A698C11C-A082-4775-A237-37899754160E', N'8.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'A698C11C-A082-4775-A237-37899754160E', N'20801625-6CE8-4411-8061-3C5ABB5B1318', N'ܵӼ', N'GB 50093-2013 +SH/T 3521-2013', N'ռ¼', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 686) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'4', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'', N'', N'GB50207-2012', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 441) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'20A56A68-8CDB-429E-9106-7F43F64CCBA8', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'20A56A68-8CDB-429E-9106-7F43F64CCBA8', N'弰ľǼ', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 433) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'20D7A5EA-BBF0-4AD8-8964-5AD8AF160938', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'20D7A5EA-BBF0-4AD8-8964-5AD8AF160938', N'ԭϼϱȼ', NULL, N'ʵ鱨', NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 259) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'6', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'', N'ܽ', N'GB50303-2015 +GB50339-2013', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 507) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'20FCEDC5-F64F-439B-A70D-FE4916BB71B4', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.2', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'20FCEDC5-F64F-439B-A70D-FE4916BB71B4', N'е', N'GB 50278-2010', N'¼', N'SH/T3503-J117', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 193) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2257A743-0CA2-4C33-97ED-C815DDF0EDF0', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'2257A743-0CA2-4C33-97ED-C815DDF0EDF0', N'ֲ', NULL, N'ֲռ¼', NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 476) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'22B31312-AF31-4139-89F0-0898848B4310', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'22B31312-AF31-4139-89F0-0898848B4310', N'ܵˮѹ', NULL, N'ˮѹ鱨', N'J406-2', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 485) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'23501818-AF07-4AE2-826E-C50099E90919', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.8', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'23501818-AF07-4AE2-826E-C50099E90919', N'ƽ̨ݡװ', N'GB 50461-2008', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 209) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'24432E16-2C27-4AA9-BBC5-1B4979755CA3', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'24432E16-2C27-4AA9-BBC5-1B4979755CA3', N'ܹ', NULL, N'ػۣӣ¼', N'J201', N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 548) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2523E5E0-E353-4829-850F-F9561BE1CBF7', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'2523E5E0-E353-4829-850F-F9561BE1CBF7', N'ֽ', N'GB50204-2015', N'ֽ(ӹ)(I)(II) ռ¼', N' 010602, +20102', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 267) +GO +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'25708D94-13D2-4444-8971-48BA6BE7FD3A', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'25708D94-13D2-4444-8971-48BA6BE7FD3A', N'š֧װ', N'װðװ̵·ʩչ淶GB50168-2006', N'߲ۡżܰװ¼', N'SH/T 3503J503', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 89) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'25DE2627-7A76-47AA-90F0-52B2BB423A5E', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'25DE2627-7A76-47AA-90F0-52B2BB423A5E', N'()䰲װ', NULL, N'ֳ/䰲װ¼', N'SH/T 3543G527', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 118) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2624B3CD-2766-426C-93E5-FFA321E0166C', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'2624B3CD-2766-426C-93E5-FFA321E0166C', N'ֲʵȼ', NULL, N'鱨', NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 260) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'26A1AE42-18F1-4F2E-95E0-87AB9E7998B6', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'26A1AE42-18F1-4F2E-95E0-87AB9E7998B6', N'һ֧ģǿȡնȡȶԡ֧ŵ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 285) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'26A32C45-21BF-43F7-811E-BD477638C40F', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'26A32C45-21BF-43F7-811E-BD477638C40F', N'', N'װðװ̽ӵװʩչ淶GB50169-2016', N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 81) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'26D5D6A8-EB10-40F0-9E71-D07337DC650A', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.8.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'26D5D6A8-EB10-40F0-9E71-D07337DC650A', N'塢ש(ƽչġ)', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 431) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2768438B-2411-4F3F-A3BF-4BCDC7E3F63F', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'2768438B-2411-4F3F-A3BF-4BCDC7E3F63F', N'ˮܵˮ', NULL, N'ˮ¼', N'J409-C', N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 498) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'27797A63-D398-42EC-BF8A-F2758DEE17FB', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'27797A63-D398-42EC-BF8A-F2758DEE17FB', N'尲װ', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'ѹװ¼', N'SH/T 3503J507', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 6) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'27797D4E-C2F6-49AF-9CCE-935DB96C3FB3', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'27797D4E-C2F6-49AF-9CCE-935DB96C3FB3', N'ļճϼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 458) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'27C168DD-5FD3-4E02-806B-2403B5CAAB4B', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.12', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'27C168DD-5FD3-4E02-806B-2403B5CAAB4B', N'װ', N'GB 50231-2009', N'ʽװ¼ +ĤƬʽװ¼', N'SH/T 3543G302 +SH/T 3543G303', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 185) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2885CF7A-6F67-48C1-888C-AE01B12E5986', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.8.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'2885CF7A-6F67-48C1-888C-AE01B12E5986', N'', NULL, N'ש㹤ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 432) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'28AFB4B4-44FA-451E-AE41-8104F9AC5538', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.8', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'28AFB4B4-44FA-451E-AE41-8104F9AC5538', N'ӵϵͳӵ', N'GB 50093-2013 +SH/T 3521-2013', N'ӵص¼', N'SH/T 3503J122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 626) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'28FC44E4-B6FF-48FB-9D96-56BEEEB68B27', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.14', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'28FC44E4-B6FF-48FB-9D96-56BEEEB68B27', N'Ͷǰ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ֱϵͳװ¼ ', N'SH/T 3503J510', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 58) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'290139D7-5228-4B85-B86A-E4CCE9B0E896', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.7', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'290139D7-5228-4B85-B86A-E4CCE9B0E896', N'ȴ', N'GB 50461-2008', N'豸ȴ', N'SH/T 3503J342', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 220) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2966BFB9-5120-4675-A7A1-4921A10BEFC7', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'2966BFB9-5120-4675-A7A1-4921A10BEFC7', N'׮', NULL, N'ⱨ', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 569) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'29BD3B96-6846-4AFC-8BAC-B2E64B386157', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.4', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'29BD3B96-6846-4AFC-8BAC-B2E64B386157', N'ƽ', N'GB 50461-2008', N'ʽ豸װ¼', N'SH/T 3503-J326', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 226) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'29C6A4F5-DC9D-441F-B6DB-4EA7C15D9DB2', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'29C6A4F5-DC9D-441F-B6DB-4EA7C15D9DB2', N'ʼ˶', N'װðװ̽ӵװʩչ淶GB50169-2016', N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 74) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'29D6558F-37D5-4D83-9B4C-71242E38D39A', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'29D6558F-37D5-4D83-9B4C-71242E38D39A', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 251) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2A673425-E099-446B-ADAA-46B548428A71', N'', N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1', 2, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 201) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2A9AE6D4-647D-459B-BA47-0BA2EB23B702', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.11', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'2A9AE6D4-647D-459B-BA47-0BA2EB23B702', N'ϵͳܼ', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳܼ¼', N'SH/T 3503J607', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 655) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2B8647DF-8978-477D-A695-F9A0895F89CB', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'2B8647DF-8978-477D-A695-F9A0895F89CB', N'ιռ¼', N'װðװ̽ӵװʩչ淶GB50169-2016', N'ι̼¼ ', N'SH/T 3503J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 79) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2BE3E017-5020-4864-94F0-ED67C950CD14', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.7', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'2BE3E017-5020-4864-94F0-ED67C950CD14', N'жȼ屨ϵͳ', N'GB 50093-2013 +SH/T 3521-2013', N'ǵУ¼', N'SH/T 3543G607', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 667) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2C1DBB77-0D17-40C2-BB7A-3DDFF8CD6A67', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'2C1DBB77-0D17-40C2-BB7A-3DDFF8CD6A67', N'豸װ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ֳ/䰲װ¼', N'SH/T 3543G527', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 64) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2C4A3641-D970-40AC-B06B-C367AFDDE508', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.6.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2C4A3641-D970-40AC-B06B-C367AFDDE508', N'ӹռʸ϶', NULL, N'ӹռʸ϶鵥', NULL, N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 328) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2C80CA07-F00C-49A7-81EC-35DC46E2DFD2', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'2C80CA07-F00C-49A7-81EC-35DC46E2DFD2', N'ĸ߼̡ڲװ', N'װðװ̸ѹʩչ淶GB50147-2010', N'ߡѹعװ¼', N'SH/T 3503J508', N'C/CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 22) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2CC647C2-E5F6-4548-AE5B-DF13AB525722', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.3', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2CC647C2-E5F6-4548-AE5B-DF13AB525722', N'ӹ', N'GB 50461-2008', N'ӹ', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 216) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'', N'ṹ', N'GB50204-2015', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 282) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2D9A17B9-7E25-42A5-BB52-BF0069DCE802', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.3', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'2D9A17B9-7E25-42A5-BB52-BF0069DCE802', N'ڼ춨', N'GB50231-2009', N'ڼ춨߼鱨', N'SH/T 3543-G109', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 194) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2DF11515-ECE3-4AD6-A401-41973D67B247', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.14', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2DF11515-ECE3-4AD6-A401-41973D67B247', N'ϵͳϴ', N'GB 50231-2009', N'ܵɨϴ¼', N'SH/T 3503J408', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 187) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2E2889B0-4587-475B-96E5-243B63321F4A', N'', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'9.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'2E2889B0-4587-475B-96E5-243B63321F4A', N'', N'GB 50093-2013 +SH/T 3521-2013', N'ȹռ¼', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 698) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2E70E8D7-D9D8-47A6-AF01-FDD9CCF074AB', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.1.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'2E70E8D7-D9D8-47A6-AF01-FDD9CCF074AB', N'߶λ߲ػ', N'GB50202-2018', N'ػۼ¼', N'J201', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 255) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'2FD65A2E-7F7F-40BB-9E24-B29CE9A88B6F', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.9.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'2FD65A2E-7F7F-40BB-9E24-B29CE9A88B6F', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 437) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'303B162E-DD31-47FC-A148-B93D4DF8DE28', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'303B162E-DD31-47FC-A148-B93D4DF8DE28', N'ۼܰװ', N'GB 50093-2013 +SH/T 3521-2013', N'²/żܰװ¼', N'SH/T 3543G615', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 679) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'30690019-2640-4E89-BEB3-439D56FC2521', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'9', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'', N'׮', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 562) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'30830C0C-920B-432B-875D-D22EEB39EF39', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'30830C0C-920B-432B-875D-D22EEB39EF39', N'֧ģʵʩ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 287) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'30F397FD-321D-48DC-8826-040AD55CF109', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'30F397FD-321D-48DC-8826-040AD55CF109', N'ǰ', NULL, N'ι̼¼', N'J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 486) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'312BC4E5-9A05-4180-BE7B-23D25ACE7AEF', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'312BC4E5-9A05-4180-BE7B-23D25ACE7AEF', N'Ŵװ߼׼߼', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 385) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3132726E-8709-4D71-8F84-1DF7CE6C64AC', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3132726E-8709-4D71-8F84-1DF7CE6C64AC', N'ճɰԿǿȼ', NULL, N'ʵ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 375) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3154F0A7-4863-465C-92FE-2C00CB58FBB8', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.13', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'3154F0A7-4863-465C-92FE-2C00CB58FBB8', N'±־׮', N'װðװ̵·ʩչ淶GB50168-2006', N' ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 99) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'317F7D66-239C-4BC1-BEB5-4D8BCCD00D8F', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.14', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'317F7D66-239C-4BC1-BEB5-4D8BCCD00D8F', N'ϵͳǰ', NULL, N'ι̼¼', N'J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 560) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'31A8F19D-01A3-4DFC-9C3C-6942C8A75788', N'', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'9.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'31A8F19D-01A3-4DFC-9C3C-6942C8A75788', N'Ȳ', N'GB 50093-2013 +SH/T 3521-2013', N'ȹռ¼', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 696) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'31BF9304-10A7-42D6-8730-0B50C7D75B73', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'31BF9304-10A7-42D6-8730-0B50C7D75B73', N'()', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 253) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'', N'', N'0', 1, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'', N'', N'ֳ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 572) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'32873C4C-F10E-495B-8DB0-C2492945B172', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'32873C4C-F10E-495B-8DB0-C2492945B172', N'¹', N'װðװ̵·ʩչ淶GB50168-2006', N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 91) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'32D9B1D3-7276-41C3-A5B7-C1D2A1D7DB19', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'32D9B1D3-7276-41C3-A5B7-C1D2A1D7DB19', N'Ҫ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 335) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'33BF332C-607F-47DE-BFDE-DAF87EB8651A', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'33BF332C-607F-47DE-BFDE-DAF87EB8651A', N'豸Ϻ˶', N'GB 50093-2013 +SH/T 3521-2013', N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 619) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'33D65FAA-4E4C-47AA-A976-D5FC3784F694', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'33D65FAA-4E4C-47AA-A976-D5FC3784F694', N'ܷ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 144) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3411518D-ACD4-4702-9CFF-CF1B9543C419', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3411518D-ACD4-4702-9CFF-CF1B9543C419', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 397) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'344D1DDE-71AA-4F5F-9CE6-1ECD6114BA54', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.17', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'344D1DDE-71AA-4F5F-9CE6-1ECD6114BA54', N'Գ', N'GB 50275-2010', N'ʽѹԳ¼ +ʽѹԳ¼', N'SH/T 3503J309', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 190) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'34732A66-A502-46AE-A6D3-91EB25C0E0FF', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'34732A66-A502-46AE-A6D3-91EB25C0E0FF', N'', N'GB50204-2015', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 303) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'34A1AC55-6A24-40F8-8E45-6FA9FB1C1263', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.4', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'34A1AC55-6A24-40F8-8E45-6FA9FB1C1263', N'Ժ', N'GB 50461-2008', N'ӹ/װ¼', N'SH/T 3543-G706', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 217) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'350D99BD-4991-42F8-B02E-51769CA8FACF', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'350D99BD-4991-42F8-B02E-51769CA8FACF', N'ˮŽṹ(ˮ)', N'GB50204-2015', N'ֽṹ(ṹ)(I)(II) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 272) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'353463B1-8254-4377-B560-1BBE215045F3', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'353463B1-8254-4377-B560-1BBE215045F3', N'׮̷ֲ', NULL, N'׮ռ¼', NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 570) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'355533FD-F87D-4E7C-A20C-928513BDD40B', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.15', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'355533FD-F87D-4E7C-A20C-928513BDD40B', N'ͨǰ', NULL, NULL, N'ȷϱƱ', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 130) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3573154E-39AA-48F5-AA5B-85AFB4AD5639', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.1', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'3573154E-39AA-48F5-AA5B-85AFB4AD5639', N'ȴ', N'GB 50094-2010', N'ȴ', N'GB 50094-C.0.8', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 598) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'35FECB67-7C96-42FA-9E5D-B8973180420D', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'35FECB67-7C96-42FA-9E5D-B8973180420D', N'Եⶨ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ֱϵͳϣupsװ¼', N'SH/T 3503J510', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 53) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'362C79B2-AED8-40B4-9E08-3D9870EFC881', N'', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'5.5', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'362C79B2-AED8-40B4-9E08-3D9870EFC881', N'', N'GB 50126-2008', N'ȹռ¼ ', N'SH/T 3503J119', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 615) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'36400F95-57F3-479D-8E60-654174837427', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.6.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'36400F95-57F3-479D-8E60-654174837427', N'㴦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 417) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'364ED6F7-6A2B-40A2-A4A5-6C03995C164E', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.12', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'364ED6F7-6A2B-40A2-A4A5-6C03995C164E', N'ϵͳ顢ע', N'GB 50231-2009', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 169) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'36B3DFB4-3424-4D47-9AC2-3DA88A029BC6', N'', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'9.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'36B3DFB4-3424-4D47-9AC2-3DA88A029BC6', N'', N'GB 50093-2013 +SH/T 3521-2013', N'ȹռ¼', N'SH/T 3503J119', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 695) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'37E8179B-BE41-4F6A-8C49-DD8FE57CDE71', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.4.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'37E8179B-BE41-4F6A-8C49-DD8FE57CDE71', N'װĨҷ', NULL, N'װĨҹռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 407) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'38EA0C32-2DF0-45B8-8710-1A5C66A44410', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.5.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'38EA0C32-2DF0-45B8-8710-1A5C66A44410', N'㴦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 410) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'39A0F739-603A-4DFE-B146-2061D7A5AFEA', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.4.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'39A0F739-603A-4DFE-B146-2061D7A5AFEA', N'͸ǶͿ', NULL, N'ܷǶռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 470) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'39E03EBE-1EDB-4A89-9308-448CAA5662F9', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'39E03EBE-1EDB-4A89-9308-448CAA5662F9', N'ˮŽṹ(ˮ)', N'GB50202-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 263) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3A17A9EC-2E94-4387-81DC-FE8E7DB5BDD1', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.6.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'3A17A9EC-2E94-4387-81DC-FE8E7DB5BDD1', N'һۼ̽˼', NULL, N'̽鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 330) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3B1BC416-8A0E-4E10-A06C-05E70A5355F9', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'3B1BC416-8A0E-4E10-A06C-05E70A5355F9', N'ԤסԤġ߳ߴ', N'GB50204-2015', N'ֽṹ(ṹ)(I)(II) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 288) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'', N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'1', 2, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'', N'', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 157) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3BEA0DB9-80F3-4626-8324-0A301BC08D88', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.5.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'3BEA0DB9-80F3-4626-8324-0A301BC08D88', N'ɰԿǿȼ', NULL, N'Կǿ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 321) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3D175012-AA68-41E1-9D9B-702223FAD847', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'3D175012-AA68-41E1-9D9B-702223FAD847', N'߼ܷ', N'װðװתʩչ淶GB50170-2006', N'綯װм¼', N'SH/T 3503J506', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 68) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3DAFA33D-5020-422C-A178-EF3ECC6DDB6D', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.9.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'3DAFA33D-5020-422C-A178-EF3ECC6DDB6D', N'Ϳˢÿȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 352) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3DB983EF-DB20-4291-96A5-C11D51F3B3FE', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.2', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'3DB983EF-DB20-4291-96A5-C11D51F3B3FE', N'ڼ춨', N'GB50231-2009', N'ڼ춨߼鱨', N'SH/T 3543-G109', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 175) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3E3AB71E-3B8C-45D4-91E6-2106D7A824B7', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.9', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'3E3AB71E-3B8C-45D4-91E6-2106D7A824B7', N'ߴ', N'GB 50094-2010', N'δ޼γߴ¼', N'SH/T 3503-J709/J710', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 597) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3E6FC074-62F2-4A47-A806-6F3BFA4E7094', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'3E6FC074-62F2-4A47-A806-6F3BFA4E7094', N'װ', NULL, N'򽻽Ӽ¼', N'SH/T 3543G112', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 117) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3F56F28D-B04C-4786-8795-6D0AD5DE37B9', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.9', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'3F56F28D-B04C-4786-8795-6D0AD5DE37B9', N'ڹܵӦ', N'GB 50231-2009', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 166) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3F853415-58CE-4168-B12A-0F0CC4BC6C3A', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'3F853415-58CE-4168-B12A-0F0CC4BC6C3A', N'°װ', N'ݹʩչ淶GB50310-2016', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 123) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'3FA83FF5-9FD1-4434-B34C-95BEA759D99B', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.8', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'3FA83FF5-9FD1-4434-B34C-95BEA759D99B', N'ѹ', N'GB 50461-2008', N'豸ѹй¶¼', N'SH/T 3503J341', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 221) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4000B504-7ACB-428C-9E88-FE6FD02298A6', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'4000B504-7ACB-428C-9E88-FE6FD02298A6', N'Ŵϸ֤ۼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 384) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'406919FA-5933-44E9-A740-683455974291', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'406919FA-5933-44E9-A740-683455974291', N'ֱ̰װ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 134) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'406C1AFB-A3A8-42EA-8173-A7AE6B54EBDF', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.11', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'406C1AFB-A3A8-42EA-8173-A7AE6B54EBDF', N'Ʒ԰', N'GB 50094-2010', N'ѧ鱨', NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 599) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4089EDCD-D1B0-4C60-B115-0A83ADCF4F5A', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'4089EDCD-D1B0-4C60-B115-0A83ADCF4F5A', N'ľŴ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 378) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'410BA55C-6B17-4B7D-A429-80BD882876B5', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'410BA55C-6B17-4B7D-A429-80BD882876B5', N'·', NULL, N'·輰Ե¼', N'SH/T 3503J504', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 152) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'41BFC3DF-2183-4853-B178-ACCDA788D814', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'41BFC3DF-2183-4853-B178-ACCDA788D814', N'ǿ˨Ӽ', NULL, N'ǿ˨ӹ̼ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 346) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'41C0F732-5501-492F-ABC3-F3C25B21F6A7', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'41C0F732-5501-492F-ABC3-F3C25B21F6A7', N'Ҫṹ()Կǿȼ', N'GB50204-2015', N'Կǿ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 305) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'41D95FA2-1DA0-4294-8FF8-F1DBB4F2F9F7', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.12', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'41D95FA2-1DA0-4294-8FF8-F1DBB4F2F9F7', N'·ϴ֬ɨ', N'GB 50093-2013 +SH/T 3521-2013', N'DZ·֬/ϴ¼', N'SH/T 3543G629', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 641) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'424DBC24-EB1F-4435-B4A0-BD657777C11B', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'424DBC24-EB1F-4435-B4A0-BD657777C11B', N'װ', N'GB50204-2015', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 311) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'442076C2-DA45-4BAB-83BF-C0B9BE68424F', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.1.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'442076C2-DA45-4BAB-83BF-C0B9BE68424F', N'ƽ㡢ϲȼ߼', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 362) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'', N'', N'0', 1, N'', N'', N'', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 1) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'44B396D3-6151-4860-8151-E46062628ADF', N'', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'5.3', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'44B396D3-6151-4860-8151-E46062628ADF', N'', N'GB 50126-2008', N'ȹռ¼', N'SH/T 3503J119', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 245) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'44B58154-7E65-454E-A082-839E6FBC1277', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'44B58154-7E65-454E-A082-839E6FBC1277', N'̡װ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ֱϵͳϣupsװ¼', N'SH/T 3503J510', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 48) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'', N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'3', 2, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 222) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'453BCF73-A78C-4DB0-9770-AC761E69B506', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'453BCF73-A78C-4DB0-9770-AC761E69B506', N'ģ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 283) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'46D3DA62-4404-461D-B837-195BD463B3F2', N'', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'4.6', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'46D3DA62-4404-461D-B837-195BD463B3F2', N'ʴ', N'GB 50727-2011', N'ռ¼ ', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 240) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'46E7AFC6-597E-426A-8F6D-1595DF71652A', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.11', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'46E7AFC6-597E-426A-8F6D-1595DF71652A', N'ϵͳ', NULL, N'ˮѹܵ¼', N'J410', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 557) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'47A52385-7CD0-468E-92CE-29CB6913BD06', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'47A52385-7CD0-468E-92CE-29CB6913BD06', N'ٶȲDZ', N'GB 50093-2013 +SH/T 3521-2013', N'/У¼', N'SH/T 3543G123', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 665) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'47BF8772-9DB7-4C6C-9F08-AEBB48485CB5', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'47BF8772-9DB7-4C6C-9F08-AEBB48485CB5', N'ʩ촦Ĩҷֲȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 405) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'480B6C7F-F064-4F60-B4FE-D9E665EBC4F8', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'480B6C7F-F064-4F60-B4FE-D9E665EBC4F8', N'šɰԿǿȼ', NULL, N'ʵ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 369) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4877BD0A-84B6-4323-B399-E2206312611A', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4877BD0A-84B6-4323-B399-E2206312611A', N'ƽ', N'GB50207-2012', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 442) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'48F78B6F-958C-4E22-92FC-F765C6C54980', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'48F78B6F-958C-4E22-92FC-F765C6C54980', N'װ', NULL, N'˨װռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 493) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'9', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'', N'豸ݵĵ', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 115) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4931616A-7B09-4853-A270-2810AD82E309', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.5', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'4931616A-7B09-4853-A270-2810AD82E309', N'ཬǰ', N'GB 50461-2008', N'μ¼', N'SH/T 3503J113', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 227) +GO +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4A0CEB7E-E6EB-48B7-A87E-CB2033C28818', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.8', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'4A0CEB7E-E6EB-48B7-A87E-CB2033C28818', N'ڶ', N'GB 50275-2010', N'м¼', N'SH/T 3503J303', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 181) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'', N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4', 2, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'', N'ʴʩ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 603) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4AE72A58-CB49-4E07-B9FA-AF16396A6063', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'4AE72A58-CB49-4E07-B9FA-AF16396A6063', N'·輰', N'GB 50093-2013 +SH/T 3521-2013', N'/߷輰Ե¼ +°װ¼', N'SH/T 3543G613 SH/T 3543G614', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 639) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4BCB1C1A-6D66-48E7-BF69-CD532AD055AF', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.8.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'4BCB1C1A-6D66-48E7-BF69-CD532AD055AF', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 429) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4BF91272-B3B7-4CEB-A48E-21514A4D8D26', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.9', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'4BF91272-B3B7-4CEB-A48E-21514A4D8D26', N'̼·', N'GB 50093-2013 +SH/T 3521-2013', N'£ߣ輰Ե¼', N'SH/T 3543G613', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 627) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4C6292EA-ECAE-4CEB-B225-99F101C7F552', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.9', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'4C6292EA-ECAE-4CEB-B225-99F101C7F552', N'ιཬǰ', N'GB 50275-2010', N'μ¼', N'SH/T 3503J113', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 182) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4CE25628-8F79-41F9-AAC4-AAE6A6A8C923', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.9.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'4CE25628-8F79-41F9-AAC4-AAE6A6A8C923', N'ϸ֤ۼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 434) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4D59F748-E7E0-4273-8C93-0FD3D68FB91A', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.13', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'4D59F748-E7E0-4273-8C93-0FD3D68FB91A', N'۲', N'GB 50128-2014', N'۲¼', N'GB 50128-C.0.12', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 586) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4E2C4273-BC53-45A5-AEA6-15B3DD5A44B8', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.9', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'4E2C4273-BC53-45A5-AEA6-15B3DD5A44B8', N'췵', N'GB 50094-2010', N'췵޼¼', N'GB 50094-C.0.4', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 596) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4E49C4C6-F26C-4A63-B15A-EEBA6DD4187B', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.7', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'4E49C4C6-F26C-4A63-B15A-EEBA6DD4187B', N'ӵϵͳνӵ', N'GB 50093-2013 +SH/T 3521-2013', N'ӵص¼', N'SH/T 3503J122', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 625) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4E700B63-84BF-435B-B8D9-19F161CA41BF', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'4E700B63-84BF-435B-B8D9-19F161CA41BF', N'ˮܽӿڼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 497) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4EBBBDB4-CBDF-4DEB-82FB-EB08C341BDFC', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'4EBBBDB4-CBDF-4DEB-82FB-EB08C341BDFC', N'(ܵ)', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 550) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4EE29204-66B2-4DE2-B8BC-2D3C2E878F62', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'4EE29204-66B2-4DE2-B8BC-2D3C2E878F62', N'', N'װðװתʩչ淶GB50170-2006', N'綯װ鼰м¼ ', N'SH/T 3503J506', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 72) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4EE8D4CC-9FFE-4E3B-AF3F-934DACCB8EAC', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'4EE8D4CC-9FFE-4E3B-AF3F-934DACCB8EAC', N'', NULL, N'ⱨ', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 553) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4FB5CFA6-9B20-4193-941B-2E66BC58EFEF', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.11', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'4FB5CFA6-9B20-4193-941B-2E66BC58EFEF', N'ȴˮܵװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 542) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'4FEB29C4-A8A9-421D-90F3-CA71DD95B634', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.14', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'4FEB29C4-A8A9-421D-90F3-CA71DD95B634', N'', N'GB 50093-2013 +SH/T 3521-2013', N'/ϵͳɱϵͳԼ¼', N'SH/T 3503J608', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 643) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'506D548F-D516-415A-B9A3-21A881965188', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.7', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'506D548F-D516-415A-B9A3-21A881965188', N'װ', N'GB 50461-2008', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 208) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'50780300-BE65-42EF-B1F3-D3E75FE6596B', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'50780300-BE65-42EF-B1F3-D3E75FE6596B', N'屣²跽', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 455) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5150D833-8D2D-4DAF-8B8D-16C5CC26762D', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'5150D833-8D2D-4DAF-8B8D-16C5CC26762D', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 445) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'51709940-EF87-47FE-B361-66D60CA7DC04', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'51709940-EF87-47FE-B361-66D60CA7DC04', N'˨Ӽ', NULL, N'̼ռ¼', NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 345) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'51A33579-CD7C-461D-87B5-1449FA17C863', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.1.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'51A33579-CD7C-461D-87B5-1449FA17C863', N'ػǰ', NULL, N'ι̼¼', N'J211', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 256) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'51A93A80-2DFE-4823-93C4-68351A407167', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.1', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'51A93A80-2DFE-4823-93C4-68351A407167', N'ʩ', N'GB 50275-2010', N'ʩ¼', N'¼', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 158) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'51F8F842-B163-4B81-BCC1-E690F97E2C4D', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.8.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'51F8F842-B163-4B81-BCC1-E690F97E2C4D', N'㴦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 428) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5290BF55-6FDD-4DB8-9902-215F8568D35F', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'5290BF55-6FDD-4DB8-9902-215F8568D35F', N'ͨѶܻװ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 135) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5348888F-33C5-4BD1-AE0A-3BA4FD08E71A', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.11', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'5348888F-33C5-4BD1-AE0A-3BA4FD08E71A', N'ѹ', N'GB 50461-2008', N'豸ѹй¶¼', N'SH/T 3503J341', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 212) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5351BB66-E250-4384-8B2D-29B5269718B4', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'5351BB66-E250-4384-8B2D-29B5269718B4', N'ӹռʸ϶', NULL, N'桢ϸ֤', NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 551) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'53703796-E3FC-43A4-AB71-4A57BD551543', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.4.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'53703796-E3FC-43A4-AB71-4A57BD551543', N'װ', NULL, N'װʽṹ(Ԥƹװ)(I )(II)', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 316) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'53A36BA0-D9C2-4392-83C5-4E3EC308B0E4', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'53A36BA0-D9C2-4392-83C5-4E3EC308B0E4', N'֧()ܼϼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 515) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'53A99896-E494-4474-AC1F-0186263C3481', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'4', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'53A99896-E494-4474-AC1F-0186263C3481', N'', N'͵ָʾDZ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 657) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'53CE4EAB-B34E-41BD-A219-8D05E41B3E63', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.6.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'53CE4EAB-B34E-41BD-A219-8D05E41B3E63', N'ҺƷּϱȼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 416) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'53FC4E93-96F3-4961-9B76-ABA755D8CB15', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'53FC4E93-96F3-4961-9B76-ABA755D8CB15', N'͸ֵװ', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ/DZ/̨װ¼', N'SH/T 3503J605', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 620) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'542AE7F7-AC0E-4CE0-93C8-F9E27A5F1348', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'542AE7F7-AC0E-4CE0-93C8-F9E27A5F1348', N'ˮ˨©װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 505) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5478E2CC-D67D-459F-9CCC-252F18FC0E95', N'', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'4.6', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'5478E2CC-D67D-459F-9CCC-252F18FC0E95', N'ʴ', N'GB 50726-2023', N'ռ¼ ', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 609) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5551DD66-3EC4-471B-995C-1B2C918FF14E', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.8.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'5551DD66-3EC4-471B-995C-1B2C918FF14E', N'塢שƷ֡ɫ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 427) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'55BC410B-9106-4FF5-8384-448FDC8F94C0', N'', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'4.3', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'55BC410B-9106-4FF5-8384-448FDC8F94C0', N'', N'GB 50726-20238', N'ռ¼ ', N'SH/T 3503J118', N'CR/BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 606) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'55BC9A79-2D8D-4722-BE46-1508EAA1B312', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'55BC9A79-2D8D-4722-BE46-1508EAA1B312', N'Ĩҷֲȡʱ䡢ճ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 398) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5600AA50-4774-4BF6-8731-40B7CE6F238C', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'5600AA50-4774-4BF6-8731-40B7CE6F238C', N'', N'װðװ̽ӵװʩչ淶GB50169-2016', N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 84) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'561498B2-13DA-4D80-93B2-947F964CBF31', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.7', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'561498B2-13DA-4D80-93B2-947F964CBF31', N'ȹ', N'GB 50093-2013 +SH/T 3521-2013', N'ֳDZװ¼', N'SH/T 3543G620', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 636) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'56388CE8-6C83-4870-8673-291A54B922EA', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'56388CE8-6C83-4870-8673-291A54B922EA', N'ܵװλá¶ȡֱȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 481) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'57395BC5-EDBA-4A2F-832B-1B1386A701A0', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.5.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'57395BC5-EDBA-4A2F-832B-1B1386A701A0', N'߶λ߲', NULL, N'λ߼¼', NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 319) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5739B165-3783-4A94-97E5-39F248658296', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'2', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'', N'ߡѹװ', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 15) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'57AF4875-1994-4F6D-AEB4-6A4E9E8C2645', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'57AF4875-1994-4F6D-AEB4-6A4E9E8C2645', N'ӵذװ', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'ѹ¼', N'SH/T 3543G504', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 11) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'59413628-5A0D-42B1-BCFD-BBE67133E44B', N'', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'4.2', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'59413628-5A0D-42B1-BCFD-BBE67133E44B', N'ϽӼ', N'GB 50726-2023', N'ռ¼ ', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 605) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'59EA7893-B519-4058-B23A-17CCC2C39308', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'59EA7893-B519-4058-B23A-17CCC2C39308', N'ι̼¼', NULL, N'ι̼¼ ', N'SH/T 3503J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 137) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5A59AE2B-7814-4126-9DE1-571E96B547CF', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'5A59AE2B-7814-4126-9DE1-571E96B547CF', N'̡װ', NULL, N'ߡѹعװ¼', N'SH/T 3503J508', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 19) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5AEB9BED-48A4-4733-908D-9B7C3ADB3FE4', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.9', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'5AEB9BED-48A4-4733-908D-9B7C3ADB3FE4', N'췵', N'GB 50128-2014', N'췵޼¼', N'GB 50128-C.0.10', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 582) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5B622B11-805F-4034-977B-2A7019C48060', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.13', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'5B622B11-805F-4034-977B-2A7019C48060', N'', N'GB 50094-2010', N'鱨', N'GB 50094-C.0.10', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 602) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5BAB0D3A-20F0-4733-A3E6-D263DF2E3293', N'', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'5.2', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'5BAB0D3A-20F0-4733-A3E6-D263DF2E3293', N'ϽӼ', N'GB 50126-2008', N'ȹռ¼ ', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 612) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5CD5051B-4875-4688-8152-1E0EE1C8FB06', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'5CD5051B-4875-4688-8152-1E0EE1C8FB06', N'ƾ', NULL, N'װ ¼', N'SH/T 3543G525', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 114) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5CE6DBCC-69BB-4DE4-93A5-390EDFA687BC', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'5CE6DBCC-69BB-4DE4-93A5-390EDFA687BC', N'()װ', NULL, N'װ¼', N'SH/T 3543G525', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 106) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'1', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'', N'ѹ', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 2) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5D7525B2-4DA8-4F9B-8261-5EC6AAC6C0CF', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'5D7525B2-4DA8-4F9B-8261-5EC6AAC6C0CF', N'DZװ', N'GB 50093-2013 +SH/T 3521-2013', N'DZ¼ +Ԫװ¼ +ֳDZװ¼', N'SH/T 3543G618 SH/T 3543G619 SH/T 3543G620', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 633) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5DFE33F1-9E19-4191-9165-65B82192614A', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'5DFE33F1-9E19-4191-9165-65B82192614A', N'()װ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̣װ¼', N'SH/T 3503J509', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 32) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5E6778BC-6474-4040-BDD9-F50D8BA5D4B8', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'5E6778BC-6474-4040-BDD9-F50D8BA5D4B8', N'Ŵװ', NULL, N'Ŵ(֡ϽͿɫпŴ)ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 388) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5F17F32E-BAD4-4380-83E6-35FC5AE71975', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'5F17F32E-BAD4-4380-83E6-35FC5AE71975', N'ܡ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 509) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5FB824AA-0489-44EB-AF5A-55F528B2C5D6', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'5FB824AA-0489-44EB-AF5A-55F528B2C5D6', N'ԭϼϱȼ', N'GB50204-2015', N'ϡˮ༰ϱȱ', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 299) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5FE35F5E-D313-401E-8423-31D2253EAB04', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5FE35F5E-D313-401E-8423-31D2253EAB04', N'DZ', N'GB 50093-2013 +SH/T 3521-2013', N'/У¼', N'SH/T 3543G123', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 666) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'5FFFC432-403C-4346-B255-BB2A56667387', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.5.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'5FFFC432-403C-4346-B255-BB2A56667387', N'ͼɫװߡɫ߼', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 412) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'603AFBFC-7A37-443E-B2A9-CBF9C5B42911', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'603AFBFC-7A37-443E-B2A9-CBF9C5B42911', N'װӼ', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'򽻽Ӽ¼', N'SH/T 3543G112', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 4) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'610E3378-5176-4A04-ADD4-A085A4F40554', N'', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'4.1', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'610E3378-5176-4A04-ADD4-A085A4F40554', N'豸Ӽ', N'GB 50727-2011', N'ռ¼ ', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 235) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'611C7DC1-8D35-4175-A5D7-808DF64A0DF7', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'611C7DC1-8D35-4175-A5D7-808DF64A0DF7', N'ͨյֲ', N'GB50243-2016', N'ͨյֲռ¼', NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 545) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'622433C2-4AFD-4055-ACD0-2599F1F355F1', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'622433C2-4AFD-4055-ACD0-2599F1F355F1', N'ˢ()', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 415) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6240B650-FE6F-4387-8A65-4A1BFC9FF4A2', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'6240B650-FE6F-4387-8A65-4A1BFC9FF4A2', N'', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 490) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'62584358-456D-42C5-BA45-61BABCF605C0', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'62584358-456D-42C5-BA45-61BABCF605C0', N'㴦', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 527) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'62E146AA-A6D5-42FE-BBA2-62503D1A37FC', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'62E146AA-A6D5-42FE-BBA2-62503D1A37FC', N'ǰ', NULL, N'ι̼¼', N'J211', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 467) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'63EA9DD8-9FE6-4649-84EC-B430B705205F', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.10', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'63EA9DD8-9FE6-4649-84EC-B430B705205F', N'ڸˮܵװ', NULL, N'ڸˮܵװ', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 488) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'648F8876-AD1A-43A6-9518-6DA9BF316E8F', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'648F8876-AD1A-43A6-9518-6DA9BF316E8F', N'װðװ', N'GB 50093-2013', N'װü¼', N'SH/T 3503J602', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 634) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'64BBB2CD-596B-455B-B316-5A47547EE2DB', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'64BBB2CD-596B-455B-B316-5A47547EE2DB', N'͸ֵװ', N'GB 50093-2013 +SH/T 3521-2013', N'̡͸ְװռ¼', N'SH/T 3503J502', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 646) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'650B19AB-EFE2-407C-B3F6-672FC0200AE1', N'', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'4.3', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'650B19AB-EFE2-407C-B3F6-672FC0200AE1', N'', N'GB 50727-2011', N'ռ¼ ', N'SH/T 3503J118', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 237) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'664366C6-4ACD-41ED-BAA4-3B5DDD762C5A', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'664366C6-4ACD-41ED-BAA4-3B5DDD762C5A', N'״²ƽȡӷ졢¶ȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 454) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'669E604E-6A80-4FEA-9ABE-9B06A801B4ED', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'669E604E-6A80-4FEA-9ABE-9B06A801B4ED', N'Դ豸װ', N'Զϵͳʩձ׼GB50166-2019', N'ֱϵͳװ¼', N'SH/T 3503J511', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 142) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'3', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'', N'̡λ·', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 28) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6767A3AB-64E7-44F6-B85F-CD59A86FA78A', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'6767A3AB-64E7-44F6-B85F-CD59A86FA78A', N'߼', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ/DZ/̨װ¼', N'SH/T 3503J605', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 622) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6770E050-66F6-4900-B11A-B5C8BC57813B', N'', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'5.2', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'6770E050-66F6-4900-B11A-B5C8BC57813B', N'ϽӼ', N'GB 50126-2008', N'ȹռ¼', N'SH/T 3503J119', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 244) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'680CECB2-7942-4E71-A469-DD6DC045F536', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'8', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'', N'¹', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 546) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'681834D9-D13E-4B4D-9B39-48C8805C6815', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'681834D9-D13E-4B4D-9B39-48C8805C6815', N'ֽṹͿ', N'GB50205-2020', N'ͿͿװ̼ռ¼', NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 349) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'68590F8D-7D66-4C08-B36A-B25EFFE2A5EC', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.7', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'68590F8D-7D66-4C08-B36A-B25EFFE2A5EC', N'·', N'GB 50093-2013 +SH/T 3521-2013', N'°װ¼', N'SH/T 3543G614', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 683) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'69EDF9E8-F273-4B5E-AF74-6F9AA8E2BBDA', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'69EDF9E8-F273-4B5E-AF74-6F9AA8E2BBDA', N'֧()ܼװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 482) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6A1F9D19-5C7D-4CA6-8C33-9B174A7BB3C5', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'6A1F9D19-5C7D-4CA6-8C33-9B174A7BB3C5', N'ֽṹװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 342) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6A74E1DD-9E14-476E-86D0-405D07734FF0', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'6A74E1DD-9E14-476E-86D0-405D07734FF0', N'һĨ', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 394) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6B349DAF-A282-491A-AE34-5AF7FE2D39B6', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'6B349DAF-A282-491A-AE34-5AF7FE2D39B6', N'̡', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ֱϵͳϣupsװ¼', N'SH/T 3503J510', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 50) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6B42B2C5-A11B-4F28-BF83-F331417D7E07', N'', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'5.4', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'6B42B2C5-A11B-4F28-BF83-F331417D7E07', N'Ȳ', N'GB 50126-2008', N'ȹռ¼', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 246) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6B45DBEC-B003-4620-905F-0EC94C86B340', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'6B45DBEC-B003-4620-905F-0EC94C86B340', N'ܰװλü߼', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 514) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6B9DA591-AE5E-4FDF-91BB-6B3AEBB5A9F5', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'6B9DA591-AE5E-4FDF-91BB-6B3AEBB5A9F5', N'ڲȷ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 535) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6BB2C551-C7CA-4029-B7AE-7A85D52C9EBF', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.11', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'6BB2C551-C7CA-4029-B7AE-7A85D52C9EBF', N'·ѹ©', N'GB 50093-2013 +SH/T 3521-2013', N'DZܵѹ¼', N'SH/T 3503J603', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 640) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'', N'', N'0', 1, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'', N'', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 249) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6C4BAB6D-C56A-494A-98DC-D94EDBC92B57', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'6C4BAB6D-C56A-494A-98DC-D94EDBC92B57', N'豸Ϻ˶', N'ñ·ӵϵͳ̼淶 GB50198-2011', N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 147) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6C860F55-6CE3-49EA-8A31-BAD613EA915F', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.11', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'6C860F55-6CE3-49EA-8A31-BAD613EA915F', N'ŷ', NULL, N'ֽṹ(ṹ)(I)(II) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 309) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6D00E943-26FF-4C45-986D-A7833D723820', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'6D00E943-26FF-4C45-986D-A7833D723820', N'ľŴװ', NULL, N'ľŴ밲װռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 382) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6D9ACB1B-1B5C-469C-ADC9-CBA3B6A78B66', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'6D9ACB1B-1B5C-469C-ADC9-CBA3B6A78B66', N'תǰ', N'װðװתʩչ淶GB50170-2006', NULL, N'ȷϱƱ', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 70) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6E723AAB-9A8E-4C93-A5F0-0508714C62A8', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'6E723AAB-9A8E-4C93-A5F0-0508714C62A8', N'㴦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 444) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6EF2B77B-2D13-44E1-BEEE-1747011E7609', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.1', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'6EF2B77B-2D13-44E1-BEEE-1747011E7609', N'', N'GB 50128-2014', N'֤ļһ', N'SH/T 3503-J132-1', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 574) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6F8D451D-BBDF-43DF-A2BE-F815EE7B3602', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'6F8D451D-BBDF-43DF-A2BE-F815EE7B3602', N'ԭϼˮɰϱȼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 443) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6FC6654A-EE7F-49BE-862E-29EAA72B71E3', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.6.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'6FC6654A-EE7F-49BE-862E-29EAA72B71E3', N'ˢ()', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 420) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'6FD3E29A-BFCE-44AC-99CB-30BEE9D48ECB', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'6FD3E29A-BFCE-44AC-99CB-30BEE9D48ECB', N'ܼܵ豸', N'GB50243-2016', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 544) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'706ED915-9F4E-48BF-8198-2B907C1EFDFE', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'706ED915-9F4E-48BF-8198-2B907C1EFDFE', N'ķˮ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 462) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'708860BD-CB2B-452B-9347-C1BE97B88604', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'708860BD-CB2B-452B-9347-C1BE97B88604', N'װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 534) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7101B2F3-A1F6-44F3-BC05-B6AAB0E8EAC6', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.6.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'7101B2F3-A1F6-44F3-BC05-B6AAB0E8EAC6', N'Ӽɫ߼', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 419) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'71652869-FDD6-4250-BB7E-1D4FC43E264A', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.5', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'71652869-FDD6-4250-BB7E-1D4FC43E264A', N'װ', N'GB 50094-2010', N'δװߴ¼', N'SH/T 3503-J706/J707', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 592) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'718FF867-0ADA-4549-B271-3EFA0875570A', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.2', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'718FF867-0ADA-4549-B271-3EFA0875570A', N'ʸ϶', N'GB 50461-2008', N'ϸ񺸹ǼDZ', N'SH/T 3503J115', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 215) +GO +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'720A0008-32A2-4D3C-BFA9-B75103DF0CCC', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'720A0008-32A2-4D3C-BFA9-B75103DF0CCC', N'ؿزⶨ', NULL, N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 113) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'720EB572-3549-49A9-9D2D-1010B2B79CC2', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'720EB572-3549-49A9-9D2D-1010B2B79CC2', N'ɰɰʯػ', N'GB50202-2018', N'ػ ռ¼ +ɰɰʯػ ռ¼', N'10301 +10302', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 262) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7216A8B4-9DBE-4F0D-938D-D0369513997C', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'7216A8B4-9DBE-4F0D-938D-D0369513997C', N'߶λ߲', N'GB50026-2020', N'̶λ¼', N'J203', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 264) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'735D5CC3-0726-4FE0-B2F6-B56C1391F440', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.16', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'735D5CC3-0726-4FE0-B2F6-B56C1391F440', N'', NULL, NULL, NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 131) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'8', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'', N'װ', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 103) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'3', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'', N'װװ', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 356) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'740CE91A-FC9C-4C9A-8B07-A58583D9FC4E', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'740CE91A-FC9C-4C9A-8B07-A58583D9FC4E', N'Žעʱ䡢϶', N'GB50204-2015', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 301) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'745DEE2D-9A7A-4694-AF89-A25D914C1B61', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'745DEE2D-9A7A-4694-AF89-A25D914C1B61', N'ܵǰ', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'ѹ¼ ', N'SH/T 3503G501', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 13) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'6', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'', N'DZ()ܹ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 669) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'', N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3', 2, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'', N'ػе', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 191) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7583E26E-036A-4324-AC7B-3E6C884F1876', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.16', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7583E26E-036A-4324-AC7B-3E6C884F1876', N'ܵ', NULL, NULL, NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 102) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'75CB7F81-F49F-4B23-8E3E-31AFACD51475', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'75CB7F81-F49F-4B23-8E3E-31AFACD51475', N'Ƕ͸ͷˮͿϼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 465) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'75EA9412-EB9E-41A1-9548-97F0D0668868', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'75EA9412-EB9E-41A1-9548-97F0D0668868', N'ˮ估˨װλü', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 491) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'76984B21-D40B-43A1-91DB-F2553A4BE5EE', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'76984B21-D40B-43A1-91DB-F2553A4BE5EE', N'߰װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 121) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'773A7F7D-F5B8-4C8E-8914-812FA1FB56FD', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'773A7F7D-F5B8-4C8E-8914-812FA1FB56FD', N'ӵؼ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ӵص¼', N'SH/T 3503J510 +SH/T 3503J122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 49) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'77F96549-52C9-49D2-8BCF-561A011575FF', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'', N'', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 60) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7815B644-35C0-4A2F-9C7B-CF51A0FABBDD', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'7815B644-35C0-4A2F-9C7B-CF51A0FABBDD', N'㴦', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 459) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'783FA94F-3DF0-4EDD-AA13-70E0997086CD', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'783FA94F-3DF0-4EDD-AA13-70E0997086CD', N'߰װ֧¶ȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 504) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7867949E-F7F1-4F76-BE09-1B0009F800CE', N'', N'A698C11C-A082-4775-A237-37899754160E', N'8.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'A698C11C-A082-4775-A237-37899754160E', N'7867949E-F7F1-4F76-BE09-1B0009F800CE', N'', N'GB 50093-2013 +SH/T 3521-2013', N'ռ¼', N'SH/T 3503J118', N'CR/BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 688) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7885B1F1-33C6-475E-9241-88EE1B5EEBAB', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'7885B1F1-33C6-475E-9241-88EE1B5EEBAB', N'ťװ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 139) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'78882243-548E-47A2-B371-D3E9F838E727', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'78882243-548E-47A2-B371-D3E9F838E727', N'·', NULL, N'£ߣԵ¼', N'SH/T 3503J504', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 108) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'78950116-ACAD-49F1-83BD-95008B8D0002', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'78950116-ACAD-49F1-83BD-95008B8D0002', N'ˮܵװ', N'GB50242-2002', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 494) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'78A43F42-9558-42F8-AA89-06DF6433A555', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.1.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'78A43F42-9558-42F8-AA89-06DF6433A555', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 363) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'794151F7-B9EC-4206-BF87-D1A5B22BFADD', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.1', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'794151F7-B9EC-4206-BF87-D1A5B22BFADD', N'ʽѹϴװ', N'GB 50275-2010', N'򻬶װ¼ +ֹƻװ¼ +ͷ϶¼ +ת¼ +תԹݣܷװ϶¼ +黬ϵͳ϶¼ +תԹܷ¼ +תλü¼ +綯װ¼ +綯תӿ϶¼ +ֻת¼ +ֻתװ϶¼ +ֻҶƬС϶¼ +ת¼ +װ¼', N'SH/T 3543G306 +SH/T 3543G307 +SH/T 3543G308 + SH/T 3543G304 +SH/T 3543G315 +SH/T 3543G316 +SH/T 3543G326 +SH/T 3543G328 +SH/T 3543G309 +SH/T 3543G310 +SH/T 3543G311 +SH/T 3543G312 +SH/T 3543G313 +SH/T 3543G304 +SH/T 3543G305', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 183) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'796CC225-A354-4781-A5A5-1F13BC49C5F2', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'796CC225-A354-4781-A5A5-1F13BC49C5F2', N'ӵصⶨ', N'װðװ̽ӵװʩչ淶GB50169-2016', N'ӵؼӵص谲װ¼', N'SH/T 3503J122', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 85) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7973D520-7C4E-48B4-AA02-C55D0CF3CD81', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.8', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'7973D520-7C4E-48B4-AA02-C55D0CF3CD81', N'庸', N'GB 50128-2014', N'¼RT/UT/MT/PT', N'SH/T 3543-G124/G125/G126/G127', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 581) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7991CF19-547A-4A17-BECB-1AC2EC2F58A7', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.5', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'7991CF19-547A-4A17-BECB-1AC2EC2F58A7', N'Űͼְ', N'GB 50128-2014', N'ְϼ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 578) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'79AF5505-3CC0-4F98-9C11-7C0B8D622AB1', N'', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'4.7', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'79AF5505-3CC0-4F98-9C11-7C0B8D622AB1', N'ʩ', N'GB14907-2018', N'𹤳ռ¼', N'SH/T 3503J121', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 241) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7A2E89DA-B9A6-4D42-9EF5-C18232132D9A', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'7A2E89DA-B9A6-4D42-9EF5-C18232132D9A', N'ˮܵװ', NULL, N'ˮܵװռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 501) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7A3FC263-54A1-4485-8920-B40F7048EF07', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.15', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'7A3FC263-54A1-4485-8920-B40F7048EF07', N'ܵ', NULL, N'̣װ¼', N'SH/T 3503J509', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 43) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7A50411D-1511-4FBA-A43A-0CCBCA74072F', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'7A50411D-1511-4FBA-A43A-0CCBCA74072F', N'¥', NULL, N'ש㹤ռ¼ +ذ㹤ռ¼', N'30107 +30112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 376) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7A5C33FD-8CD1-41AD-89A6-152BA8F9D057', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.5.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'7A5C33FD-8CD1-41AD-89A6-152BA8F9D057', N'ˮܶλü۴ֱȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 474) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7A8D0188-F4A3-4795-8CAC-97047F112D1E', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7A8D0188-F4A3-4795-8CAC-97047F112D1E', N'ǰ', NULL, N'ι̼¼', N'J112', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 528) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7ABFAD38-A275-4E20-9B83-C4FA9A04D6B5', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7ABFAD38-A275-4E20-9B83-C4FA9A04D6B5', N'ǰ(Ҫʱ)', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 522) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7B1361E0-3006-4696-9D88-8B991A643D91', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7B1361E0-3006-4696-9D88-8B991A643D91', N'װӼ', N'װðװ̵·ʩչ淶GB50168-2006', N'򽻽Ӽ¼', N'SH/T 3543G112', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 88) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7B3AC6B0-465A-46D4-A273-38A2BB9EC10B', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'7B3AC6B0-465A-46D4-A273-38A2BB9EC10B', N',©,߽,¥̨̤,', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 368) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7B9DB949-FDF0-46B0-BA36-A954FC67679C', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.1', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'7B9DB949-FDF0-46B0-BA36-A954FC67679C', N'װ', N'GB 50128-2014', N'ʽԲͲδ޹޵¼', N'SH/T 3503J333-1', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 583) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7BCF0806-B228-4F1A-8961-F99C26BAC56F', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'7BCF0806-B228-4F1A-8961-F99C26BAC56F', N'', N'GB50203-2011', N'ש ռ¼ +СͿ ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 280) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7C72B3E5-77F0-4E8A-8BD7-ABF67A127561', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.7', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'7C72B3E5-77F0-4E8A-8BD7-ABF67A127561', N'ո', N'GB 50278-2010', N'ػո¼', N'SH/T 3543-G813', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 198) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7CA762EA-4997-491C-A3A9-D37162AA3F60', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.1.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'7CA762EA-4997-491C-A3A9-D37162AA3F60', N'ߡʵȼ', N'GB50202-2018', N'ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 257) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7CAA2C1A-FE8E-4C8C-BAB4-F57E03E8DA9C', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.7', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'7CAA2C1A-FE8E-4C8C-BAB4-F57E03E8DA9C', N'ཬǰ', N'GB 50231-2009', N'μ¼', N'SH/T 3503J130', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 164) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7CED3249-B3A4-46F8-83BF-B5CFF48959EF', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.6.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'7CED3249-B3A4-46F8-83BF-B5CFF48959EF', N'ԭϼ', NULL, N'ԭϺϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 326) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7CF843AD-46A9-42E6-8823-D3B106332CE1', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.8', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'7CF843AD-46A9-42E6-8823-D3B106332CE1', N'ӵϵͳӵ', N'GB 50093-2013 +SH/T 3521-2013', N'ӵص¼', N'SH/T 3503J122', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 652) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7D122C12-0188-4F77-9CB1-E31D4FDE064C', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'7D122C12-0188-4F77-9CB1-E31D4FDE064C', N'װõ', NULL, N'ֱϵͳϣupsװ¼', N'SH/T 3503J510', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 54) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7DD37CD1-9B03-4B92-8B84-8897CB2BDF67', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'7DD37CD1-9B03-4B92-8B84-8897CB2BDF67', N'Ŵװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 386) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7DF085D1-16D4-467F-865F-2000D715A399', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7DF085D1-16D4-467F-865F-2000D715A399', N'Ϲ񡢲ʺ˶', N'װðװ̵·ʩչ淶GB50168-2006', N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 87) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7E3E4709-5BFD-485A-B3A7-F0D43D293B34', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'7E3E4709-5BFD-485A-B3A7-F0D43D293B34', N'·', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ͵ȷϱ', N'SH/T 3503J606', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 628) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7EBA7C9A-2871-481C-9210-D4CBD88A3F6C', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.8', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'7EBA7C9A-2871-481C-9210-D4CBD88A3F6C', N'DZ', N'GB 50093-2013 +SH/T 3521-2013', N'ڷִطУ¼', N'SH/T 3543G602', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 668) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7F390EF7-2BA0-4CB9-948E-755B9E9423AA', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'7F390EF7-2BA0-4CB9-948E-755B9E9423AA', N'ԭϼϱȼ', NULL, N'ʵ鱨', NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 274) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7FA30955-6CFD-484E-ADA3-3E6FBB4C91A7', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.1', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'7FA30955-6CFD-484E-ADA3-3E6FBB4C91A7', N'豸', N'GB 50461-2008', N'¼', N'SH/T 3503-J117', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 223) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'7FA8C022-5251-425F-AB00-FCF68EC8F5A7', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.1.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'7FA8C022-5251-425F-AB00-FCF68EC8F5A7', N'', NULL, N'()(I) ռ¼ +(ˮ)(Vll)ռ¼', N'30101 +30101', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 364) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'805A6792-F529-40D1-AF17-B0976F93BFA2', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'805A6792-F529-40D1-AF17-B0976F93BFA2', N'¥', N'GB50209-2010', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 371) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'810182A3-A28C-4F14-AFAE-B8A76BC54F34', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'7', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'810182A3-A28C-4F14-AFAE-B8A76BC54F34', N'', N'ͨյ', N'GB50243-2016', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 508) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8107D8A2-3522-4CBF-8F30-60E39C975E65', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'8107D8A2-3522-4CBF-8F30-60E39C975E65', N'װӼ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'򽻽Ӽ¼', N'SH/T 3543G112', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 46) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'81BE7C11-1A11-4277-9B7F-6F98E6C5A16A', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.12', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'81BE7C11-1A11-4277-9B7F-6F98E6C5A16A', N'ת', NULL, N'ת¼', N'J318-2', N'HR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 543) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'82668601-2658-4B9C-A14B-69B0D35C7A38', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.4', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'82668601-2658-4B9C-A14B-69B0D35C7A38', N'ӡװ', N'GB 50278-2010', N'򽻽Ӽ¼ +ֵװ¼', N'SH/T 3543-G112 +SH/T 3543-G204', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 195) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'834C8A49-3F7D-4064-A20D-18F0D8515E8F', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'834C8A49-3F7D-4064-A20D-18F0D8515E8F', N'ۼܰװ', N'GB 50093-2013 +SH/T 3521-2013', N'²/żܰװ¼', N'SH/T 3543G615', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 680) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8369C272-1CF0-497A-B07A-6CDF860C7065', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.8', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'8369C272-1CF0-497A-B07A-6CDF860C7065', N'ԴźŹ', N'GB 50093-2013 +SH/T 3521-2013', N'ֳDZװ¼', N'SH/T 3543G620', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 637) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'839FA4C5-F5ED-4F49-925C-0885EA384D8D', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'839FA4C5-F5ED-4F49-925C-0885EA384D8D', N'ˮܵͨˮ', NULL, N'ͨˮ¼', N'J409-B', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 500) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'83D267BC-0262-4E6C-9CF5-8599BE3F558C', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'83D267BC-0262-4E6C-9CF5-8599BE3F558C', N'ˮɰˮ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 273) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'84195DAC-110E-4749-B4B0-E23700283C05', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.10', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'84195DAC-110E-4749-B4B0-E23700283C05', N'ڲ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 541) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'84745D00-D660-4BB9-B32D-F9D8E1D0BACD', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.1', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'84745D00-D660-4BB9-B32D-F9D8E1D0BACD', N'ڶ', N'GB 50275-2010', N'м¼', N'SH/T 3503J302', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 167) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'852CC036-7F64-4572-A287-F7E8089C0697', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.12', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'852CC036-7F64-4572-A287-F7E8089C0697', N'DCSESDITCC', N'GB 50093-2013 +SH/T 3521-2013', N'УԼ¼', N'SH/T 3503J610-1', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 656) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'85ED691E-6F83-4E20-85E4-33CF02402130', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.6', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'85ED691E-6F83-4E20-85E4-33CF02402130', N'ڼװ', N'GB 50461-2008', N'ιռ¼', N'SH/T 3503J112', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 207) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'860514E6-07DA-46DA-9B92-49D90C270AC2', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.4', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'860514E6-07DA-46DA-9B92-49D90C270AC2', N'豸ӡ', N'GB 50231-2009', N'Ӽ¼ +豸¼ +ʽ豸¼', N'SH/T3543-G112 +SH/T 3503-J204 +SH/T 3503J205', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 161) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'86661C82-FBAE-4687-B9C8-1110F0C41FF4', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'86661C82-FBAE-4687-B9C8-1110F0C41FF4', N'µܰװ', N'װðװ̵·ʩչ淶GB50168-2006', N' ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 90) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'86E0E804-4FBC-4266-A1CE-B53105FE84FF', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'86E0E804-4FBC-4266-A1CE-B53105FE84FF', N'ڸˮܵװ', N'GB50242-2002', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 478) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'87464673-AB69-42A7-862F-DB46B83CA41D', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.16', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'87464673-AB69-42A7-862F-DB46B83CA41D', N'ת', N'GB 50275-2010', N'Գ¼ +ֻȼֻԳ¼', N'SH/T 3503J311', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 189) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'88746446-744B-4445-B244-F744F98A13C7', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.7', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'88746446-744B-4445-B244-F744F98A13C7', N'װ', N'GB 50128-2014', N'ʽԲͲδװ¼', N'SH/T 3503-J332', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 580) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'88C79D00-B9EE-4DCC-BBEA-E3C8946F86EC', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'88C79D00-B9EE-4DCC-BBEA-E3C8946F86EC', N'һṹ()Կǿȼ', N'GB50204-2015', N'Կǿ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 304) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'89185C95-C86B-4518-B4B8-8D926C7C9E5A', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'89185C95-C86B-4518-B4B8-8D926C7C9E5A', N'ֽŸֽשĨǰ', NULL, N'ι̼¼', N'J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 554) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'89262318-4B21-4B53-A6AE-E73284552134', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.11', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'89262318-4B21-4B53-A6AE-E73284552134', N'װü', N'GB 50275-2010', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 168) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'894233A9-4045-472E-8845-9CF03BA4640B', N'', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'5.4', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'894233A9-4045-472E-8845-9CF03BA4640B', N'Ȳ', N'GB 50126-2008', N'ȹռ¼ ', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 614) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'896E629E-EA9F-445D-912D-9962EDB19845', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'896E629E-EA9F-445D-912D-9962EDB19845', N'ӵĸӼ', N'װðװ̽ӵװʩչ淶GB50169-2016', N'ι̼¼ ', N'SH/T 3503J112', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 76) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'89B2FE8E-910B-4B96-A271-944A4A816D53', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'89B2FE8E-910B-4B96-A271-944A4A816D53', N'߰װ', NULL, N'߼ˮװռ¼ +ˮܵװռ¼', N'50401050402 +50403', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 506) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'89E2D0AA-D1BD-49AD-804E-6884F5E7374A', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.3', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'89E2D0AA-D1BD-49AD-804E-6884F5E7374A', N'', N'οTSG Z6002', N'ϸ񺸹ǼDZ', N'SH/T 3503-J115', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 590) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8AEDA640-2063-4265-AE39-29DED2301B97', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'8AEDA640-2063-4265-AE39-29DED2301B97', N'졢װ', N'װðװػװʩչ淶GB50256-2014', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 122) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8B01E96C-F58D-4CFB-B863-F9B954F284C2', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8B01E96C-F58D-4CFB-B863-F9B954F284C2', N'ܼǰ', NULL, N'ռ¼', N'J112', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 517) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8B46859A-4037-4A45-959B-3D7DF743D0B7', N'', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'9.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'8B46859A-4037-4A45-959B-3D7DF743D0B7', N'ϽӼ', N'GB 50093-2013 +SH/T 3521-2013', N'ȹռ¼', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 694) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8B765B5E-2032-4692-BF4B-B30E5B657979', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.7.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'8B765B5E-2032-4692-BF4B-B30E5B657979', N'װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 424) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8B8EF28C-F1B4-4A4D-90F5-3CE9FF51785F', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.12', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'8B8EF28C-F1B4-4A4D-90F5-3CE9FF51785F', N'۲', N'GB 50094-2010', N'۲¼', N'GB 50094-C.0.11', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 601) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8BD2B690-85B1-4C5B-A7BF-1B8C5F7DAD23', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'8BD2B690-85B1-4C5B-A7BF-1B8C5F7DAD23', N'̵', N'װðװ̵豸ձ׼GB50150-2016', N'ѹ̵¼ +ʱ̵¼ +м䡢źż̵¼ +򱣻ϵͳ¼ +۱̵У¼ +ָʾDZ¼', N'SH/T 3543G512 +SH/T 3543G513 +SH/T 3543G514 +SH/T 3543G516 +SH/T 3543G517 +SH/T 3543G515', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 37) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8C863865-00B2-46DC-BD20-C4B7A5629F33', N'', N'A698C11C-A082-4775-A237-37899754160E', N'8.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'A698C11C-A082-4775-A237-37899754160E', N'8C863865-00B2-46DC-BD20-C4B7A5629F33', N'ϱȼ', N'GB 50093-2013 +SH/T 3521-2013', N'ռ¼', N'SH/T 3503J118', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 689) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8CF73F73-A17C-45CA-9BDD-FF39F71F7F6C', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'8CF73F73-A17C-45CA-9BDD-FF39F71F7F6C', N'׮λ', N'GB50026-2020', N'̶λ¼', N'J203', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 563) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8D2D27A5-824D-4D6C-9EC9-C006A7B40079', N'', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'5.3', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'8D2D27A5-824D-4D6C-9EC9-C006A7B40079', N'ι̼¼', N'GB 50126-2008', N'ιռ¼', N'SH/T 3503J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 613) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8D46C23E-5807-4426-A764-EB902263BB8D', N'', N'A698C11C-A082-4775-A237-37899754160E', N'8.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'A698C11C-A082-4775-A237-37899754160E', N'8D46C23E-5807-4426-A764-EB902263BB8D', N'ʴ', N'GB 50093-2013 +SH/T 3521-2013', N'ռ¼', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 691) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8E538D1B-9137-43F8-894F-A130BA463072', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.3', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'8E538D1B-9137-43F8-894F-A130BA463072', N'λȷ', N'GB 50461-2008', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 225) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8F3E314F-8F34-431F-A950-96470116EEB6', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.5.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'8F3E314F-8F34-431F-A950-96470116EEB6', N'Ϳˢ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 413) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8F4B1E95-26E6-4B06-A28F-1F61A448D67E', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.14', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'8F4B1E95-26E6-4B06-A28F-1F61A448D67E', N'', N'װðװ̵豸ձ׼GB50150-2016', N'¼', N'SH/T 3543G508', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 100) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'8FFB86F1-8EFB-41C1-89AA-A8C8DBAC7BCC', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'8FFB86F1-8EFB-41C1-89AA-A8C8DBAC7BCC', N'ҪԼ', NULL, N'ֹװռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 337) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'903D0F0F-A0C4-4AEF-B9E8-539D152DCF5B', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.7.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'903D0F0F-A0C4-4AEF-B9E8-539D152DCF5B', N'Ʒ֡', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 423) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9054868C-8F5F-4C19-9EFA-802624805CB3', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'9054868C-8F5F-4C19-9EFA-802624805CB3', N'㴦', NULL, N'ι̼¼', N'J211', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 367) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9066F558-8BDD-4DC6-8C84-0D4FF6A1C072', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'9066F558-8BDD-4DC6-8C84-0D4FF6A1C072', N'ܷ', N'װðװ̵·ʩչ淶GB50168-2006', N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 97) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9074E5A8-EA85-419E-B247-B9BBFACA03C1', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'9074E5A8-EA85-419E-B247-B9BBFACA03C1', N'ֽṹ', N'GB50205-2020', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 325) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9188C27D-168E-467D-8B86-7F708D9DF428', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'9188C27D-168E-467D-8B86-7F708D9DF428', N'()ڿȡ', N'GB50202-2018', N' ռ¼', NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 254) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'91B2548E-D081-4EF2-A4A7-81ED2130DEA6', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'91B2548E-D081-4EF2-A4A7-81ED2130DEA6', N'DZУ', N'GB 50093-2013 +SH/T 3521-2013', N'תȵУ¼', N'SH/T 3543G601', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 630) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'91B3A08B-9EB5-4FB7-A503-774326BB99A4', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'91B3A08B-9EB5-4FB7-A503-774326BB99A4', N'߼', N'װðװ̽ӵװʩչ淶GB50169-2016', N' ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 80) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'91F32262-1ABA-4C17-ABFD-117B64DF52F2', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.3', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'91F32262-1ABA-4C17-ABFD-117B64DF52F2', N'ü', N'GB 50275-2010', N'¼', N'SH/T 3503-J115B', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 160) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9205A6F9-6BE5-4AEA-9C1D-E988E8F12DEE', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'9205A6F9-6BE5-4AEA-9C1D-E988E8F12DEE', N'ģ', N'GB50204-2015', N'ģ(װԤƹ)(I)(II)(III) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 266) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9224E677-2404-4911-8B30-9E641E187BDD', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'9224E677-2404-4911-8B30-9E641E187BDD', N'װӼ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'򽻽Ӽ¼', N'SH/T 3543G112', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 30) +GO +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9236A417-37DC-466D-806C-5432D08A9E31', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.4', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'9236A417-37DC-466D-806C-5432D08A9E31', N'ڲԪװ', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ/DZ/̨װ¼', N'SH/T 3503J605', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 648) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9241FCC1-6799-46E4-ABBF-123331B9E62F', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.5.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'9241FCC1-6799-46E4-ABBF-123331B9E62F', N'ԭϼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 472) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9292260A-37D3-4D41-A5F6-58A53A4F7BCD', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'9292260A-37D3-4D41-A5F6-58A53A4F7BCD', N'ֽṹװ', NULL, N'ֹװռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 348) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'92B5C813-3471-449F-8F08-122B0114EE9E', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'92B5C813-3471-449F-8F08-122B0114EE9E', N'', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 408) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'92BDA481-E381-484D-B93C-B4666477D8D9', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'92BDA481-E381-484D-B93C-B4666477D8D9', N'ܳӹ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 511) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'92C80E84-D758-4F7D-8791-3C02B0E5890C', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'92C80E84-D758-4F7D-8791-3C02B0E5890C', N'·()ƽ桢̲߳', N'GB50026-2020', N'̶λ¼', N'J203', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 252) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'92F17902-85FF-43CA-A180-9E0912807888', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.13', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'92F17902-85FF-43CA-A180-9E0912807888', N'ͳϴҪ', N'GB 50231-2009', N'ܵɨϴ¼', N'SH/T 3503J408', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 170) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'93193897-41DB-4C1C-A8DE-98520C4CBBD7', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'93193897-41DB-4C1C-A8DE-98520C4CBBD7', N'½ͷװ', N'װðװ̵·ʩչ淶GB50168-2006', N'°װռ¼', N'SH/T 3503J505', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 95) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'93553A7B-D2D9-4B6B-8EFA-5CD0E7F01B2E', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.7', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'93553A7B-D2D9-4B6B-8EFA-5CD0E7F01B2E', N'ӵϵͳӵ', N'GB 50093-2013 +SH/T 3521-2013', N'ӵص¼', N'SH/T 3503J122', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 651) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'93A176BA-FB7C-409E-961C-179490E91024', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.6', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'93A176BA-FB7C-409E-961C-179490E91024', N'̰װ', N'GB 50461-2008', N'̰װ¼ ', N'SH/T 3503J328', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 228) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'942660CC-B911-4834-8BCE-53E241533B86', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'942660CC-B911-4834-8BCE-53E241533B86', N'ϵͳ©', NULL, N'ϵͳ©¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 539) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'', N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'4', 2, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'', N'ʴʩ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 234) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'94D5C698-C5D1-4F51-BEFC-F6D4A5234DCA', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.1.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'94D5C698-C5D1-4F51-BEFC-F6D4A5234DCA', N'ƽ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 446) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'94DE0BE5-B543-448D-8905-DC4A7F0EA8CD', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'94DE0BE5-B543-448D-8905-DC4A7F0EA8CD', N'豸Ϻ˶', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 29) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'954C6E78-AC3A-4CC9-9773-4AECDC64F25C', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'954C6E78-AC3A-4CC9-9773-4AECDC64F25C', N'ֲIJʼ', NULL, N'鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 333) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'95E19F3E-0AFE-4F41-82A9-556B672196F6', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.2.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'95E19F3E-0AFE-4F41-82A9-556B672196F6', N'ԤӸֽê̽', N'GB50204-2015', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 295) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'962110CE-580D-4E3A-BED1-9617993E0FE2', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'962110CE-580D-4E3A-BED1-9617993E0FE2', N'Ƶ豸Խ豸װ绰װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 153) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'96322497-74F9-4371-92FD-BED0259C02B7', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'96322497-74F9-4371-92FD-BED0259C02B7', N'Ⱥ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 564) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'96335E3D-5390-4A36-AA5F-947E30781E2A', N'', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'5.1', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'96335E3D-5390-4A36-AA5F-947E30781E2A', N'еܵӼ', N'GB 50126-2008', N'ȹռ¼ ', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 611) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'96E312B1-0C54-4A18-A0EA-0BF542F7FA1F', N'', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'5.5', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'96E312B1-0C54-4A18-A0EA-0BF542F7FA1F', N'', N'GB 50126-2008', N'ȹռ¼', N'SH/T 3503J119', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 247) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'', N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1', 2, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'', N'ʽԲͲδ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 573) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'97F91954-22B6-43AF-862C-581D53064ADA', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'97F91954-22B6-43AF-862C-581D53064ADA', N'', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 526) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'97FB49EC-599D-458D-B3A2-0FA2E0EBE6FD', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.7.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'97FB49EC-599D-458D-B3A2-0FA2E0EBE6FD', N'', NULL, N'Ŵװռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 425) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'97FD609E-D118-440F-A9EB-26D7E95DDC9F', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'97FD609E-D118-440F-A9EB-26D7E95DDC9F', N'㴦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 466) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'98024EC9-7119-40E2-ADC3-E0529864F003', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'98024EC9-7119-40E2-ADC3-E0529864F003', N'·', N'װðװ̵·ʩչ淶GB50168-2006', N'·輰Ե¼', N'SH/T 3503J504', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 94) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9803A865-5507-4DE1-919B-AC34A006CFD8', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'9803A865-5507-4DE1-919B-AC34A006CFD8', N'ľŴϸ֤ۼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 380) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'98149535-12F1-45A7-A708-FEAF3174799B', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.5.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'98149535-12F1-45A7-A708-FEAF3174799B', N'', NULL, N'ܼͿͿռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 414) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'98392EB2-588B-4ABD-B32C-EEAD57646CBE', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'98392EB2-588B-4ABD-B32C-EEAD57646CBE', N'ˮ©', N'GB50204-2015', N'©¼', N'J210', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 270) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'98741093-813C-45EE-88CE-024D62A1A1FE', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'98741093-813C-45EE-88CE-024D62A1A1FE', N'Ԥƹװ', NULL, N'װ¼', NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 314) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'98B2F644-F2DB-4829-8A63-07D238D4AE05', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'98B2F644-F2DB-4829-8A63-07D238D4AE05', N'ֽṹװǰ۳ߴ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 341) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'98F04452-3919-409D-B0CC-7454F64533E2', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'98F04452-3919-409D-B0CC-7454F64533E2', N'ӵػ', N'װðװתʩչ淶GB50170-2006', N'ӵص¼', N'SH/T 3503J122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 62) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'991BF4DC-3220-4E21-8FEE-66B863DC1500', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'991BF4DC-3220-4E21-8FEE-66B863DC1500', N'һŽṹ()ۼʲ', N'GB50204-2015', N'ֽṹռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 306) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'994B04EC-C2BB-458F-854C-EE463E29CAD3', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'994B04EC-C2BB-458F-854C-EE463E29CAD3', N'ûаװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 150) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'997859D6-09CA-4689-ACA9-30E114D52E74', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'997859D6-09CA-4689-ACA9-30E114D52E74', N'ֽṹ', NULL, N'㲿ӹռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 339) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'99B5BF84-3773-4E41-9E3F-9D8910F7CDD8', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'99B5BF84-3773-4E41-9E3F-9D8910F7CDD8', N'', N'װðװ̵·ʩչ淶GB50168-2006', N' ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 96) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'99F2233A-8895-40F9-8F71-2FE619889281', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'99F2233A-8895-40F9-8F71-2FE619889281', N'վվ', N'GB 50093-2013 +SH/T 3521-2013', N'°װ¼', N'SH/T 3543G614', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 650) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9A1744EB-F071-43D3-82ED-AD328319B61C', N'', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'4.4', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'9A1744EB-F071-43D3-82ED-AD328319B61C', N'ϱȼ', N'GB 50726-2023', N'ռ¼ ', N'SH/T 3503J118', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 607) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9AA90E8E-AC49-4CD0-8861-A375AA35C8FB', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'9AA90E8E-AC49-4CD0-8861-A375AA35C8FB', N'ӵػ', NULL, N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 110) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9B15792D-4F61-47ED-A59D-B102262350EF', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.2.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'9B15792D-4F61-47ED-A59D-B102262350EF', N'ֽ', N'GB50204-2015', N'ֽ(ӹװ)(I)(II) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 297) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9C02E125-3E85-4098-8405-7561C662A3B3', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'3', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'', N'DCSESDITCC', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 644) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9C8D5F1C-D28F-496D-A0B0-55116F085E74', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'9C8D5F1C-D28F-496D-A0B0-55116F085E74', N'ԭϼϱȼ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 402) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9CB9833F-0C6B-4B45-9F20-28958E4F9581', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'9CB9833F-0C6B-4B45-9F20-28958E4F9581', N'Ӱ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̣װ¼', N'SH/T 3503J509', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 36) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9CD4912D-6778-4312-B54B-028FE0C631E8', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.4.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'9CD4912D-6778-4312-B54B-028FE0C631E8', N'͸ǶͿ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 469) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9CEE5124-8E3C-4356-BE22-F524F85F59B8', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'9CEE5124-8E3C-4356-BE22-F524F85F59B8', N'ӵϵͳźŽӵ', N'GB 50093-2013 +SH/T 3521-2013', N'ӵص¼', N'SH/T 3503J122', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 624) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9D2365F0-DF27-4C39-B1BC-5F7F18053B3B', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.6', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'9D2365F0-DF27-4C39-B1BC-5F7F18053B3B', N'ֲͼӼ¼VT', N'GB 50128-2014', N'ձ¼', N'οSH/T 3503J711', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 579) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9D6C8CC9-448F-4894-858B-EF591A48BBB9', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.11', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'9D6C8CC9-448F-4894-858B-EF591A48BBB9', N'۲', N'GB 50461-2008', N'۲¼ ', N'SH/T 3503J209', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 233) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9D7F7056-DE2B-4185-A87A-4776B10ACA67', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.14', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'9D7F7056-DE2B-4185-A87A-4776B10ACA67', N'ȴܷϵͳ', N'GB 50231-2009', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 171) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9DCD953A-E838-4975-841F-C2E2149AB8E3', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.12', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'9DCD953A-E838-4975-841F-C2E2149AB8E3', N'ˮѹ顢޶ѹ', N'GB 50128-2014', N'ʽԲͲδ¼', N'SH/T 3503J333-4', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 585) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'5', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'', N'DZУ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 660) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9E1836F8-96AE-4F92-805D-0B4A47389BB6', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.4', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'9E1836F8-96AE-4F92-805D-0B4A47389BB6', N'', N'GB 50128-2014', N'޻ƫĿ¼', N'SH/T 3503-J207', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 577) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9E1D2256-EACA-475F-A5AA-154FEF683F9D', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'9E1D2256-EACA-475F-A5AA-154FEF683F9D', N'', N'װðװתʩչ淶GB50170-2006', N'¼ ', N'SH/T 3543G519', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 63) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9EE0183F-DB9B-411A-B6A2-9F2600B9E8EB', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.8', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'9EE0183F-DB9B-411A-B6A2-9F2600B9E8EB', N'ǰ̶', N'GB 50093-2013 +SH/T 3521-2013', N'²/żܰװ¼', N'SH/T 3543G615', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 684) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9F8FE983-08C5-4C87-AEA8-E7D5C57B9FEC', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'9F8FE983-08C5-4C87-AEA8-E7D5C57B9FEC', N'Ԥ׵', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 533) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'9FF4DB69-430E-42D7-A2D8-F6F4BFFD1AD2', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.2.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'9FF4DB69-430E-42D7-A2D8-F6F4BFFD1AD2', N'ܼװ', NULL, N'ϵͳװռ¼', N'80103080203,080303,080403 080503', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 518) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A0BF799E-E771-4FA5-9616-8486A3BEAB12', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.1', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'A0BF799E-E771-4FA5-9616-8486A3BEAB12', N'豸Ͻ', N'GB 50461-2008 ', N'¼', N'SH/T 3503-J117', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 214) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A0E1F469-A5D4-43FC-B150-94D827FB86F2', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.4', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'A0E1F469-A5D4-43FC-B150-94D827FB86F2', N'ʽ豸˼', N'GB 50461-2008', N'ʽ豸װ¼', N'SH/T 3503J315', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 205) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A175A4E4-4B39-4702-BECE-B55251A25040', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'A175A4E4-4B39-4702-BECE-B55251A25040', N'ֳʽʽԪ', N'װðװ̵ѹʩչ淶GB50254-2014', N'ߡѹعװ¼', N'SH/T 3503J508', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 23) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A1B5B41D-2E77-4A5A-BE8B-C162F5F1CBA9', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'A1B5B41D-2E77-4A5A-BE8B-C162F5F1CBA9', N'²ϼϱȼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 450) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A27DAF9E-07FC-44F9-A5C2-040C408ECF73', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'A27DAF9E-07FC-44F9-A5C2-040C408ECF73', N'ϽŴ븽ϸ֤ۼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 390) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A2B40E2A-0664-4D98-8EBB-8648480ACE9F', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'A2B40E2A-0664-4D98-8EBB-8648480ACE9F', N'ϵͳԼ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 155) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A2B9FE90-7B6A-4B7A-AF81-2A796D7C01ED', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'A2B9FE90-7B6A-4B7A-AF81-2A796D7C01ED', N'ṹֲ', NULL, N'ṹֲռ¼', NULL, N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 355) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A30E821D-E742-4AF4-83A1-C6EA1D77A409', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'A30E821D-E742-4AF4-83A1-C6EA1D77A409', N'ۼܰװ̶', N'GB 50093-2013 +SH/T 3521-2013', N'²/żܰװ¼', N'SH/T 3543G615', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 681) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A338F9DD-C92F-4A19-8727-3012E61A36DC', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'A338F9DD-C92F-4A19-8727-3012E61A36DC', N'()', NULL, N'²ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 456) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A3A9C881-F739-41D6-B3D2-C01D43D10545', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'A3A9C881-F739-41D6-B3D2-C01D43D10545', N'ԤƹװǰıڡԤ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 313) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A47B70C6-A0D5-4161-8A95-D6E633C4E053', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'A47B70C6-A0D5-4161-8A95-D6E633C4E053', N'ϡԪ˲', NULL, N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 116) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A4A12CD2-DA73-4F5E-BA6C-DC335CB36F7C', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'A4A12CD2-DA73-4F5E-BA6C-DC335CB36F7C', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 404) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A5F34220-6497-4A35-9CE7-8CD13CBA736B', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.4.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'A5F34220-6497-4A35-9CE7-8CD13CBA736B', N'', NULL, N'ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 530) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A611F6B0-8BCF-4929-B616-B9D5E363406E', N'', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'6.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'A611F6B0-8BCF-4929-B616-B9D5E363406E', N'ܵɨ', N'GB 50093-2013 +SH/T 3521-2013', N'ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 674) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A64E74FD-C69D-484B-BA40-630FF460DAC3', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'A64E74FD-C69D-484B-BA40-630FF460DAC3', N'ſ', N'GB50204-2015', N'ſʵ鱨', NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 269) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A698C11C-A082-4775-A237-37899754160E', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'8', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'A698C11C-A082-4775-A237-37899754160E', N'', N'ʴʩ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 685) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A6BD7EF4-621C-4AD0-881F-362BBBC7D5DC', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'A6BD7EF4-621C-4AD0-881F-362BBBC7D5DC', N'ۼƺ˶', N'װðװתʩչ淶GB50170-2006', N'綯װм¼', N'SH/T 3503J506', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 61) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A6D1620E-3F36-44AB-A45F-445E872E1FB3', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'A6D1620E-3F36-44AB-A45F-445E872E1FB3', N'ڸˮܵ߸ˮװ', N'GB50242-2002', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 489) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A7A516CE-7DFB-48AF-9ECB-D085CCE6A95C', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.7', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'A7A516CE-7DFB-48AF-9ECB-D085CCE6A95C', N'龫ƽ', N'GB 50275-2010', N'װ¼', N'SH/T3503-J301', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 180) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A7E33387-A7DF-4545-9AEC-3CE8EEE436FB', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'A7E33387-A7DF-4545-9AEC-3CE8EEE436FB', N'ľŴȡСλáȰװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 381) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A7E7441E-1965-49C9-B3CA-F8FB73CB6449', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'A7E7441E-1965-49C9-B3CA-F8FB73CB6449', N'ǰԵ', N'װðװ̵·ʩչ淶GB50168-2006', N'·輰Ե¼', N'SH/T 3503J504', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 93) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'1', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'', N'ػ', N'GB50202-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 250) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A9286392-6F18-469C-B6E0-1196FB27DD5E', N'', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'6.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'A9286392-6F18-469C-B6E0-1196FB27DD5E', N'Ϳ', N'GB 50093-2013 +SH/T 3521-2013', N'ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 675) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A956FD4A-25FA-490B-8F56-82F8BEEC75AE', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'A956FD4A-25FA-490B-8F56-82F8BEEC75AE', N'˨šۼ', NULL, N'̼ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 338) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'A9BEB00D-2AAB-4E84-90EE-DFA670341A61', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'A9BEB00D-2AAB-4E84-90EE-DFA670341A61', N'ܷ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 127) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AA05F3F9-CEB2-4C6B-B3B5-E62FB9AE21AA', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.13', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'AA05F3F9-CEB2-4C6B-B3B5-E62FB9AE21AA', N'ڹܵӦ', N'GB 50275-2010', N'ӻܵװ¼', N'SH/T 3543G402', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 186) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AA800AF6-5659-4123-A479-082A3B948141', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'AA800AF6-5659-4123-A479-082A3B948141', N'ԭϼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 495) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AB02182E-C4ED-4120-8929-286D34F9FFC7', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'AB02182E-C4ED-4120-8929-286D34F9FFC7', N'ֽǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 567) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AB178CEE-EE0C-4852-B18A-1292853AD074', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'AB178CEE-EE0C-4852-B18A-1292853AD074', N'֧װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 120) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AB55E7EA-E4BC-43AA-AE39-27CD59E08DC1', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'AB55E7EA-E4BC-43AA-AE39-27CD59E08DC1', N'׽ӵ', NULL, N'ӵص¼', N'SH/T 3503J122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 154) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'ABD478F5-B29A-46A1-BE6E-AECA0217729D', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'ABD478F5-B29A-46A1-BE6E-AECA0217729D', N'͸ְװ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̡͸ְװռ¼', N'SH/T 3503J502', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 31) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AC1B2ADB-A332-4267-93FB-C0951C59482A', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'AC1B2ADB-A332-4267-93FB-C0951C59482A', N'Ž(ϱȡʱ)', N'GB50204-2015', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 300) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AC5BF4FC-E3AD-4C2C-8CCD-65F93B891360', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'AC5BF4FC-E3AD-4C2C-8CCD-65F93B891360', N'䡢עҺ', N'װðװʩչ淶GB50172-2012', NULL, NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 56) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AC91E60E-0987-4E22-8CC1-577D89D3E889', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.7', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'AC91E60E-0987-4E22-8CC1-577D89D3E889', N'װ', N'GB 50461-2008', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 229) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'ACA92605-8725-4193-921B-88FC5C37D660', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'ACA92605-8725-4193-921B-88FC5C37D660', N'Ϳˢܺȼۼ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 484) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AD2F3043-38BB-4603-A10B-407A040B2923', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'AD2F3043-38BB-4603-A10B-407A040B2923', N'Ŵװ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 383) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'ADD8AB87-FD2B-4A9C-8F90-F018DBD2EA18', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'ADD8AB87-FD2B-4A9C-8F90-F018DBD2EA18', N'ֽṹ', N'GB50205-2020', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 332) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'2', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'', N'DZ·', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 629) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AE2708EB-1BF6-42F2-9846-199649A1613C', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'AE2708EB-1BF6-42F2-9846-199649A1613C', N'ϸ֤', N'GB50204-2015', N'鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 293) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AE537061-FDD1-4286-B112-812EC39928B4', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.5', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'AE537061-FDD1-4286-B112-812EC39928B4', N'װ', N'GB 50278-2010', N'ػ복װ¼', N'SH/T 3543-G801', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 196) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AEE90A4B-3429-4D3C-BE0A-14DEC8C0A705', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'AEE90A4B-3429-4D3C-BE0A-14DEC8C0A705', N'ҪŽṹ()ۼʲ', N'GB50204-2015', N'ֽṹռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 307) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AEEFAF70-5BB1-4174-9F0C-39011D443918', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'AEEFAF70-5BB1-4174-9F0C-39011D443918', N'', NULL, N'¼', NULL, N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 537) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AF3DF2E0-E0A0-4505-B4A5-D9BE50F0227E', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.5.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'AF3DF2E0-E0A0-4505-B4A5-D9BE50F0227E', N'שʯ', NULL, N'ש ռ¼ +СͿ ռ¼', N'10701020301 +10702020302', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 324) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'', N'', N'0', 1, N'', N'', N'', N'豸', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 200) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AF4DB2E8-D342-412B-BF23-325551176467', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.6', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'AF4DB2E8-D342-412B-BF23-325551176467', N'Ϳ', N'GB 50093-2013 +SH/T 3521-2013', N'²/żܰװ¼', N'SH/T 3543G615', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 682) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'AFBEE1C0-7749-4D7C-BDA9-A35EB9E6F02B', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.4.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'AFBEE1C0-7749-4D7C-BDA9-A35EB9E6F02B', N'ͼɫָǶƽȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 406) +GO +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B030E2FD-C4F0-4501-BA63-D0044BA145D2', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'B030E2FD-C4F0-4501-BA63-D0044BA145D2', N'ˮɰˮ', NULL, N'ˮɰˮ', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 277) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B06C4DDD-B5C8-4DBD-9B95-A795F57520EC', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'B06C4DDD-B5C8-4DBD-9B95-A795F57520EC', N'', N'GB50204-2015', N'(ԭϼϱʩ)(I)(II) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 268) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B17662AE-0CD7-4617-B2FD-AF13CD6F4867', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'B17662AE-0CD7-4617-B2FD-AF13CD6F4867', N'·', N'GB 50093-2013 +SH/T 3521-2013', N'/߷輰Ե¼', N'SH/T 3543G613', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 649) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B1C95E53-C4EF-46AF-814B-53BD5A48B04A', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'B1C95E53-C4EF-46AF-814B-53BD5A48B04A', N'㴦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 403) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B22D01E2-C4C9-4CFE-901A-6567F339D6FE', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'B22D01E2-C4C9-4CFE-901A-6567F339D6FE', N'ԭϼ鼰', N'GB50204-2015', N'ֽϸ֤Ա漰̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 565) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B271D64F-E16B-4619-A414-32F12719DC89', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'B271D64F-E16B-4619-A414-32F12719DC89', N'վվװ', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ/DZ/̨װ¼', N'SH/T 3503J605', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 647) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B2FABF43-3BF1-4DAA-953F-197E476F05D2', N'', N'53A99896-E494-4474-AC1F-0186263C3481', N'4.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'53A99896-E494-4474-AC1F-0186263C3481', N'B2FABF43-3BF1-4DAA-953F-197E476F05D2', N'DZװ', N'GB 50093-2013 +SH/T 3521-2013', N'ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 659) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B339122E-05B4-4CB1-97E2-36452D169390', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.1.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'B339122E-05B4-4CB1-97E2-36452D169390', N'ƽ', NULL, N'ƽռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 448) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B351E56A-17FE-47BE-B345-DD15CE322748', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'B351E56A-17FE-47BE-B345-DD15CE322748', N'ϵͳǰ', NULL, N'ܵϵͳװѹ¼', N'J406-2', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 555) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B3A83E55-38D9-4D4A-B8DF-AD1C994A221D', N'', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'4.4', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'B3A83E55-38D9-4D4A-B8DF-AD1C994A221D', N'ϱȼ', N'GB 50727-2011', N'ռ¼ ', N'SH/T 3503J118', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 238) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B3AC95E0-3DAE-4E46-B3DF-8A933ADE0324', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'B3AC95E0-3DAE-4E46-B3DF-8A933ADE0324', N'͸ְװ', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'̡͸ְװռ¼', N'SH/T 3503J502', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 5) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B48AC374-7516-488B-A45C-F1FFE0227AF3', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.15', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'B48AC374-7516-488B-A45C-F1FFE0227AF3', N'ת', N'GB 50275-2010', N'Գ¼', N'SH/T 3503J306', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 172) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B4A6D6DC-F826-4B4E-A6F9-15C303CBCE56', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.7', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'B4A6D6DC-F826-4B4E-A6F9-15C303CBCE56', N'ֲͼӼ¼VT', N'GB 50128-2008', N'ձ¼', N'SH/T 3503J711', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 594) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B5529C8A-857D-49F0-97E8-100C78EEC257', N'', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'4.2', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'942FF87E-6477-4A16-908A-46B5E4F224DE', N'B5529C8A-857D-49F0-97E8-100C78EEC257', N'ϽӼ', N'GB 50727-2011', N'ռ¼ ', N'SH/T 3503J118', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 236) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B55CAA2F-D6E1-4B0D-B4A6-D451F846E7D7', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'B55CAA2F-D6E1-4B0D-B4A6-D451F846E7D7', N'ˮŽṹ(ˮ)ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 271) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B59BA9F5-36BF-4CE6-A58D-FB3256A74080', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'B59BA9F5-36BF-4CE6-A58D-FB3256A74080', N'ֽ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 291) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B5A2757B-FC3E-494C-B921-1976994D2B1D', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.11', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'B5A2757B-FC3E-494C-B921-1976994D2B1D', N'ѹ', N'GB 50094-2010', N'ѹ鱨', N'GB 50094-C.0.9', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 600) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B5C777A7-7F2B-43A3-BE27-96E400FF26AC', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'B5C777A7-7F2B-43A3-BE27-96E400FF26AC', N'ŴԤλá衢Ӽ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 387) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B65C13BE-FCDB-491A-AB82-1A1D5E3E96EF', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'B65C13BE-FCDB-491A-AB82-1A1D5E3E96EF', N'㴦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 451) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B6B6B3A3-40C7-4CC3-94BA-2E708276FDDB', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'B6B6B3A3-40C7-4CC3-94BA-2E708276FDDB', N'̡У', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ֱϵͳϣupsװ¼', N'SH/T 3503J510', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 51) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B6F28E73-B287-4C36-844B-A925D697FED4', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.3.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'B6F28E73-B287-4C36-844B-A925D697FED4', N'ͨװ', NULL, N'ͨװռ¼', N'80107080207 +80307080407 +80507', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 524) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B89E18DF-07E8-4A52-BA62-BC7C1D70B343', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.1', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'B89E18DF-07E8-4A52-BA62-BC7C1D70B343', N'о/ѹ', N'GB 50461-2008', N'Ƚ豸ѹй¶¼', N'SH/T 3503J340', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 211) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B8FF69DF-B884-4C1D-BD5A-4F3274E56B50', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.2', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'B8FF69DF-B884-4C1D-BD5A-4F3274E56B50', N'ڼ춨', N'GB50231-2009', N'ڼ춨߼鱨', N'SH/T 3543-G109', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 159) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B90E2E6C-A550-465E-93BE-8A17AA32776E', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'B90E2E6C-A550-465E-93BE-8A17AA32776E', N'ӵؿӼ', N'װðװ̽ӵװʩչ淶GB50169-2016', N'ܵӲԼ¼', N'SH/T 3503J118', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 83) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B9A25845-EF1C-4377-8FBC-20AF67BCD50B', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.1.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'B9A25845-EF1C-4377-8FBC-20AF67BCD50B', N'ƽ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 447) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B9A38519-D9E2-41D8-BD05-A61522789098', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'B9A38519-D9E2-41D8-BD05-A61522789098', N'ˮ', N'GB50207-2012', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 471) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'B9C0F714-2C49-4F8F-A748-FD320AE687D1', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'B9C0F714-2C49-4F8F-A748-FD320AE687D1', N'', N'װðװ̵豸ձ׼GB50150-2016 +װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ѹ¼ +¼ +ն·¼ +¼ +п¼ +ѹ¼', N'SH/T 3543G505 +SH/T 3543G506 +SH/T 3543G507 +SH/T 3543G509 +SH/T 3543G510 +SH/T 3543G511', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 25) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BB0A5A27-6C5F-4D8D-B53F-8CD9831B4561', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'BB0A5A27-6C5F-4D8D-B53F-8CD9831B4561', N'ʵȼ', NULL, N'鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 360) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BB0FC2E3-3A8E-447E-BC21-D11905F9C7C9', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'BB0FC2E3-3A8E-447E-BC21-D11905F9C7C9', N'ֽṹװ', NULL, N'ֽṹռ¼', N'G201', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 347) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BBD8956F-F198-4BFA-970E-40072912CD47', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.6.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'BBD8956F-F198-4BFA-970E-40072912CD47', N'ֽṹӷ', NULL, N'ֽṹ(I)(II)ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 331) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BC35E2DF-FF01-4FE4-852A-30E57A8BEC9F', N'', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'1.6', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'3BB39651-AD43-4897-8E0C-C3BD451C1185', N'BC35E2DF-FF01-4FE4-852A-30E57A8BEC9F', N'װ', N'GB 50275-2010', N'ðװ¼', N'SH/T 3503-J301', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 163) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BC7D87B1-05EB-4E4A-8C27-B7A971260DC6', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'BC7D87B1-05EB-4E4A-8C27-B7A971260DC6', N'DZ', N'GB 50093-2013 +SH/T 3521-2013', N'/У¼', N'SH/T 3543G123', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 661) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BCCBA6D1-B609-4737-9513-27D6C4119B5A', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'BCCBA6D1-B609-4737-9513-27D6C4119B5A', N'Ԥƹ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 312) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'11', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'', N'߹㲥ͨšӼϵͳ', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 146) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BDE56063-7119-44A1-87C4-AE362149DAAC', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'BDE56063-7119-44A1-87C4-AE362149DAAC', N'װӼ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'򽻽Ӽ¼', N'SH/T 3543G112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 17) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BE6E5FD7-75A1-4A9A-80BC-ED1E9B7AA5A4', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.4.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'BE6E5FD7-75A1-4A9A-80BC-ED1E9B7AA5A4', N'ԭϼ', NULL, N'ϸ֤̲ϱ鵥ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 503) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BEA23C07-8A3E-4BC5-9D5E-874887CE3E73', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.5', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'BEA23C07-8A3E-4BC5-9D5E-874887CE3E73', N'', N'GB 50461-2008', N'ӽͷ¼', N'SH/T 3543-G708', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 218) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BEC6CE07-1740-4111-B9F2-F37C5079790C', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'BEC6CE07-1740-4111-B9F2-F37C5079790C', N'жϴ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 536) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BEE3BA79-A2D0-4162-9EA3-AEB9066921B6', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.6.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'BEE3BA79-A2D0-4162-9EA3-AEB9066921B6', N'濾ż¼', NULL, N'濾 ¼', NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 327) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'BF0129FF-3EF7-4406-8239-B889995C137D', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'BF0129FF-3EF7-4406-8239-B889995C137D', N'ӵ', N'װðװ̽ӵװʩչ淶GB50169-2016', N'ӵصԼ¼', N'SH/T 3503J122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 77) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C0301F34-04EA-49F9-9FA7-80F38B056486', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.1', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'C0301F34-04EA-49F9-9FA7-80F38B056486', N'ǰ', N'GB 50461-2008', N'ιռ¼', N'SH/T 3503J112', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 232) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C0461F5A-D1D2-4A93-AED5-EB08288057B2', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'C0461F5A-D1D2-4A93-AED5-EB08288057B2', N'ϽŴǽԤӡǶ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 392) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C05C607F-7157-4024-A9A8-AF99DD43B46F', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.13', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'C05C607F-7157-4024-A9A8-AF99DD43B46F', N'ϵͳ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 145) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C06626CC-500D-4369-969E-CCF99F331313', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.4.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'C06626CC-500D-4369-969E-CCF99F331313', N'ˮǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 276) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C0B57A12-1391-4711-98B9-2D72897C2402', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'C0B57A12-1391-4711-98B9-2D72897C2402', N'ܵۼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 552) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C0C00CE3-E149-45D4-B265-D7338B02CEB9', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'C0C00CE3-E149-45D4-B265-D7338B02CEB9', N'ͨװ', N'GB50243-2016', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 519) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C0F7D309-52BF-413F-9745-6A2E141B2919', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'C0F7D309-52BF-413F-9745-6A2E141B2919', N'豸Ϻ˶', NULL, N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 16) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C127ABB3-7670-4EE8-8501-8A25D5F0EBFD', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'C127ABB3-7670-4EE8-8501-8A25D5F0EBFD', N'յϵͳ', N'GB50243-2016', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 531) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C15085B3-1C2A-4DEE-9DA8-160F9C186FC0', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'C15085B3-1C2A-4DEE-9DA8-160F9C186FC0', N'(䡢̨)װ', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ/DZ/̨װ¼', N'SH/T 3503J605', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 621) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C19ACA0B-B457-44F9-85BE-50E811D194F8', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.3', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'C19ACA0B-B457-44F9-85BE-50E811D194F8', N'鼰', N'GB 50275-2010', N'¼', N'SH/T3503-J115B', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 176) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C2B6F1AE-DAB3-421F-9763-75B1A3E5240C', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.5.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'C2B6F1AE-DAB3-421F-9763-75B1A3E5240C', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 411) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C2C84E57-5EF9-4860-8C6E-B5C3F5EB1E7A', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'C2C84E57-5EF9-4860-8C6E-B5C3F5EB1E7A', N'豸Ϻ˶', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 45) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C365D34B-A73A-4D4F-893A-61C06833C953', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.15', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'C365D34B-A73A-4D4F-893A-61C06833C953', N'Ȱװ', NULL, N'Ȱװ¼', N'SH/T 3543G526', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 101) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C478FEC2-0B10-4B0E-A9CA-FEB22CFF45FE', N'', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'4.1', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'4A10E9B5-BCA4-44E2-B69C-9AAE976D168B', N'C478FEC2-0B10-4B0E-A9CA-FEB22CFF45FE', N'豸Ӽ', N'GB 50726-2023', N'ռ¼ ', N'SH/T 3503J118', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 604) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C546D6FF-A467-4721-A19B-9F54BFAB201A', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.9.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'C546D6FF-A467-4721-A19B-9F54BFAB201A', N'ľǼܹͺż', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 435) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C5477A2B-22AC-425C-A71C-6C662ECF2046', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.5.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'C5477A2B-22AC-425C-A71C-6C662ECF2046', N'弰鶡ԤԤ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 322) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C5847321-BC7F-4ED7-A284-2B9887454CB6', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.4', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'C5847321-BC7F-4ED7-A284-2B9887454CB6', N'ӵذװ', NULL, N'ӵص¼', N'SH/T 3503J122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 136) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C59BB60C-0FBA-4586-8825-39D5519F91B2', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'C59BB60C-0FBA-4586-8825-39D5519F91B2', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 358) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'', N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'5', 2, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'', N'ʩ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 242) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'7', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'', N'²ۼܼ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 676) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C6396515-69E4-45A5-86E8-438D25C5A044', N'', N'5739B165-3783-4A94-97E5-39F248658296', N'2.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5739B165-3783-4A94-97E5-39F248658296', N'C6396515-69E4-45A5-86E8-438D25C5A044', N'ܵ', NULL, N'ߡѹعװ¼', N'SH/T 3503J508', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 27) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C63EE523-CE80-4506-9B38-DA7972F31226', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'C63EE523-CE80-4506-9B38-DA7972F31226', N'Ӱ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ֱϵͳϣupsװ¼', N'SH/T 3503J510', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 52) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C6A195D8-3D27-4D39-8F8D-A838F96BF180', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'C6A195D8-3D27-4D39-8F8D-A838F96BF180', N'', N'װðװ̵豸ձ׼GB50150-2016', N'ѹ¼', N'SH/T 3543G504', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 12) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C6C219FD-1851-4591-84C9-DCB5735A3A6A', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'C6C219FD-1851-4591-84C9-DCB5735A3A6A', N'Եⶨ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̣װ¼', N'SH/T 3503J509', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 39) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C85B2C4E-4F50-4FFB-9577-D4BDBD4FB0D4', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.4', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'C85B2C4E-4F50-4FFB-9577-D4BDBD4FB0D4', N'', N'GB 50128-2008', N'δ޻ƫĿ¼', N'SH/T 3503-J208', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 591) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C88F6B5A-F16D-42A3-AC08-C168D6C028D6', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'C88F6B5A-F16D-42A3-AC08-C168D6C028D6', N'ڷ', N'GB 50093-2013 +SH/T 3521-2013', N'ڷִطУ¼', N'SH/T 3543G602', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 631) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C8D490EE-FD76-4EFE-A075-338C84B17F60', N'', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'5.6', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'C60A3DC6-5420-43E6-9512-EF2CCE5C4287', N'C8D490EE-FD76-4EFE-A075-338C84B17F60', N'', N'GB 50126-2008', N'ȹռ¼', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 248) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C9040838-5AE3-479C-BF4F-BA440087BFBB', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.13', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'C9040838-5AE3-479C-BF4F-BA440087BFBB', N'ϵͳй©/', NULL, N'ܵϵͳй©Լ¼', N'J407', N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 559) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C90E959C-B8B1-4E36-BFC9-ACDF219D1541', N'', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'6.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'C90E959C-B8B1-4E36-BFC9-ACDF219D1541', N'ܵ', N'GB 50093-2013 +SH/T 3521-2013', N'ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 671) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C92E73F9-CB42-4113-9079-96064093CE5B', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.6.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'C92E73F9-CB42-4113-9079-96064093CE5B', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 418) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C99222D5-66FC-4EC9-8962-E5B53CA6D257', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'C99222D5-66FC-4EC9-8962-E5B53CA6D257', N'Եⶨ', N'װðװתʩչ淶GB50170-2006', N'綯װм¼', N'SH/T 3503J506', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 69) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C9A6E1A0-76AD-41B3-9BC1-6E5B44100ED4', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'C9A6E1A0-76AD-41B3-9BC1-6E5B44100ED4', N'̽װ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 138) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'C9D89AC8-AD9A-4784-83B2-E8BFA65D39D0', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'C9D89AC8-AD9A-4784-83B2-E8BFA65D39D0', N'ԭϼϱȼ', NULL, N'ʵ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 265) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CABEBC46-1C9A-4CF6-9845-4E94275334A4', N'', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'2.2', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'19E88391-4515-4CCE-929A-D8CCCE1916E0', N'CABEBC46-1C9A-4CF6-9845-4E94275334A4', N'PQR/WPS׼', N'NB/T 47104 +NB/T 47015', N'PQR/WPS', N'PQR/WPS', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 589) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CAEA21D9-6F6B-4481-91B7-D71DB669B4D5', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'CAEA21D9-6F6B-4481-91B7-D71DB669B4D5', N'ˮϵͳϴ', NULL, N'ܵɨϴ¼', N'J408', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 487) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CB38F7EF-2023-4A0D-BF04-1D672E616BEE', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.3', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'CB38F7EF-2023-4A0D-BF04-1D672E616BEE', N'߰װ', N'ۺϲ߹չ淶GB50312-2016', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 149) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CBBE0A74-8839-4D16-A026-D83EBC7FCEF3', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'CBBE0A74-8839-4D16-A026-D83EBC7FCEF3', N'ֽƷ', N'GB50204-2015', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 294) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CBF697D3-2E75-422B-B8F2-A8EA51FAB9D6', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'CBF697D3-2E75-422B-B8F2-A8EA51FAB9D6', N'豸Ϻ˶', NULL, N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 104) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CC5119D6-A493-4ED7-92CA-1E26710A1CFB', N'', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'2.6', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'1195E9C6-53FC-4616-84AA-E6F7D9064363', N'CC5119D6-A493-4ED7-92CA-1E26710A1CFB', N'', N'GB 50461-2008', N'ⱨ', N'SH/T 3503J124~127', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 219) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CC6EDE4D-E049-4142-8ED2-074FE0573020', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'CC6EDE4D-E049-4142-8ED2-074FE0573020', N'ϼ()', NULL, N'ϸ֤/¼Ͳϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 549) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'', N'ʩ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 692) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'10', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'', N'𾯡رϵͳ', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 132) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CD7C86D4-1413-4D60-8A77-D6069ACEF07E', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'CD7C86D4-1413-4D60-8A77-D6069ACEF07E', N'͸ǶͿ', N'GB50207-2012', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 464) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CE1EC448-0F32-4059-BE21-1D9A959254BB', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.5.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'CE1EC448-0F32-4059-BE21-1D9A959254BB', N'ˮܷ', NULL, N'ϸռ¼', N'40104040204 +4020340404', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 475) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CEBD3E8C-AF34-46D9-AD44-F97D3B590375', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'CEBD3E8C-AF34-46D9-AD44-F97D3B590375', N'Ϳȼۼ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 529) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CEC054E3-AECF-4A6F-8F4B-E5E70CE31C22', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'CEC054E3-AECF-4A6F-8F4B-E5E70CE31C22', N'ӵذװ', N'װðװ̵·ʩչ淶GB50168-2006', N' ʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 92) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CEF60127-2CB3-4CB9-831A-CB4034A1F062', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'CEF60127-2CB3-4CB9-831A-CB4034A1F062', N'ɰɰʯػ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 258) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CF36FD51-1FC4-42B1-81A4-47254E0D4C3A', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.3', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'CF36FD51-1FC4-42B1-81A4-47254E0D4C3A', N'ƽ', N'GB 50461-2008', N'()ʽ豸װ¼', N'SH/T 3503J326/ J327', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 204) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CF4138F1-F79A-4FE1-AA05-5D5E1CB6B7B3', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'CF4138F1-F79A-4FE1-AA05-5D5E1CB6B7B3', N'', N'GB50212-2014', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 525) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CF5B8118-2F73-4085-A560-974B72B694F5', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.9', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'CF5B8118-2F73-4085-A560-974B72B694F5', N'װ', N'GB 50461-2008', N'豸¼', N'SH/T 3503J329', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 231) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CFB4A856-D75D-4F3B-A4BE-2292629415E3', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.9', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'CFB4A856-D75D-4F3B-A4BE-2292629415E3', N'ǰ', N'GB 50461-2008', N'ιռ¼', N'SH/T 3503J112', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 210) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'CFF737FA-CE7E-4A9B-8DDE-B720F67213C9', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'CFF737FA-CE7E-4A9B-8DDE-B720F67213C9', N'װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 492) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D03AADEA-8EF5-4EE8-9775-5B42EC66D25C', N'', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'7.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'C6365EDD-2A55-407E-891F-ADBD7F7BCFE0', N'D03AADEA-8EF5-4EE8-9775-5B42EC66D25C', N'ۼܰװԿ', N'GB 50093-2013 +SH/T 3521-2013', N'²/żܰװ¼', N'SH/T 3543G615', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 678) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D042C5F7-BFCD-4D06-8681-F7E0374C9989', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'D042C5F7-BFCD-4D06-8681-F7E0374C9989', N'ȼǿ(ϱ)', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 361) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D0E4E097-D72D-4F26-B2FF-CB2E247DAB0D', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'D0E4E097-D72D-4F26-B2FF-CB2E247DAB0D', N'ģ', N'װðװתʩչ淶GB50170-2006', N'綯װ鼰м¼ ', N'SH/T 3503J506', N'A', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 71) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D17CC28A-CA07-4B8E-B6C6-03788F0D95AF', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'D17CC28A-CA07-4B8E-B6C6-03788F0D95AF', N'Դϵͳֱ', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ͵ȷϱ', N'SH/T 3503J606', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 654) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D1CA5389-391E-47CD-B5A9-7AB1F99DDF78', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.9.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'D1CA5389-391E-47CD-B5A9-7AB1F99DDF78', N'Ϳˢܺȼۼ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 353) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D1EB0F8F-7270-40AE-A11D-90F637958D5F', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'D1EB0F8F-7270-40AE-A11D-90F637958D5F', N'ϽŴװ', NULL, N'Ŵ(֡ϽͿɫпŴ)ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 393) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D1FCD209-8DA5-4347-95B0-EEA8C737A9F6', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'D1FCD209-8DA5-4347-95B0-EEA8C737A9F6', N'ǰ', NULL, N'ι̼¼', N'J211', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 452) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D2A9D97B-064F-4D38-978B-763ECF059B50', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.10', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'D2A9D97B-064F-4D38-978B-763ECF059B50', N'ֽǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 308) +GO +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D2EDF767-566D-4C38-8D07-8322369F1826', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.4', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'D2EDF767-566D-4C38-8D07-8322369F1826', N'豸ӡ', N'GB 50231-2009', N'Ӽ¼ +豸¼ +ʽ豸¼ +۲¼', N'SH/T 3543G112 +SH/T 3503-J204 +SH/T 3503J205 +SH/T 3503J209', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 177) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D34EAE29-3248-4006-A9D6-075BBE444523', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'D34EAE29-3248-4006-A9D6-075BBE444523', N'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 298) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D3F4E840-E2BE-4019-AFC6-E33FE26F688A', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'D3F4E840-E2BE-4019-AFC6-E33FE26F688A', N'ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 460) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D402C1A3-6AA1-4F43-95B2-5BB68FC7DFB5', N'', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'6.3', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'74C991F5-8D15-49A4-AA35-BDB4E8BEA1E1', N'D402C1A3-6AA1-4F43-95B2-5BB68FC7DFB5', N'װ', N'GB 50093-2013 +SH/T 3521-2013', N'ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 672) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D4640C86-A82D-4D7E-B028-B0662818861A', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'D4640C86-A82D-4D7E-B028-B0662818861A', N'ӵذװ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'ӵص¼', N'SH/T 3503J509 +SH/T 3503J122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 33) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D5900DF8-AEC7-4D40-94A3-CEC91ED8AF15', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'D5900DF8-AEC7-4D40-94A3-CEC91ED8AF15', N'ѹ', NULL, N'ѹ¼', N'G406', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 480) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D5F00268-7769-438C-A14C-4A8DE08503AC', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.9.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'D5F00268-7769-438C-A14C-4A8DE08503AC', N'ֽṹ⼰ǰ', NULL, N'ι̼¼', N'J211', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 351) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D5F82E57-8FBF-42FA-AA0F-EC71102E3A26', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.8', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'D5F82E57-8FBF-42FA-AA0F-EC71102E3A26', N'ܷ', NULL, N' ʩ¼', N'SH/T 3543G122', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 111) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D61159D2-2EEA-42A7-A770-3026760613CD', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'D61159D2-2EEA-42A7-A770-3026760613CD', N'ת', NULL, N'ת¼', N'J318-2', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 523) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D6BA4BF7-8626-44BE-B668-BEF30C171984', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'D6BA4BF7-8626-44BE-B668-BEF30C171984', N'װ', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'ѹװ¼', N'SH/T 3503J507', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 7) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D7652181-0E46-465C-A17B-3FEEB8E07DCF', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.1', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'D7652181-0E46-465C-A17B-3FEEB8E07DCF', N'豸', N'GB 50461-2008', N'¼', N'SH/T 3503-J117', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 202) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'', N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4', 2, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'', N'ֱϵͳϵԴ(UPS)', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 44) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D7DD162B-9039-4997-823E-6FBD24EA8377', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.3', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'D7DD162B-9039-4997-823E-6FBD24EA8377', N'', N'οTSG Z6002', N'ϸ񺸹ǼDZ', N'SH/T 3503-J115', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 576) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D7E4C8E3-1364-4AD2-B97A-D078BC3E7BB1', N'', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'4.15', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'D7BB4EE6-BFDD-4E58-BE02-6DBF41B2EEC1', N'D7E4C8E3-1364-4AD2-B97A-D078BC3E7BB1', N'', NULL, N'ֱϵͳװ¼ ', N'SH/T 3503J510', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 59) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D85BB6D4-7654-49DB-B092-EA18751B4E69', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.2.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'D85BB6D4-7654-49DB-B092-EA18751B4E69', N'ܼװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 516) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D865411F-27A0-449E-9C9E-6C0428865296', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'D865411F-27A0-449E-9C9E-6C0428865296', N'ԭϼ', NULL, N'ϸ֤̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 479) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'D95EBF2C-83D8-4105-807D-8BE238320292', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.13', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'D95EBF2C-83D8-4105-807D-8BE238320292', N'ͨǰ', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̣װ¼', N'SH/T 3503J509', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 41) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DA1A673C-B9D4-4FBC-B9D0-B1A5A5FC0A00', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.3.12', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'DA1A673C-B9D4-4FBC-B9D0-B1A5A5FC0A00', N'(豸)۲(Ҫʱ)', NULL, N'۲¼', N'J209', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 310) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DA48333C-CB49-42A5-B96A-D050503A6D68', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.3.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'DA48333C-CB49-42A5-B96A-D050503A6D68', N'һĨҷ', NULL, N'һĨҹռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 400) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DA627E63-3978-4228-805A-D89370C624AC', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'DA627E63-3978-4228-805A-D89370C624AC', N'ܷ', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'ѹװ¼', N'SH/T 3503J507', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 10) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DACF9CEF-EF72-45DF-98BB-06F55532B147', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'DACF9CEF-EF72-45DF-98BB-06F55532B147', N'()У', N'װðװ̡񼰶λ·ʩչ淶GB50171-2012', N'̣װ¼', N'SH/T 3503J509', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 35) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DB2EA5A3-0379-4F46-BA77-6F3F617B5A6E', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.13', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'DB2EA5A3-0379-4F46-BA77-6F3F617B5A6E', N'', NULL, NULL, NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 128) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DB7B9F92-1B49-468A-81F6-187CFA5A1A4E', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'DB7B9F92-1B49-468A-81F6-187CFA5A1A4E', N'롢װ', N'װðװ̽ӵװʩչ淶GB50169-2016', N' ʩ¼', N'SH/T 3543G122', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 82) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DBB7E4EE-E675-4E91-A841-CFB6FED0C6BB', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.7.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'DBB7E4EE-E675-4E91-A841-CFB6FED0C6BB', N'һ㹹Լ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 336) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DD27350E-9878-4B2F-8E3D-F187DB92FC07', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.5', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'DD27350E-9878-4B2F-8E3D-F187DB92FC07', N'', N'GB 50231-2009', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 178) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DD3C5C29-E67B-4035-B137-4DE768074B39', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.1', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'DD3C5C29-E67B-4035-B137-4DE768074B39', N'豸Ϻ˶', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'豸¼', N'SH/T 3503J117', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 3) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DD70AB5E-64A4-43E9-A67F-44B88CC0DA67', N'', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'6.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'061D9215-F303-4867-9293-B7464AD4B5DE', N'DD70AB5E-64A4-43E9-A67F-44B88CC0DA67', N'ϵͳװ', N'ظƹܵ淶GB/T 21448-2008', N' ϵͳʩ¼', N'SH/T 3543G122', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 78) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DDBE7DEE-6163-44B8-9B9B-7B8501B14015', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'DDBE7DEE-6163-44B8-9B9B-7B8501B14015', N'ģ', N'GB50204-2015', N'ģ(װԤƹ)(I)(II)(III) ռ¼', N'O10601,020101', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 290) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DE0DE623-0F53-4282-9476-1069DAB336B9', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.9.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'DE0DE623-0F53-4282-9476-1069DAB336B9', N'尲װƽȡӷѹȹ̼', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 438) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DE37EF2C-7611-415A-8C0A-98F245B2A972', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'DE37EF2C-7611-415A-8C0A-98F245B2A972', N'׮ͷ߲', NULL, N'Լ¼', NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 568) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DE5D30B8-719A-4C83-82B9-FB6B2D7153F7', N'', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'3.14', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'66E10EBB-711E-4F8B-9C4B-63BD4D3CA978', N'DE5D30B8-719A-4C83-82B9-FB6B2D7153F7', N'ģ', N'װðװ̵豸ձ׼GB50150-2016', N'̣װ¼', N'SH/T 3503J509', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 42) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DEA34E87-9D82-45BD-847C-63DE8BD45EB8', N'', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'2.1', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'DEA34E87-9D82-45BD-847C-63DE8BD45EB8', N'ʩ', N'GB 50275-2010', N'ʩ¼', N'¼', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 174) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DEDA2B07-E6B2-49B3-9B97-1FFE35C01CC3', N'', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'5.6', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'77F96549-52C9-49D2-8BCF-561A011575FF', N'DEDA2B07-E6B2-49B3-9B97-1FFE35C01CC3', N'ܷ', N'װðװ̱ըͻΣջװʩչ淶GB50257-2014', N' ܷʩ¼', N'SH/T 3543G122', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 66) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DF7F75A6-AE4E-4D2D-8D2E-91C2683FC856', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'DF7F75A6-AE4E-4D2D-8D2E-91C2683FC856', N'¥', N'GB50209-2010', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 357) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DFA4CE03-3E55-45F4-B7DF-AFE0EF852DC0', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.8', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'DFA4CE03-3E55-45F4-B7DF-AFE0EF852DC0', N'ƽ̨ݡ', N'GB 50461-2008', NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 230) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'DFC7737C-2A93-4688-863B-C1AD22ECD06A', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.9', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'DFC7737C-2A93-4688-863B-C1AD22ECD06A', N'ܼװ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 540) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E1486E87-468B-43A4-89D4-8AB9C3963971', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'E1486E87-468B-43A4-89D4-8AB9C3963971', N'ֽṹװλáߡֱȵȼ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 343) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E19ED48D-3CD3-470A-815F-2BB92A6B6F8D', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.1', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'E19ED48D-3CD3-470A-815F-2BB92A6B6F8D', N'ʩ', N'GB 50278-2010', N'ʩ¼', N'¼', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 192) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E1BF8A80-60F4-4C05-8240-AFA705EC9A4C', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'E1BF8A80-60F4-4C05-8240-AFA705EC9A4C', N'崦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 396) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E2EE8A47-FB8C-4C11-A0B1-B3656BF17556', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'E2EE8A47-FB8C-4C11-A0B1-B3656BF17556', N'ľŴװ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 379) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'', N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'2', 2, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'E30F9F00-052D-4D31-ACF5-3774CB442FDE', N'', N'', NULL, NULL, N'', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 173) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E346D1B2-68A7-41CD-80BA-AB9EC8403013', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'10', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'E346D1B2-68A7-41CD-80BA-AB9EC8403013', N'', N'̵λ', N'GB50300-2013', N'ռ¼', NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 571) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E3646A43-A13C-4D0D-BB89-C78C4C766B4A', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'E3646A43-A13C-4D0D-BB89-C78C4C766B4A', N'·װ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 141) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E36754DB-97B3-4FB6-B3D2-76B75EBF9DAE', N'', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'1.2', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'9772319F-1FFD-4359-AFEA-EDE945FF4DAA', N'E36754DB-97B3-4FB6-B3D2-76B75EBF9DAE', N'PQR/WPS׼', N'NB/T 47104 +NB/T 47015', N'PQR/WPS', N'PQR/WPS', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 575) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E3709033-D3A4-4269-B2DA-B81B25A1F08F', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.9.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'E3709033-D3A4-4269-B2DA-B81B25A1F08F', N'ֽṹͿϷ', NULL, N'ͿͿװռ¼ +ͿͿװռ¼', N'10905020410 +10906020411', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 354) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E4C431DB-0B3A-41C0-821F-D76B8845E538', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.4.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'E4C431DB-0B3A-41C0-821F-D76B8845E538', N'Ԥƹװ', NULL, N'ṹռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 317) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E5288DDB-AF1B-43BF-9F54-6F75DAAFA99D', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'7.1.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'E5288DDB-AF1B-43BF-9F54-6F75DAAFA99D', N'ܡ', NULL, N'ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 512) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E67F1C68-6694-4282-B353-0F3DADD78C0F', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'E67F1C68-6694-4282-B353-0F3DADD78C0F', N'Ŵ', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 377) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E6970FDF-B047-4F7F-8787-750FB5B97595', N'', N'2A673425-E099-446B-ADAA-46B548428A71', N'1.2', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'2A673425-E099-446B-ADAA-46B548428A71', N'E6970FDF-B047-4F7F-8787-750FB5B97595', N'豸顢', N'GB 50461-2008', N'豸¼ +ʽ豸¼', N'SH/T 3503-J204 +SH/T 3503J205', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 203) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E6985716-6D83-4FA1-BE85-022F57C8F5C4', N'', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'9.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'E6985716-6D83-4FA1-BE85-022F57C8F5C4', N'', N'GB 50093-2013 +SH/T 3521-2013', N'ȹռ¼', N'SH/T 3503J119', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 697) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E69D5AA0-2800-4FA4-BE1B-BB1BF16E8566', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'E69D5AA0-2800-4FA4-BE1B-BB1BF16E8566', N'ʼճɰϱȼ', NULL, N'ϸ֤ʵ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 372) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E6A15ECA-C14D-46DA-BE54-7082057937FD', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.10', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'E6A15ECA-C14D-46DA-BE54-7082057937FD', N'ɫ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 125) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E72A5C5E-FFFA-4822-BD7F-33BB622DF5F6', N'', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'10.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'CD76E0C9-46CD-4FC5-BB01-9DAF3EF05935', N'E72A5C5E-FFFA-4822-BD7F-33BB622DF5F6', N'ߺ()װ', NULL, N'ֱϵͳװ¼', N'SH/T 3503J511', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 143) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E7467479-0036-499B-87CD-E10B99F601D0', N'', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'9.1', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'CCB02D99-666F-4DE1-AC38-C62819F408D0', N'E7467479-0036-499B-87CD-E10B99F601D0', N'еܵӼ', N'GB 50093-2013 +SH/T 3521-2013', N'ȹռ¼', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 693) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E7C75B7C-3E33-4B3E-B45E-482339A4CEA2', N'', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'1.7', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'5D2E015A-35ED-4FE2-9FE6-F976E095D54B', N'E7C75B7C-3E33-4B3E-B45E-482339A4CEA2', N'͡ע', N'װðװ̵ѹͽ翹ʩչ淶GB50148-2010', N'ѹװ¼', N'SH/T 3503J507', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 9) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E7EADA58-A8F5-4B94-AEAA-4DFEA51DA7A9', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.9.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'E7EADA58-A8F5-4B94-AEAA-4DFEA51DA7A9', N'ǰװˮƽ,Ǽ,,˼', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 436) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E82C69FE-4661-44EE-9942-AC22BE80EBFD', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'E82C69FE-4661-44EE-9942-AC22BE80EBFD', N'ܹ߶λ', NULL, N'̶λ¼', N'J203', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 547) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E887A1D2-343F-45CF-A594-94DFAF6B6648', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1.6', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'E887A1D2-343F-45CF-A594-94DFAF6B6648', N'ģӷ촦', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 289) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E9491D50-0A4E-42E3-BC19-945D01F5E20E', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'E9491D50-0A4E-42E3-BC19-945D01F5E20E', N'ԭϼ', N'GB50204-2015', N'ֽϸ֤Ա漰̲ϱ鵥', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 292) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E981A8B1-B32C-4E8B-81BA-4C27694B67DC', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'E981A8B1-B32C-4E8B-81BA-4C27694B67DC', N'ռ', NULL, N'豸鵥¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 520) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'E9E56F3F-2CE0-4BA6-B5D9-02A3DF9C81D5', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.3.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'E9E56F3F-2CE0-4BA6-B5D9-02A3DF9C81D5', N'跽ճ̶ȼ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 461) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'EB017394-4AA0-44CF-9B6B-A2D7D839FC83', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.3.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'EB017394-4AA0-44CF-9B6B-A2D7D839FC83', N'Ĩòϱȼ', NULL, NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 395) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'ED00C05E-8DD5-4564-8F8F-56959BE4731B', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.8.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'ED00C05E-8DD5-4564-8F8F-56959BE4731B', N'ӷ졢򡢵ˮߡη', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 430) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'ED04DDFE-D1DE-45C1-BC06-5C836F7B3D4E', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'ED04DDFE-D1DE-45C1-BC06-5C836F7B3D4E', N'', N'GB50210-2018', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 422) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'', N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'1', 2, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'', N'DZ(䡢̨)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 618) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'EE105F1E-9FAA-4077-8CDB-6FAF88D562A2', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'EE105F1E-9FAA-4077-8CDB-6FAF88D562A2', N'ģɨͿˢ', N'GB50204-2015', N'ģ(װԤƹ)(I)(II)(III) ռ¼', N'O10601 +20101', N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 284) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'EE559AEE-9A47-45E8-9A90-325E5F0F0314', N'', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'1.5', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'ED0832F2-1189-4E40-BB26-AF4A777A4EA8', N'EE559AEE-9A47-45E8-9A90-325E5F0F0314', N'ӵϵͳ·', N'GB 50093-2013 +SH/T 3521-2013', N'ӵص¼', N'SH/T 3503J122', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 623) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'EE5BF731-D363-4713-A2E7-970D1DB97E54', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.5.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'EE5BF731-D363-4713-A2E7-970D1DB97E54', N'ԭϼɰϱȼ', NULL, N'ԭϺϸ֤ɰϱȱ', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 320) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'EF02D35A-75D4-4C46-A3A2-EA5BCD38A65B', N'', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'7.5.7', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'20E63CD6-DA23-4BED-9613-81BB308A5063', N'EF02D35A-75D4-4C46-A3A2-EA5BCD38A65B', N'', NULL, N'¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 538) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F063044E-FFBA-47D4-810D-53D7990CC685', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.1.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'F063044E-FFBA-47D4-810D-53D7990CC685', N'ԭϼϱȼ', NULL, N'ϸ֤ʵ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 359) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F09F518B-4FB0-41DF-993B-36EB7FC25001', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.12', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'F09F518B-4FB0-41DF-993B-36EB7FC25001', N'ϵͳɨ/ϴ', NULL, N'ܵɨϴ¼', N'J408', N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 558) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F18EF7A6-6BA3-4C66-A588-537E4C9C54B2', N'', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'5.3.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'F18EF7A6-6BA3-4C66-A588-537E4C9C54B2', N'ˮܵλáߡ¶ȼֱ״', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 496) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F33E1957-D102-4F3C-A975-722044308A5B', N'', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'5.6', 3, N'32595923-26C2-4BEC-ABAF-CDC3A7B4BFCE', N'1D7CDB9B-F008-4020-820F-35592B462E99', N'F33E1957-D102-4F3C-A975-722044308A5B', N'', N'GB 50126-2008', N'ȹռ¼ ', N'SH/T 3503J119', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:06:32.760' AS DateTime), 616) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F3995A72-2144-4150-8255-6F08A0892B03', N'', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'8.9', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'73666F26-2B0A-4383-818A-A4709C2B2E65', N'F3995A72-2144-4150-8255-6F08A0892B03', N'Եⶨ', NULL, N'װ¼', N'SH/T 3543G525', N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 112) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F39EA9A2-CAB7-457F-8817-56DD53DFB426', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'F39EA9A2-CAB7-457F-8817-56DD53DFB426', N'ݡˡƽ̨ӵ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 344) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F3AE0D7B-B7D4-480F-ACB3-D2CB63B8CD4E', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.2', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'F3AE0D7B-B7D4-480F-ACB3-D2CB63B8CD4E', N'վ豸װ', N'ϵͳʩ淶 GB50949-2013', NULL, NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 148) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F3C3DD20-1214-461A-B223-094CD5196FAB', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'F3C3DD20-1214-461A-B223-094CD5196FAB', N'ֽṹװ', N'GB50205-2020', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 340) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F4229FA0-20B1-46F8-BBD0-27CC5573B39D', N'', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'3.8', 3, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'75282620-DBBB-4AD5-82B2-F04B62728C6D', N'F4229FA0-20B1-46F8-BBD0-27CC5573B39D', N'', N'GB 50278-2010', N'ػеȷϱ +ػ¼', N'SH/T 3543-G812 +SH/T 3543-G814', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 199) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'', N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'5', 2, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'F458166B-5B11-4F41-A5D0-DB0C48DC6452', N'', N'ˮˮů', N'GB50242-2002', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 477) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F4D05ED6-F9D8-417D-9557-320859C92B15', N'', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'7.12', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'0FEE9020-93F0-43F2-B2B8-7B95F6DE0E0F', N'F4D05ED6-F9D8-417D-9557-320859C92B15', N'ιռ¼', N'װðװ̵·ʩչ淶GB50168-2006', N'ι̼¼ ', N'SH/T 3503J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 98) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F552BA00-D7DF-4C2D-965A-1DDCD10C51A4', N'', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'11.5', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'BCEF233B-D451-4E3E-B4AF-50031718D064', N'F552BA00-D7DF-4C2D-965A-1DDCD10C51A4', N'ܰװ', NULL, NULL, NULL, N'CR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 151) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F5601E19-33A0-46A8-B1F7-2EF3728786CB', N'', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'3.2', 3, N'AF4725CF-8271-461A-AFBD-91C27A3FDF69', N'44D0F31C-28CB-4A28-9B14-1365F03E4674', N'F5601E19-33A0-46A8-B1F7-2EF3728786CB', N'豸顢', N'GB 50461-2008', N'豸¼/ʽ豸¼', N'SH/T 3503-J204 +SH/T 3503J205', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T11:15:58.220' AS DateTime), 224) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F567AABA-4C1E-48E9-81AC-FA85167C7411', N'', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'5.2', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9E07F2AC-EAC9-4D87-BFEA-4FACD4759981', N'F567AABA-4C1E-48E9-81AC-FA85167C7411', N'DZ +ɫ׺', N'GB 50093-2013 +SH/T 3521-2013', N'ǵУ¼', N'SH/T 3543G607', NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 662) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F636B16E-BFC1-4795-9DAE-17C4FD484935', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.2.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'F636B16E-BFC1-4795-9DAE-17C4FD484935', N'ԭϼϱȼ', NULL, N'ϸ֤ʵ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 366) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F6B7CFFD-2021-4C32-BA31-9F7F7EB181DD', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.2.4.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'F6B7CFFD-2021-4C32-BA31-9F7F7EB181DD', N'ϽŴ븽װ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 391) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F749A4C2-482B-4D34-99B9-FA21AEC10B88', N'', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'2.13', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'AE1C919C-7482-4B37-B153-AD1C5828EFD1', N'F749A4C2-482B-4D34-99B9-FA21AEC10B88', N'ϵͳ', N'GB 50093-2013 +SH/T 3521-2013', N'УԼ¼', N'SH/T 3503J610-1', N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 642) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F88D98D1-9B8D-48AC-9A5D-58803CE30829', N'', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'9.11', 3, N'445B1EE6-901E-4A07-A4AB-4EE1066E742F', N'4925E3ED-F4BE-4850-8A57-1C8C0EC21B2D', N'F88D98D1-9B8D-48AC-9A5D-58803CE30829', N'ߡ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-09T23:05:54.477' AS DateTime), 126) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F8D4106C-DE31-4108-B17A-2491786953E0', N'', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'2.9.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'2CF147A3-6CA0-4A89-9D11-2272D1D2D1D2', N'F8D4106C-DE31-4108-B17A-2491786953E0', N'ͿϽռ', NULL, N'ϸ֤ʵ鱨', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 350) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F8ED061D-0331-4641-A0DC-7F462B09E43E', N'', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'3.9', 3, N'1E44777E-F054-4389-A0DE-E51658B4EA43', N'9C02E125-3E85-4098-8405-7561C662A3B3', N'F8ED061D-0331-4641-A0DC-7F462B09E43E', N'Դϵͳ', N'GB 50093-2013 +SH/T 3521-2013', N'ۺϿϵͳ͵ȷϱ', N'SH/T 3503J606', N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T14:18:03.923' AS DateTime), 653) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F93751EC-6D8F-4E7C-8AB4-D4F1A10DBEB9', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.4.4', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'F93751EC-6D8F-4E7C-8AB4-D4F1A10DBEB9', N'͸Ƕ졢ճ̶ȼͿͿˢ', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 468) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'F99FA771-1DF9-44ED-A32C-7E09E8A58A73', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.3.3', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'F99FA771-1DF9-44ED-A32C-7E09E8A58A73', N'ʽƽȼ', NULL, NULL, NULL, N'B', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 374) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'FA58922B-F345-4F52-931D-89C18761BBE7', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.15', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'FA58922B-F345-4F52-931D-89C18761BBE7', N'', NULL, N'ι̼¼', N'J112', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 561) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'FACEE9AE-05A9-4123-9748-8F059C22CDEF', N'', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'3.1.2.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'73706C84-6B6D-43C3-8BD0-7D77C3EFFBC7', N'FACEE9AE-05A9-4123-9748-8F059C22CDEF', N'¥', NULL, N'ˮ㹤ռ¼ +ˮĥʯ㹤ռ¼ +ˮм㹤ռ¼ +㹤ռ¼ +()㹤ռ¼', N'30102 +30103 +30104 +30105 +30106', N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 370) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'FD141FA9-8D63-4D96-9A44-0666482615B9', N'', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'1.8', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'A80620A3-337E-4E9A-BEB9-739C91419BE5', N'FD141FA9-8D63-4D96-9A44-0666482615B9', N'ػֲ', NULL, N'ػռ¼', NULL, N'AR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 281) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'FD82E2E5-F313-4318-839F-875E3B4F80DB', N'', N'30690019-2640-4E89-BEB3-439D56FC2521', N'9.5', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'30690019-2640-4E89-BEB3-439D56FC2521', N'FD82E2E5-F313-4318-839F-875E3B4F80DB', N'ֽװ', N'GB50204-2015', N'ֽ(ӹװ)(I)(II) ռ¼', NULL, N'BR', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 566) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'FDC58802-D76F-402F-B45A-7C3C6CB1FA0F', N'', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'8.1', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'680CECB2-7942-4E71-A469-DD6DC045F536', N'FDC58802-D76F-402F-B45A-7C3C6CB1FA0F', N'ϵͳǿ', NULL, N'ˮѹܵǿȼ¼', N'J409-A', N'A2R', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 556) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'', N'', N'0', 1, N'FDFD3438-5B0F-4BFB-8145-9326E5A8E20F', N'', N'', N'豸', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-12T23:48:12.583' AS DateTime), 156) +INSERT [dbo].[Control_PointCropping] ([ControlId], [ProjectId], [ParentId], [ControlCode], [ControlLevel], [PlanId], [PlanTypeId], [SubItemsId], [DetectionItems], [BasedCriterion], [QualityRecordName], [RecordNumber], [Partition], [Subcontractors], [FiveRings], [Supervision], [Owner], [Remark], [AddUser], [OperateTime], [Sort]) VALUES (N'FF2251A3-B14B-4030-A816-08FB00814050', N'', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'4.5.2', 3, N'6BB8AEFB-AB59-4A13-BB9F-BB6AB30A8577', N'208249AA-B4EF-4E0A-A0BD-A70721938AAB', N'FF2251A3-B14B-4030-A816-08FB00814050', N'Ӻ͹̶', NULL, NULL, NULL, N'C', NULL, NULL, NULL, NULL, N'', N'C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0', CAST(N'2024-05-14T13:54:15.850' AS DateTime), 473) +GO \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 4eca2a70..2849b8fd 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -18815,7 +18815,7 @@ - + diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user index 6b113dbb..f37d9d22 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -1,7 +1,7 @@  - Release|Any CPU + Debug|Any CPU true false @@ -12,29 +12,5 @@ ShowAllFiles D:\数据\诺必达\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Properties\PublishProfiles\FolderProfile1.pubxml - - - - - - - CurrentPage - True - False - False - False - - - - - - - - - True - False - - - - + \ No newline at end of file From 6772ede7b52fd873580b919f4eea32ece9204284 Mon Sep 17 00:00:00 2001 From: wangqing <945983254@qq.com> Date: Tue, 14 May 2024 23:35:36 +0800 Subject: [PATCH 5/7] 3 --- SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 2849b8fd..4eca2a70 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -18815,7 +18815,7 @@ - + From d039fc4960fac4dff3e0ca6f952fb358df518ee5 Mon Sep 17 00:00:00 2001 From: wangqing <945983254@qq.com> Date: Tue, 14 May 2024 23:36:11 +0800 Subject: [PATCH 6/7] 3 --- SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 4eca2a70..2849b8fd 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -18815,7 +18815,7 @@ - + From eb224b4fbbfe08f8fbf9424cca462e3aa7bfb995 Mon Sep 17 00:00:00 2001 From: wangqing <945983254@qq.com> Date: Tue, 14 May 2024 23:36:51 +0800 Subject: [PATCH 7/7] =?UTF-8?q?vs2017=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 2849b8fd..4eca2a70 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -18815,7 +18815,7 @@ - +