From 21f044712cd15fde4dec0a99b79560a7e8d3caec Mon Sep 17 00:00:00 2001 From: "Asoka.Wang" Date: Wed, 27 Aug 2025 18:39:19 +0800 Subject: [PATCH] 1 --- .claude/settings.local.json | 30 + .cursor/rules/sse.mdc | 7 + .dockerignore | 25 + .gitattributes | 63 + .gitignore | 403 + .idea/.idea.NPP.SmartSchedue/.idea/.name | 1 + .../.idea/indexLayout.xml | 8 + .../.idea/projectSettingsUpdater.xml | 8 + .idea/.idea.NPP.SmartSchedue/.idea/vcs.xml | 6 + .../.idea/workspace.xml | 234 + CLAUDE.md | 130 + LICENSE | 21 + .../Core/Consts/DbConsts.cs | 22 + .../Core/Consts/SubscribeNames.cs | 8 + .../Core/Enums/EquipmentStatusEnum.cs | 85 + .../Core/Enums/ProcessCategoryEnum.cs | 37 + .../Core/Enums/QualificationLevelEnum.cs | 38 + .../Enums/QualificationRequirementTypeEnum.cs | 32 + .../Core/Enums/ShiftRuleTypeEnum.cs | 57 + .../Core/Enums/WorkOrderStatusEnum.cs | 42 + .../Domain/Common/DateRange.cs | 632 ++ .../Equipment/EquipmentCalibrationEntity.cs | 226 + .../Domain/Equipment/EquipmentEntity.cs | 200 + .../Equipment/EquipmentMaintenanceEntity.cs | 176 + .../IEquipmentCalibrationRepository.cs | 33 + .../IEquipmentMaintenanceRepository.cs | 33 + .../Domain/Equipment/IEquipmentRepository.cs | 126 + .../IIntegrationRecordRepository.cs | 389 + .../Integration/IntegrationChangeDetails.cs | 338 + .../Integration/IntegrationLifecycleStage.cs | 74 + .../Integration/IntegrationRecordEntity.cs | 721 ++ .../Domain/Integration/IntegrationSnapshot.cs | 209 + .../Integration/TaskChangeEventEntity.cs | 586 ++ .../IPersonnelQualificationRepository.cs | 19 + .../IPersonnelWorkLimitRepository.cs | 11 + .../Personnel/IQualificationRepository.cs | 11 + .../Domain/Personnel/PersonnelEntity.cs | 72 + .../Personnel/PersonnelQualificationEntity.cs | 58 + .../Personnel/PersonnelWorkLimitEntity.cs | 34 + .../Domain/Personnel/QualificationEntity.cs | 31 + .../Domain/Time/CalendarEntity.cs | 35 + .../Domain/Time/EmployeeLeaveEntity.cs | 89 + .../Domain/Time/ICalendarRepository.cs | 11 + .../Domain/Time/IEmployeeLeaveRepository.cs | 11 + .../IPersonnelShiftAssignmentRepository.cs | 11 + .../Domain/Time/IShiftRepository.cs | 11 + .../Time/IShiftRuleMappingRepository.cs | 31 + .../Domain/Time/IShiftRuleRepository.cs | 22 + .../Time/PersonnelShiftAssignmentEntity.cs | 67 + .../Domain/Time/ShiftEntity.cs | 57 + .../Domain/Time/ShiftRuleEntity.cs | 72 + .../Domain/Time/ShiftRuleMappingEntity.cs | 55 + .../Work/IProcessGroupRelationRepository.cs | 11 + .../Domain/Work/IProcessGroupRepository.cs | 11 + .../Domain/Work/IProcessRepository.cs | 11 + .../Work/IWorkOrderFLPersonnelRepository.cs | 51 + .../Domain/Work/IWorkOrderRepository.cs | 80 + .../Domain/Work/ProcessEntity.cs | 74 + .../Domain/Work/ProcessGroupEntity.cs | 41 + .../Domain/Work/ProcessGroupRelationEntity.cs | 49 + .../Domain/Work/WorkOrderEntity.cs | 275 + .../Domain/Work/WorkOrderFLPersonnelEntity.cs | 41 + .../NPP.SmartSchedue.Api.Contracts.csproj | 52 + .../Equipment/IEquipmentRepository.cs | 14 + .../Equipment/Dto/EquipmentListOutput.cs | 76 + .../Dto/EquipmentTypeStatisticsOutput.cs | 149 + .../Dto/EquipmentTypeTaskAllocationOutput.cs | 322 + .../Equipment/Dto/EquipmentTypeTrendOutput.cs | 511 + .../Equipment/Dto/EquipmentTypeUsageOutput.cs | 190 + .../Equipment/Dto/GetEquipmentListInput.cs | 37 + .../Equipment/IEquipmentLocalService.cs | 64 + .../Services/Equipment/IEquipmentService.cs | 46 + .../Equipment/IEquipmentStatisticsService.cs | 65 + .../IEquipmentAllocationService.cs | 17 + .../Integration/IEquipmentClientService.cs | 67 + .../IGlobalPersonnelAllocationService.cs | 35 + .../Integration/IIntegrationRecordService.cs | 97 + .../IPersonnelAllocationService.cs | 14 + .../ISmartScheduleOrchestratorService.cs | 6 + .../ITaskIntegrationPreCheckService.cs | 30 + .../Integration/ITaskValidationService.cs | 29 + .../Input/CancelIntegrationRecordInput.cs | 101 + .../Input/GlobalAllocationInput.cs | 194 + .../Input/IntegrationRecordGetListInput.cs | 39 + .../Input/IntegrationRecordTaskModifyInput.cs | 81 + .../Input/LoadPendingTasksInput.cs | 114 + .../Integration/Input/OptimizationWeights.cs | 805 ++ .../PersonnelAllocationRecommendationInput.cs | 366 + .../PersonnelAllocationValidationInput.cs | 613 ++ .../Input/ProcessTaskChangesInput.cs | 424 + .../Input/PublishIntegrationRecordInput.cs | 113 + .../Input/SmartIntegrationInput.cs | 292 + .../Internal/FinalValidationResult.cs | 37 + .../GlobalAllocationInternalModels.cs | 1206 +++ .../Integration/Models/AllocationContext.cs | 60 + .../Models/PersonnelWorkloadAnalysis.cs | 133 + .../Integration/Models/ValidationModels.cs | 852 ++ .../Output/AllocationGenerationResult.cs | 1027 ++ .../Output/CancelIntegrationRecordResult.cs | 324 + .../Output/CompleteIntegrationRecordResult.cs | 262 + .../Output/ConstraintEvaluationResult.cs | 22 + .../Integration/Output/EquipmentBasicInfo.cs | 73 + .../Output/EquipmentUsageStatistics.cs | 103 + .../Output/GlobalAllocationAnalysisResult.cs | 408 + .../Output/GlobalAllocationResult.cs | 442 + .../Output/IntegrationPerformanceMetrics.cs | 220 + .../Output/IntegrationRecordDetail.cs | 251 + .../Output/IntegrationRecordListOutput.cs | 94 + .../Output/IntegrationRecordModifyResult.cs | 133 + .../IntegrationRecordValidationResult.cs | 109 + .../IntegrationRecordWithTasksOutput.cs | 120 + .../Output/OptimizationWeightsResult.cs | 1304 +++ .../PersonnelAllocationRecommendation.cs | 484 + .../PersonnelAllocationValidationResult.cs | 890 ++ .../Output/ProcessTaskChangesResult.cs | 832 ++ .../Integration/Output/ProcessorResult.cs | 337 + .../Output/PublishIntegrationRecordResult.cs | 349 + .../Integration/Output/PublishOutputModels.cs | 97 + .../Output/SmartIntegrationOutput.cs | 337 + .../Output/SmartIntegrationResult.cs | 221 + .../Output/SmartReallocationResult.cs | 968 ++ .../Output/TaskChangeAnalysisResult.cs | 256 + .../Integration/Output/TaskChangeTypeEnum.cs | 109 + .../Output/TaskDataValidationResult.cs | 82 + .../Output/TaskDetailLoadResult.cs | 73 + .../Output/TaskIntegrationListOutput.cs | 295 + .../Output/TaskRequirementAnalysisResult.cs | 61 + .../Output/VersionManagementResults.cs | 886 ++ .../Services/Personnel/IPersonService.cs | 41 + .../IPersonnelQualificationService.cs | 71 + .../Personnel/IPersonnelWorkLimitService.cs | 37 + .../Personnel/IQualificationService.cs | 27 + .../Input/PersonnelQualificationAddInput.cs | 44 + .../PersonnelQualificationGetPageInput.cs | 24 + .../PersonnelQualificationUpdateInput.cs | 12 + .../Input/PersonnelWorkLimitAddInput.cs | 27 + .../Input/PersonnelWorkLimitGetPageInput.cs | 14 + .../Input/PersonnelWorkLimitUpdateInput.cs | 12 + .../Personnel/Input/QualificationAddInput.cs | 22 + .../Input/QualificationGetPageInput.cs | 21 + .../Input/QualificationUpdateInput.cs | 12 + .../Output/AvailablePersonnelOutput.cs | 40 + .../Personnel/Output/PersonnelBasicInfo.cs | 17 + .../Personnel/Output/PersonnelDetailOutput.cs | 86 + .../Personnel/Output/PersonnelPoolOutput.cs | 71 + .../Output/PersonnelQualificationGetOutput.cs | 10 + .../PersonnelQualificationGetPageOutput.cs | 49 + .../Output/PersonnelWorkLimitGetOutput.cs | 10 + .../Output/PersonnelWorkLimitGetPageOutput.cs | 33 + .../Output/QualificationGetOutput.cs | 10 + .../Output/QualificationGetPageOutput.cs | 27 + .../Services/Time/ICalendarService.cs | 27 + .../Services/Time/IEmployeeLeaveService.cs | 61 + .../Services/Time/IShiftRuleMappingService.cs | 95 + .../Services/Time/IShiftRuleService.cs | 28 + .../Services/Time/IShiftService.cs | 57 + .../Time/Input/BatchShiftRuleConfigInput.cs | 34 + .../Services/Time/Input/CalendarAddInput.cs | 29 + .../Time/Input/CalendarGetPageInput.cs | 25 + .../Time/Input/CalendarUpdateInput.cs | 12 + .../Time/Input/EmployeeLeaveAddInput.cs | 34 + .../Time/Input/EmployeeLeaveGetPageInput.cs | 25 + .../Time/Input/EmployeeLeaveUpdateInput.cs | 12 + .../Services/Time/Input/ShiftAddInput.cs | 54 + .../Services/Time/Input/ShiftGetPageInput.cs | 19 + .../Time/Input/ShiftRecommendationInput.cs | 45 + .../Services/Time/Input/ShiftRuleAddInput.cs | 54 + .../Time/Input/ShiftRuleAssignmentInput.cs | 50 + .../Time/Input/ShiftRuleGetPageInput.cs | 22 + .../Time/Input/ShiftRuleMappingAddInput.cs | 49 + .../Input/ShiftRuleMappingGetPageInput.cs | 32 + .../Time/Input/ShiftRuleMappingUpdateInput.cs | 12 + .../Input/ShiftRuleParameterUpdateInput.cs | 45 + .../Time/Input/ShiftRuleUpdateInput.cs | 12 + .../Services/Time/Input/ShiftUpdateInput.cs | 12 + .../Time/Output/AvailableShiftOutput.cs | 39 + .../Services/Time/Output/BatchConfigResult.cs | 60 + .../Services/Time/Output/CalendarGetOutput.cs | 10 + .../Time/Output/CalendarGetPageOutput.cs | 34 + .../Time/Output/EmployeeLeaveGetOutput.cs | 10 + .../Time/Output/EmployeeLeaveGetPageOutput.cs | 50 + .../Time/Output/EmployeeLeaveStatusResult.cs | 63 + .../Output/PersonnelYearlyShiftStatistics.cs | 81 + .../Time/Output/ShiftContinuityCheckResult.cs | 61 + .../Services/Time/Output/ShiftGetOutput.cs | 10 + .../Time/Output/ShiftGetPageOutput.cs | 44 + .../Services/Time/Output/ShiftInfo.cs | 44 + .../Time/Output/ShiftRecommendationOutput.cs | 66 + .../Time/Output/ShiftRuleConfigDetail.cs | 96 + .../Output/ShiftRuleConfigValidationResult.cs | 76 + .../Time/Output/ShiftRuleGetOutput.cs | 51 + .../Time/Output/ShiftRuleGetPageOutput.cs | 20 + .../Services/Time/Output/ShiftRuleInfo.cs | 54 + .../Time/Output/ShiftRuleMappingGetOutput.cs | 33 + .../Output/ShiftRuleMappingGetPageOutput.cs | 35 + .../Time/Output/ShiftRuleValidationResult.cs | 29 + .../Time/Output/WeeklyWorkloadCheckResult.cs | 54 + .../Services/Work/IProcessGroupService.cs | 55 + .../Services/Work/IProcessService.cs | 33 + .../Services/Work/IWorkOrderService.cs | 115 + .../Work/Input/BatchWorkOrderAddInput.cs | 41 + .../Input/BatchWorkOrderAssignmentInput.cs | 29 + .../Work/Input/PriorityAdjustmentInput.cs | 34 + .../Services/Work/Input/ProcessAddInput.cs | 52 + .../Work/Input/ProcessGetPageInput.cs | 29 + .../Work/Input/ProcessGroupAddInput.cs | 27 + .../Work/Input/ProcessGroupGetPageInput.cs | 24 + .../Work/Input/ProcessGroupRelationInput.cs | 37 + .../Work/Input/ProcessGroupUpdateInput.cs | 12 + .../Services/Work/Input/ProcessUpdateInput.cs | 12 + .../Work/Input/SmartAssignmentInput.cs | 70 + .../Services/Work/Input/TaskAnalysisInput.cs | 61 + .../Work/Input/TaskConflictCheckInput.cs | 50 + .../Services/Work/Input/WorkOrderAddInput.cs | 180 + .../Work/Input/WorkOrderAssignmentInput.cs | 44 + .../WorkOrderAssignmentRecommendationInput.cs | 86 + .../Work/Input/WorkOrderGetPageInput.cs | 41 + .../Work/Input/WorkOrderReassignmentInput.cs | 39 + .../Work/Input/WorkOrderUpdateInput.cs | 21 + .../Work/Input/WorkOrderValidationInput.cs | 36 + .../Work/Output/BatchWorkOrderAddOutput.cs | 75 + .../Services/Work/Output/ProcessGetOutput.cs | 10 + .../Work/Output/ProcessGetPageOutput.cs | 52 + .../Work/Output/ProcessGroupGetOutput.cs | 10 + .../Work/Output/ProcessGroupGetPageOutput.cs | 42 + .../Services/Work/Output/ProcessInfo.cs | 63 + .../Work/Output/WorkOrderAssignmentResult.cs | 64 + .../Work/Output/WorkOrderGetOutput.cs | 177 + .../Work/Output/WorkOrderGetPageOutput.cs | 127 + .../Work/Output/WorkOrderValidationOutput.cs | 154 + NPP.SmartSchedue.Api.Contracts/key.snk | Bin 0 -> 596 bytes .../Attributes/AppTransactionAttribute.cs | 16 + NPP.SmartSchedue.Api/Core/Consts/ApiConsts.cs | 12 + NPP.SmartSchedue.Api/Core/Consts/CacheKeys.cs | 21 + NPP.SmartSchedue.Api/Core/Consts/DbKeys.cs | 15 + NPP.SmartSchedue.Api/Core/Consts/TaskNames.cs | 12 + .../Core/Repositories/AppRepositoryBase.cs | 12 + .../NPP.SmartSchedue.Api.csproj | 43 + .../EquipmentCalibrationRepository.cs | 73 + .../EquipmentMaintenanceRepository.cs | 73 + .../Equipment/EquipmentRepository.cs | 183 + .../IntegrationRecordRepository.cs | 524 + .../Integration/TaskChangeEventRepository.cs | 646 ++ .../PersonnelQualificationRepository.cs | 31 + .../Personnel/PersonnelWorkLimitRepository.cs | 16 + .../Personnel/QualificationRepository.cs | 16 + .../Repositories/Time/CalendarRepository.cs | 16 + .../Time/EmployeeLeaveRepository.cs | 16 + .../Repositories/Time/ShiftRepository.cs | 16 + .../Time/ShiftRuleMappingRepository.cs | 93 + .../Repositories/Time/ShiftRuleRepository.cs | 31 + .../Work/ProcessGroupRelationRepository.cs | 16 + .../Work/ProcessGroupRepository.cs | 16 + .../Repositories/Work/ProcessRepository.cs | 16 + .../Work/WorkOrderFLPersonnelRepository.cs | 122 + .../Repositories/Work/WorkOrderRepository.cs | 105 + .../ServiceCollectionExtensions.cs | 49 + .../Equipment/EquipmentLocalService.cs | 376 + .../Equipment/EquipmentStatisticsService.cs | 891 ++ .../Algorithms/GeneticAlgorithmEngine.cs | 3387 +++++++ .../Integration/EquipmentAllocationService.cs | 1055 ++ .../GlobalPersonnelAllocationService.cs | 8701 +++++++++++++++++ .../Integration/IntegrationRecordService.cs | 1286 +++ .../Models/ConflictResolutionModels.cs | 144 + .../Models/EquipmentRequirement.cs | 40 + .../Integration/Models/TaskPersonnelMatrix.cs | 51 + .../Integration/PersonnelAllocationService.cs | 4241 ++++++++ .../SmartScheduleOrchestratorService.cs | 1097 +++ .../TaskIntegrationPreCheckService.cs | 1285 +++ .../Integration/TaskValidationService.cs | 677 ++ .../Services/Personnel/PersonService.cs | 190 + .../PersonnelQualificationService.cs | 290 + .../Personnel/PersonnelWorkLimitService.cs | 156 + .../Personnel/QualificationService.cs | 135 + .../Services/Time/CalendarService.cs | 121 + .../Services/Time/EmployeeLeaveService.cs | 238 + .../Services/Time/ShiftRuleMappingService.cs | 341 + .../Services/Time/ShiftRuleService.cs | 81 + .../Services/Time/ShiftService.cs | 245 + .../Services/Work/ProcessGroupService.cs | 239 + .../Services/Work/ProcessService.cs | 214 + .../Services/Work/WorkOrderService.cs | 2467 +++++ NPP.SmartSchedue.Api/key.snk | Bin 0 -> 596 bytes .../ConfigCenter/ImConfig.Development.json | 5 + .../ConfigCenter/appconfig.Development.json | 10 + .../ConfigCenter/appconfig.json | 83 + .../ConfigCenter/cacheconfig.Development.json | 5 + .../ConfigCenter/cacheconfig.json | 15 + .../ConfigCenter/createdbsql.txt | 1 + .../ConfigCenter/dbconfig.Development.json | 5 + .../ConfigCenter/dbconfig.json | 102 + .../ConfigCenter/imconfig.json | 12 + .../ConfigCenter/jwtconfig.Development.json | 5 + .../ConfigCenter/jwtconfig.json | 11 + .../ConfigCenter/ossconfig.Development.json | 5 + .../ConfigCenter/ossconfig.json | 93 + .../ratelimitconfig.Development.json | 2 + .../ConfigCenter/ratelimitconfig.json | 33 + NPP.SmartSchedue.Host/Dockerfile | 14 + .../InitData/App/app_module.json | 6 + .../InitData/App/app_module.tenant.json | 7 + .../NPP.SmartSchedue.Host.csproj | 68 + NPP.SmartSchedue.Host/Program.cs | 103 + .../Properties/launchSettings.json | 29 + .../appsettings.Development.json | 9 + NPP.SmartSchedue.Host/appsettings.json | 164 + NPP.SmartSchedue.Host/nlog.config | 61 + .../wwwroot/captcha/jigsaw/backgrounds/1.jpg | Bin 0 -> 44294 bytes .../wwwroot/captcha/jigsaw/backgrounds/2.jpg | Bin 0 -> 32155 bytes .../wwwroot/captcha/jigsaw/backgrounds/3.jpg | Bin 0 -> 49930 bytes .../wwwroot/captcha/jigsaw/backgrounds/4.jpg | Bin 0 -> 35044 bytes .../wwwroot/captcha/jigsaw/backgrounds/5.jpg | Bin 0 -> 30110 bytes .../captcha/jigsaw/templates/1/dark.png | Bin 0 -> 1291 bytes .../jigsaw/templates/1/transparent.png | Bin 0 -> 2468 bytes .../captcha/jigsaw/templates/2/dark.png | Bin 0 -> 1118 bytes .../jigsaw/templates/2/transparent.png | Bin 0 -> 1822 bytes .../captcha/jigsaw/templates/3/dark.png | Bin 0 -> 1434 bytes .../jigsaw/templates/3/transparent.png | Bin 0 -> 2706 bytes .../captcha/jigsaw/templates/4/dark.png | Bin 0 -> 1386 bytes .../jigsaw/templates/4/transparent.png | Bin 0 -> 2737 bytes .../captcha/jigsaw/templates/5/dark.png | Bin 0 -> 1224 bytes .../jigsaw/templates/5/transparent.png | Bin 0 -> 2119 bytes .../captcha/jigsaw/templates/6/dark.png | Bin 0 -> 3582 bytes .../jigsaw/templates/6/transparent.png | Bin 0 -> 7091 bytes .../wwwroot/swagger/mini-profiler.css | 3 + .../wwwroot/swagger/mini-profiler.js | 2 + NPP.SmartSchedue.Tests/BaseControllerTest.cs | 210 + .../NPP.SmartSchedue.Tests.csproj | 28 + .../SchedulingDataViewer.cs | 0 NPP.SmartSchedue.Tests/Services/BaseTest.cs | 35 + .../EquipmentCalibrationIntegrationTest.cs | 132 + .../EquipmentMaintenanceIntegrationTest.cs | 98 + NPP.SmartSchedue.sln | 43 + NPP.SmartSchedue.sln.EasyRun.json | 38 + 334 files changed, 60830 insertions(+) create mode 100644 .claude/settings.local.json create mode 100644 .cursor/rules/sse.mdc create mode 100644 .dockerignore create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .idea/.idea.NPP.SmartSchedue/.idea/.name create mode 100644 .idea/.idea.NPP.SmartSchedue/.idea/indexLayout.xml create mode 100644 .idea/.idea.NPP.SmartSchedue/.idea/projectSettingsUpdater.xml create mode 100644 .idea/.idea.NPP.SmartSchedue/.idea/vcs.xml create mode 100644 .idea/.idea.NPP.SmartSchedue/.idea/workspace.xml create mode 100644 CLAUDE.md create mode 100644 LICENSE create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Consts/DbConsts.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Consts/SubscribeNames.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Enums/EquipmentStatusEnum.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Enums/ProcessCategoryEnum.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Enums/QualificationLevelEnum.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Enums/QualificationRequirementTypeEnum.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Enums/ShiftRuleTypeEnum.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Core/Enums/WorkOrderStatusEnum.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Common/DateRange.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Equipment/EquipmentCalibrationEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Equipment/EquipmentEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Equipment/EquipmentMaintenanceEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Equipment/IEquipmentCalibrationRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Equipment/IEquipmentMaintenanceRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Equipment/IEquipmentRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Integration/IIntegrationRecordRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Integration/IntegrationChangeDetails.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Integration/IntegrationLifecycleStage.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Integration/IntegrationRecordEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Integration/IntegrationSnapshot.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Integration/TaskChangeEventEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Personnel/IPersonnelQualificationRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Personnel/IPersonnelWorkLimitRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Personnel/IQualificationRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Personnel/PersonnelEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Personnel/PersonnelQualificationEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Personnel/PersonnelWorkLimitEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Personnel/QualificationEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/CalendarEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/EmployeeLeaveEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/ICalendarRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/IEmployeeLeaveRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/IPersonnelShiftAssignmentRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/IShiftRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/IShiftRuleMappingRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/IShiftRuleRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/PersonnelShiftAssignmentEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/ShiftEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/ShiftRuleEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Time/ShiftRuleMappingEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/IProcessGroupRelationRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/IProcessGroupRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/IProcessRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/IWorkOrderFLPersonnelRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/IWorkOrderRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/ProcessEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/ProcessGroupEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/ProcessGroupRelationEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/WorkOrderEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Domain/Work/WorkOrderFLPersonnelEntity.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/NPP.SmartSchedue.Api.Contracts.csproj create mode 100644 NPP.SmartSchedue.Api.Contracts/Repositories/Equipment/IEquipmentRepository.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/Dto/EquipmentListOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/Dto/EquipmentTypeStatisticsOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/Dto/EquipmentTypeTaskAllocationOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/Dto/EquipmentTypeTrendOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/Dto/EquipmentTypeUsageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/Dto/GetEquipmentListInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/IEquipmentLocalService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/IEquipmentService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Equipment/IEquipmentStatisticsService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/IEquipmentAllocationService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/IEquipmentClientService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/IGlobalPersonnelAllocationService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/IIntegrationRecordService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/IPersonnelAllocationService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/ISmartScheduleOrchestratorService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/ITaskIntegrationPreCheckService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/ITaskValidationService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/CancelIntegrationRecordInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/GlobalAllocationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/IntegrationRecordGetListInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/IntegrationRecordTaskModifyInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/LoadPendingTasksInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/OptimizationWeights.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/PersonnelAllocationRecommendationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/PersonnelAllocationValidationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/ProcessTaskChangesInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/PublishIntegrationRecordInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Input/SmartIntegrationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Internal/FinalValidationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Internal/GlobalAllocationInternalModels.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Models/AllocationContext.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Models/PersonnelWorkloadAnalysis.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Models/ValidationModels.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/AllocationGenerationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/CancelIntegrationRecordResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/CompleteIntegrationRecordResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/ConstraintEvaluationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/EquipmentBasicInfo.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/EquipmentUsageStatistics.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/GlobalAllocationAnalysisResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/GlobalAllocationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/IntegrationPerformanceMetrics.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/IntegrationRecordDetail.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/IntegrationRecordListOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/IntegrationRecordModifyResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/IntegrationRecordValidationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/IntegrationRecordWithTasksOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/OptimizationWeightsResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/PersonnelAllocationRecommendation.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/PersonnelAllocationValidationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/ProcessTaskChangesResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/ProcessorResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/PublishIntegrationRecordResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/PublishOutputModels.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/SmartIntegrationOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/SmartIntegrationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/SmartReallocationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/TaskChangeAnalysisResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/TaskChangeTypeEnum.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/TaskDataValidationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/TaskDetailLoadResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/TaskIntegrationListOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/TaskRequirementAnalysisResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Integration/Output/VersionManagementResults.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/IPersonService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/IPersonnelQualificationService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/IPersonnelWorkLimitService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/IQualificationService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/PersonnelQualificationAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/PersonnelQualificationGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/PersonnelQualificationUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/PersonnelWorkLimitAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/PersonnelWorkLimitGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/PersonnelWorkLimitUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/QualificationAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/QualificationGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Input/QualificationUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/AvailablePersonnelOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/PersonnelBasicInfo.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/PersonnelDetailOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/PersonnelPoolOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/PersonnelQualificationGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/PersonnelQualificationGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/PersonnelWorkLimitGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/PersonnelWorkLimitGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/QualificationGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Personnel/Output/QualificationGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/ICalendarService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/IEmployeeLeaveService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/IShiftRuleMappingService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/IShiftRuleService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/IShiftService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/BatchShiftRuleConfigInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/CalendarAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/CalendarGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/CalendarUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/EmployeeLeaveAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/EmployeeLeaveGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/EmployeeLeaveUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRecommendationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleAssignmentInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleMappingAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleMappingGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleMappingUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleParameterUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftRuleUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Input/ShiftUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/AvailableShiftOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/BatchConfigResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/CalendarGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/CalendarGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/EmployeeLeaveGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/EmployeeLeaveGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/EmployeeLeaveStatusResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/PersonnelYearlyShiftStatistics.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftContinuityCheckResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftInfo.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRecommendationOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleConfigDetail.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleConfigValidationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleInfo.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleMappingGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleMappingGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/ShiftRuleValidationResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Time/Output/WeeklyWorkloadCheckResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/IProcessGroupService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/IProcessService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/IWorkOrderService.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/BatchWorkOrderAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/BatchWorkOrderAssignmentInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/PriorityAdjustmentInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/ProcessAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/ProcessGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/ProcessGroupAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/ProcessGroupGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/ProcessGroupRelationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/ProcessGroupUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/ProcessUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/SmartAssignmentInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/TaskAnalysisInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/TaskConflictCheckInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/WorkOrderAddInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/WorkOrderAssignmentInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/WorkOrderAssignmentRecommendationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/WorkOrderGetPageInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/WorkOrderReassignmentInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/WorkOrderUpdateInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Input/WorkOrderValidationInput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/BatchWorkOrderAddOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/ProcessGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/ProcessGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/ProcessGroupGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/ProcessGroupGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/ProcessInfo.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/WorkOrderAssignmentResult.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/WorkOrderGetOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/WorkOrderGetPageOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/Services/Work/Output/WorkOrderValidationOutput.cs create mode 100644 NPP.SmartSchedue.Api.Contracts/key.snk create mode 100644 NPP.SmartSchedue.Api/Core/Attributes/AppTransactionAttribute.cs create mode 100644 NPP.SmartSchedue.Api/Core/Consts/ApiConsts.cs create mode 100644 NPP.SmartSchedue.Api/Core/Consts/CacheKeys.cs create mode 100644 NPP.SmartSchedue.Api/Core/Consts/DbKeys.cs create mode 100644 NPP.SmartSchedue.Api/Core/Consts/TaskNames.cs create mode 100644 NPP.SmartSchedue.Api/Core/Repositories/AppRepositoryBase.cs create mode 100644 NPP.SmartSchedue.Api/NPP.SmartSchedue.Api.csproj create mode 100644 NPP.SmartSchedue.Api/Repositories/Equipment/EquipmentCalibrationRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Equipment/EquipmentMaintenanceRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Equipment/EquipmentRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Integration/IntegrationRecordRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Integration/TaskChangeEventRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Personnel/PersonnelQualificationRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Personnel/PersonnelWorkLimitRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Personnel/QualificationRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Time/CalendarRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Time/EmployeeLeaveRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Time/ShiftRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Time/ShiftRuleMappingRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Time/ShiftRuleRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Work/ProcessGroupRelationRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Work/ProcessGroupRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Work/ProcessRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Work/WorkOrderFLPersonnelRepository.cs create mode 100644 NPP.SmartSchedue.Api/Repositories/Work/WorkOrderRepository.cs create mode 100644 NPP.SmartSchedue.Api/ServiceCollectionExtensions.cs create mode 100644 NPP.SmartSchedue.Api/Services/Equipment/EquipmentLocalService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Equipment/EquipmentStatisticsService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/Algorithms/GeneticAlgorithmEngine.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/EquipmentAllocationService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/GlobalPersonnelAllocationService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/IntegrationRecordService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/Models/ConflictResolutionModels.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/Models/EquipmentRequirement.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/Models/TaskPersonnelMatrix.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/PersonnelAllocationService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/SmartScheduleOrchestratorService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/TaskIntegrationPreCheckService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Integration/TaskValidationService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Personnel/PersonService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Personnel/PersonnelQualificationService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Personnel/PersonnelWorkLimitService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Personnel/QualificationService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Time/CalendarService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Time/EmployeeLeaveService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Time/ShiftRuleMappingService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Time/ShiftRuleService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Time/ShiftService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Work/ProcessGroupService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Work/ProcessService.cs create mode 100644 NPP.SmartSchedue.Api/Services/Work/WorkOrderService.cs create mode 100644 NPP.SmartSchedue.Api/key.snk create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/ImConfig.Development.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/appconfig.Development.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/appconfig.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/cacheconfig.Development.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/cacheconfig.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/createdbsql.txt create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/dbconfig.Development.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/dbconfig.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/imconfig.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/jwtconfig.Development.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/jwtconfig.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/ossconfig.Development.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/ossconfig.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/ratelimitconfig.Development.json create mode 100644 NPP.SmartSchedue.Host/ConfigCenter/ratelimitconfig.json create mode 100644 NPP.SmartSchedue.Host/Dockerfile create mode 100644 NPP.SmartSchedue.Host/InitData/App/app_module.json create mode 100644 NPP.SmartSchedue.Host/InitData/App/app_module.tenant.json create mode 100644 NPP.SmartSchedue.Host/NPP.SmartSchedue.Host.csproj create mode 100644 NPP.SmartSchedue.Host/Program.cs create mode 100644 NPP.SmartSchedue.Host/Properties/launchSettings.json create mode 100644 NPP.SmartSchedue.Host/appsettings.Development.json create mode 100644 NPP.SmartSchedue.Host/appsettings.json create mode 100644 NPP.SmartSchedue.Host/nlog.config create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/backgrounds/1.jpg create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/backgrounds/2.jpg create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/backgrounds/3.jpg create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/backgrounds/4.jpg create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/backgrounds/5.jpg create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/1/dark.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/1/transparent.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/2/dark.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/2/transparent.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/3/dark.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/3/transparent.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/4/dark.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/4/transparent.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/5/dark.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/5/transparent.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/6/dark.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/captcha/jigsaw/templates/6/transparent.png create mode 100644 NPP.SmartSchedue.Host/wwwroot/swagger/mini-profiler.css create mode 100644 NPP.SmartSchedue.Host/wwwroot/swagger/mini-profiler.js create mode 100644 NPP.SmartSchedue.Tests/BaseControllerTest.cs create mode 100644 NPP.SmartSchedue.Tests/NPP.SmartSchedue.Tests.csproj create mode 100644 NPP.SmartSchedue.Tests/SchedulingDataViewer.cs create mode 100644 NPP.SmartSchedue.Tests/Services/BaseTest.cs create mode 100644 NPP.SmartSchedue.Tests/Services/EquipmentCalibrationIntegrationTest.cs create mode 100644 NPP.SmartSchedue.Tests/Services/EquipmentMaintenanceIntegrationTest.cs create mode 100644 NPP.SmartSchedue.sln create mode 100644 NPP.SmartSchedue.sln.EasyRun.json diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..e3aaf9a --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,30 @@ +{ + "permissions": { + "allow": [ + "Bash(dotnet build:*)", + "Bash(find:*)", + "Bash(grep:*)", + "mcp__ide__getDiagnostics", + "Bash(rm:*)", + "Bash(dir:*)", + "Bash(powershell:*)", + "Bash(git rm:*)", + "Bash(cmd /c \"del nul\")", + "Bash(cmd:*)", + "Bash(git clean:*)", + "Bash(dotnet test:*)", + "Bash(timeout 30 dotnet test NPP.SmartSchedue.Tests --filter \"EquipmentMaintenanceIntegrationTest\" --logger \"console;verbosity=minimal\")", + "Bash(timeout 30 dotnet test NPP.SmartSchedue.Tests --filter \"FullyQualifiedName~EquipmentCalibrationIntegrationTest\")", + "Bash(git add:*)", + "Bash(git commit:*)", + "Bash(git push:*)", + "Bash(cp:*)", + "Bash(mv:*)", + "Bash(dotnet run:*)", + "Bash(mkdir:*)", + "Bash(git restore:*)", + "Bash(ls:*)" + ], + "deny": [] + } +} \ No newline at end of file diff --git a/.cursor/rules/sse.mdc b/.cursor/rules/sse.mdc new file mode 100644 index 0000000..fb1734f --- /dev/null +++ b/.cursor/rules/sse.mdc @@ -0,0 +1,7 @@ +--- +description: 自动排班 +globs: +alwaysApply: true +--- + + diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..3729ff0 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,25 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f0ba8f3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,403 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +*.sln.iml + +**/wwwroot/upload + +**/NPP.SmartSchedue.Api/NPP.SmartSchedue.Api.xml +**/NPP.SmartSchedue.Api.Contracts/NPP.SmartSchedue.Api.Contracts.xml \ No newline at end of file diff --git a/.idea/.idea.NPP.SmartSchedue/.idea/.name b/.idea/.idea.NPP.SmartSchedue/.idea/.name new file mode 100644 index 0000000..feb5cbe --- /dev/null +++ b/.idea/.idea.NPP.SmartSchedue/.idea/.name @@ -0,0 +1 @@ +NPP.SmartSchedue \ No newline at end of file diff --git a/.idea/.idea.NPP.SmartSchedue/.idea/indexLayout.xml b/.idea/.idea.NPP.SmartSchedue/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.NPP.SmartSchedue/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.NPP.SmartSchedue/.idea/projectSettingsUpdater.xml b/.idea/.idea.NPP.SmartSchedue/.idea/projectSettingsUpdater.xml new file mode 100644 index 0000000..ef20cb0 --- /dev/null +++ b/.idea/.idea.NPP.SmartSchedue/.idea/projectSettingsUpdater.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/.idea/.idea.NPP.SmartSchedue/.idea/vcs.xml b/.idea/.idea.NPP.SmartSchedue/.idea/vcs.xml new file mode 100644 index 0000000..c2365ab --- /dev/null +++ b/.idea/.idea.NPP.SmartSchedue/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/.idea.NPP.SmartSchedue/.idea/workspace.xml b/.idea/.idea.NPP.SmartSchedue/.idea/workspace.xml new file mode 100644 index 0000000..acefcd0 --- /dev/null +++ b/.idea/.idea.NPP.SmartSchedue/.idea/workspace.xml @@ -0,0 +1,234 @@ + + + + NPP.SmartSchedue.Host/NPP.SmartSchedue.Host.csproj + NPP.SmartSchedue.Host/NPP.SmartSchedue.Host.csproj + NPP.SmartSchedue.Host/NPP.SmartSchedue.Host.csproj + + + + + + + + + + + + + + + + + + + { + "lastFilter": { + "state": "OPENED", + "assignee": { + "type": "org.jetbrains.plugins.gitlab.mergerequest.ui.filters.GitLabMergeRequestsFiltersValue.MergeRequestsMemberFilterValue.MergeRequestsAssigneeFilterValue", + "username": "project_698_bot", + "fullname": "Rider" + } + } +} + { + "selectedUrlAndAccountId": { + "first": "https://gitspace.wuxibiologics.com/npp-code-management/SPMS.Portal.git", + "second": "46b52827-07a1-4c7c-84b0-fd07ed3ba3df" + } +} + + + + + + + + + + + + + + + + + + { + "associatedIndex": 4 +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1754635142915 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +