diff --git a/CVDEMCS/Common/Constant/Constant.cs b/CVDEMCS/Common/Constant/Constant.cs index a002d2c..262f3b6 100644 --- a/CVDEMCS/Common/Constant/Constant.cs +++ b/CVDEMCS/Common/Constant/Constant.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Common.Constant +namespace CVDEMCS.Common.Constant { diff --git a/CVDEMCS/Common/DI/AutoFacBuilderExtensions.cs b/CVDEMCS/Common/DI/AutoFacBuilderExtensions.cs index eb49365..3bd288b 100644 --- a/CVDEMCS/Common/DI/AutoFacBuilderExtensions.cs +++ b/CVDEMCS/Common/DI/AutoFacBuilderExtensions.cs @@ -4,7 +4,7 @@ using Autofac; using Autofac.Extensions.DependencyInjection; using Module = Autofac.Module; -namespace PVDEMCS.Common.DI; +namespace CVDEMCS.Common.DI; /// /// 自定义扩展 Autofac 方法 diff --git a/CVDEMCS/Common/DI/IDependency.cs b/CVDEMCS/Common/DI/IDependency.cs index 25a30c5..7ffb207 100644 --- a/CVDEMCS/Common/DI/IDependency.cs +++ b/CVDEMCS/Common/DI/IDependency.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace PVDEMCS.Common.DI +namespace CVDEMCS.Common.DI { /// /// 依赖注入接口,表示该接口的实现类将自动注册到IoC容器中 diff --git a/CVDEMCS/Common/EF/EFSqlHelper.cs b/CVDEMCS/Common/EF/EFSqlHelper.cs index c890211..47a16d5 100644 --- a/CVDEMCS/Common/EF/EFSqlHelper.cs +++ b/CVDEMCS/Common/EF/EFSqlHelper.cs @@ -9,7 +9,7 @@ using System.Data.Common; using System.Linq; using System.Reflection; -namespace PVDEMCS.Common.EF +namespace CVDEMCS.Common.EF { public static class EFSqlHelper { diff --git a/CVDEMCS/Common/Log/LogExtensions.cs b/CVDEMCS/Common/Log/LogExtensions.cs index 238d720..6724235 100644 --- a/CVDEMCS/Common/Log/LogExtensions.cs +++ b/CVDEMCS/Common/Log/LogExtensions.cs @@ -1,5 +1,5 @@ using GuideScreen.Common.Common; -using PVDEMCS.Services; +using CVDEMCS.Services; using System; using System.Collections.Generic; using System.Configuration; @@ -8,7 +8,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace PVDEMCS.Common.Log +namespace CVDEMCS.Common.Log { /// /// 日志扩展 diff --git a/CVDEMCS/Common/Result.cs b/CVDEMCS/Common/Result.cs index ad001c6..806a2aa 100644 --- a/CVDEMCS/Common/Result.cs +++ b/CVDEMCS/Common/Result.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace PVDEMCS.Common +namespace CVDEMCS.Common { public class Result { diff --git a/CVDEMCS/Common/Tools/ModelTools.cs b/CVDEMCS/Common/Tools/ModelTools.cs index 9a9a0b0..a21c838 100644 --- a/CVDEMCS/Common/Tools/ModelTools.cs +++ b/CVDEMCS/Common/Tools/ModelTools.cs @@ -6,7 +6,7 @@ using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; -namespace PVDEMCS.Common.Tools +namespace CVDEMCS.Common.Tools { public class ModelTools { diff --git a/CVDEMCS/Controllers/DeviceController.cs b/CVDEMCS/Controllers/DeviceController.cs index 09768e0..ff8fef7 100644 --- a/CVDEMCS/Controllers/DeviceController.cs +++ b/CVDEMCS/Controllers/DeviceController.cs @@ -3,16 +3,16 @@ using Masuit.Tools; using Masuit.Tools.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common; -using PVDEMCS.Common.Constant; -using PVDEMCS.Devices; -using PVDEMCS.Devices.Impl; -using PVDEMCS.Services; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Common.Constant; +using CVDEMCS.Devices; +using CVDEMCS.Devices.Impl; +using CVDEMCS.Services; +using CVDEMCS.Services.Models; using SharpCompress.Common; using System; -namespace PVDEMCS.Controllers +namespace CVDEMCS.Controllers { /// /// PLC控制器 diff --git a/CVDEMCS/Controllers/EquipmentController.cs b/CVDEMCS/Controllers/EquipmentController.cs index 8d88d52..6c648ca 100644 --- a/CVDEMCS/Controllers/EquipmentController.cs +++ b/CVDEMCS/Controllers/EquipmentController.cs @@ -2,15 +2,15 @@ using Masuit.Tools.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common; -using PVDEMCS.Common.Constant; -using PVDEMCS.Devices; -using PVDEMCS.Services; -using PVDEMCS.Services.Impl; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Common.Constant; +using CVDEMCS.Devices; +using CVDEMCS.Services; +using CVDEMCS.Services.Impl; +using CVDEMCS.Services.Models; using System; -namespace PVDEMCS.Controllers +namespace CVDEMCS.Controllers { /// /// 设备管理 diff --git a/CVDEMCS/Controllers/EquipmentRecordController.cs b/CVDEMCS/Controllers/EquipmentRecordController.cs index 502d991..de1445d 100644 --- a/CVDEMCS/Controllers/EquipmentRecordController.cs +++ b/CVDEMCS/Controllers/EquipmentRecordController.cs @@ -2,13 +2,13 @@ using Masuit.Tools.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common; -using PVDEMCS.Common.Constant; -using PVDEMCS.Services; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Common.Constant; +using CVDEMCS.Services; +using CVDEMCS.Services.Models; using System; -namespace PVDEMCS.Controllers +namespace CVDEMCS.Controllers { /// /// 设备数据记录与统计 diff --git a/CVDEMCS/Controllers/SysConfigController.cs b/CVDEMCS/Controllers/SysConfigController.cs index c93b4ea..1a6a7b8 100644 --- a/CVDEMCS/Controllers/SysConfigController.cs +++ b/CVDEMCS/Controllers/SysConfigController.cs @@ -2,12 +2,12 @@ using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; using Microsoft.EntityFrameworkCore.Metadata.Internal; -using PVDEMCS.Common; -using PVDEMCS.Services; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Services; +using CVDEMCS.Services.Models; using System.Xml.Linq; -namespace PVDEMCS.Controllers +namespace CVDEMCS.Controllers { /// /// 系统参数设置 diff --git a/CVDEMCS/Controllers/UserController.cs b/CVDEMCS/Controllers/UserController.cs index 528d371..8a8b08d 100644 --- a/CVDEMCS/Controllers/UserController.cs +++ b/CVDEMCS/Controllers/UserController.cs @@ -1,15 +1,15 @@ using Masuit.Tools.Models; using Microsoft.AspNetCore.Mvc; -using PVDEMCS.Common; -using PVDEMCS.Services.Models; -using PVDEMCS.Services; +using CVDEMCS.Common; +using CVDEMCS.Services.Models; +using CVDEMCS.Services; using System; using Masuit.Tools.Security; using Masuit.Tools; using Microsoft.AspNetCore.Identity; using System.Security.Policy; -namespace PVDEMCS.Controllers +namespace CVDEMCS.Controllers { /// /// 用户信息 diff --git a/CVDEMCS/Devices/DeviceType.cs b/CVDEMCS/Devices/DeviceType.cs index 80e6900..1843e28 100644 --- a/CVDEMCS/Devices/DeviceType.cs +++ b/CVDEMCS/Devices/DeviceType.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Devices +namespace CVDEMCS.Devices { public sealed class DeviceProtocol { diff --git a/CVDEMCS/Devices/IDeviceRun.cs b/CVDEMCS/Devices/IDeviceRun.cs index a0710aa..61e7c32 100644 --- a/CVDEMCS/Devices/IDeviceRun.cs +++ b/CVDEMCS/Devices/IDeviceRun.cs @@ -1,9 +1,9 @@ -using PVDEMCS.Common.DI; -using PVDEMCS.Services; -using PVDEMCS.Services.Models; +using CVDEMCS.Common.DI; +using CVDEMCS.Services; +using CVDEMCS.Services.Models; using System.Threading; -namespace PVDEMCS.Devices +namespace CVDEMCS.Devices { /// /// 设备运行 diff --git a/CVDEMCS/Devices/IPLCCommunicationService.cs b/CVDEMCS/Devices/IPLCCommunicationService.cs index a671483..de30a9c 100644 --- a/CVDEMCS/Devices/IPLCCommunicationService.cs +++ b/CVDEMCS/Devices/IPLCCommunicationService.cs @@ -7,10 +7,10 @@ using System.Net.Sockets; using System.Text; using System.Threading.Tasks; using HslCommunication.Profinet.Siemens; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; -namespace PVDEMCS.Devices +namespace CVDEMCS.Devices { /// /// PLC通信接口 diff --git a/CVDEMCS/Devices/Impl/DeviceMonitor.cs b/CVDEMCS/Devices/Impl/DeviceMonitor.cs index 66e32a7..fbc9644 100644 --- a/CVDEMCS/Devices/Impl/DeviceMonitor.cs +++ b/CVDEMCS/Devices/Impl/DeviceMonitor.cs @@ -1,11 +1,11 @@ using Masuit.Tools; -using PVDEMCS.Common; -using PVDEMCS.Common.Log; -using PVDEMCS.Devices; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Common.Log; +using CVDEMCS.Devices; +using CVDEMCS.Services.Models; using System.Security.Cryptography; -namespace PVDEMCS.Devices.Impl +namespace CVDEMCS.Devices.Impl { /// /// 控制器点位监控 diff --git a/CVDEMCS/Devices/Impl/DeviceRun.cs b/CVDEMCS/Devices/Impl/DeviceRun.cs index 37f6187..265141f 100644 --- a/CVDEMCS/Devices/Impl/DeviceRun.cs +++ b/CVDEMCS/Devices/Impl/DeviceRun.cs @@ -1,15 +1,15 @@ using AngleSharp.Css.Dom; using Masuit.Tools; -using PVDEMCS.Common.Constant; -using PVDEMCS.Common.Log; -using PVDEMCS.Devices; -using PVDEMCS.Services; -using PVDEMCS.Services.Impl; -using PVDEMCS.Services.Models; +using CVDEMCS.Common.Constant; +using CVDEMCS.Common.Log; +using CVDEMCS.Devices; +using CVDEMCS.Services; +using CVDEMCS.Services.Impl; +using CVDEMCS.Services.Models; using System.Linq; using System.Threading; -namespace PVDEMCS.Devices.Impl +namespace CVDEMCS.Devices.Impl { /// /// 设备运行 diff --git a/CVDEMCS/Devices/Impl/S7CommunicationService.cs b/CVDEMCS/Devices/Impl/S7CommunicationService.cs index 20a05c1..0df4761 100644 --- a/CVDEMCS/Devices/Impl/S7CommunicationService.cs +++ b/CVDEMCS/Devices/Impl/S7CommunicationService.cs @@ -12,11 +12,11 @@ using HslCommunication.Core; using HslCommunication; using HslCommunication.Profinet.Siemens; using HslCommunication.Reflection; -using PVDEMCS.Common.Tools; -using PVDEMCS.Devices; -using PVDEMCS.Common; +using CVDEMCS.Common.Tools; +using CVDEMCS.Devices; +using CVDEMCS.Common; -namespace PVDEMCS.Devices.Impl +namespace CVDEMCS.Devices.Impl { /// /// PLC通信服务 SiemensS7 smart200 实现 diff --git a/CVDEMCS/Nlog.config b/CVDEMCS/Nlog.config index 752d919..95788c9 100644 --- a/CVDEMCS/Nlog.config +++ b/CVDEMCS/Nlog.config @@ -5,7 +5,7 @@ throwExceptions="false" internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log"> - + { - //options.SwaggerDoc("v1", new OpenApiInfo { Title = "PVDEMCS Api", Version = "v1" }); + //options.SwaggerDoc("v1", new OpenApiInfo { Title = "CVDEMCS Api", Version = "v1" }); var xmlPathApp = Path.Combine(AppContext.BaseDirectory, $"{Assembly.GetExecutingAssembly().GetName().Name}.xml"); options.IncludeXmlComments(xmlPathApp, true); }); diff --git a/CVDEMCS/Services/IDeviceService.cs b/CVDEMCS/Services/IDeviceService.cs index 6a01460..8934fe9 100644 --- a/CVDEMCS/Services/IDeviceService.cs +++ b/CVDEMCS/Services/IDeviceService.cs @@ -1,11 +1,11 @@ using Masuit.Tools.Models; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories; +using CVDEMCS.Services.Repositories.Entities; -namespace PVDEMCS.Services +namespace CVDEMCS.Services { /// /// PLC控制器 服务层 接口 diff --git a/CVDEMCS/Services/IEquipmentRecordService.cs b/CVDEMCS/Services/IEquipmentRecordService.cs index 9d1972d..9d3dd32 100644 --- a/CVDEMCS/Services/IEquipmentRecordService.cs +++ b/CVDEMCS/Services/IEquipmentRecordService.cs @@ -1,10 +1,10 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; -namespace PVDEMCS.Services +namespace CVDEMCS.Services { /// /// 设备数据记录与统计 服务层 接口 diff --git a/CVDEMCS/Services/IEquipmentService.cs b/CVDEMCS/Services/IEquipmentService.cs index 42d30f1..81c8f91 100644 --- a/CVDEMCS/Services/IEquipmentService.cs +++ b/CVDEMCS/Services/IEquipmentService.cs @@ -1,10 +1,10 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Models; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Models; -namespace PVDEMCS.Services +namespace CVDEMCS.Services { /// /// 设备管理 服务层 接口 diff --git a/CVDEMCS/Services/ILogService.cs b/CVDEMCS/Services/ILogService.cs index c0e1d7b..145ff7e 100644 --- a/CVDEMCS/Services/ILogService.cs +++ b/CVDEMCS/Services/ILogService.cs @@ -1,8 +1,8 @@ using GuideScreen.Common.Common; -using PVDEMCS.Common.DI; +using CVDEMCS.Common.DI; using System; -namespace PVDEMCS.Services +namespace CVDEMCS.Services { /// /// 日志服务 接口 diff --git a/CVDEMCS/Services/ISysConfigService.cs b/CVDEMCS/Services/ISysConfigService.cs index d792d01..a2550fd 100644 --- a/CVDEMCS/Services/ISysConfigService.cs +++ b/CVDEMCS/Services/ISysConfigService.cs @@ -1,10 +1,10 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Models; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Models; -namespace PVDEMCS.Services +namespace CVDEMCS.Services { /// /// 系统参数设置 服务层 接口 diff --git a/CVDEMCS/Services/ISysUserService.cs b/CVDEMCS/Services/ISysUserService.cs index 7d76536..7866d11 100644 --- a/CVDEMCS/Services/ISysUserService.cs +++ b/CVDEMCS/Services/ISysUserService.cs @@ -1,10 +1,10 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; -namespace PVDEMCS.Services +namespace CVDEMCS.Services { /// /// 用户信息 服务层 接口 diff --git a/CVDEMCS/Services/Impl/DeviceService.cs b/CVDEMCS/Services/Impl/DeviceService.cs index 6696571..175b470 100644 --- a/CVDEMCS/Services/Impl/DeviceService.cs +++ b/CVDEMCS/Services/Impl/DeviceService.cs @@ -1,15 +1,15 @@ using Masuit.Tools.Models; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common; -using PVDEMCS.Common.Tools; -using PVDEMCS.Devices; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Repositories.Impl; +using CVDEMCS.Common; +using CVDEMCS.Common.Tools; +using CVDEMCS.Devices; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Repositories.Impl; using System; -namespace PVDEMCS.Services.Impl +namespace CVDEMCS.Services.Impl { /// /// PLC控制器 服务层 实现 diff --git a/CVDEMCS/Services/Impl/EquipmentRecordService.cs b/CVDEMCS/Services/Impl/EquipmentRecordService.cs index 05afc8e..73b0250 100644 --- a/CVDEMCS/Services/Impl/EquipmentRecordService.cs +++ b/CVDEMCS/Services/Impl/EquipmentRecordService.cs @@ -1,15 +1,15 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common.Constant; +using CVDEMCS.Common.Constant; using System; -using PVDEMCS.Common.Tools; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common.Tools; +using CVDEMCS.Services.Repositories.Entities; -namespace PVDEMCS.Services.Impl +namespace CVDEMCS.Services.Impl { /// /// 设备数据记录与统计 服务层 实现 diff --git a/CVDEMCS/Services/Impl/EquipmentService.cs b/CVDEMCS/Services/Impl/EquipmentService.cs index 2eab554..483ba24 100644 --- a/CVDEMCS/Services/Impl/EquipmentService.cs +++ b/CVDEMCS/Services/Impl/EquipmentService.cs @@ -1,17 +1,17 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common.Constant; -using PVDEMCS.Common.Tools; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Repositories.Impl; -using PVDEMCS.Devices; +using CVDEMCS.Common.Constant; +using CVDEMCS.Common.Tools; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Repositories.Impl; +using CVDEMCS.Devices; using Masuit.Tools; -namespace PVDEMCS.Services.Impl +namespace CVDEMCS.Services.Impl { /// /// 设备管理 服务层 接口 diff --git a/CVDEMCS/Services/Impl/LogService.cs b/CVDEMCS/Services/Impl/LogService.cs index 967737a..9150af1 100644 --- a/CVDEMCS/Services/Impl/LogService.cs +++ b/CVDEMCS/Services/Impl/LogService.cs @@ -7,9 +7,9 @@ using System.Text; using System.Threading; using System.Threading.Tasks; using NLog; -using PVDEMCS.Services; +using CVDEMCS.Services; -namespace PVDEMCS.Services.Impl +namespace CVDEMCS.Services.Impl { /// /// 日志服务 实现 diff --git a/CVDEMCS/Services/Impl/SysConfigService.cs b/CVDEMCS/Services/Impl/SysConfigService.cs index d284b6a..d7e3613 100644 --- a/CVDEMCS/Services/Impl/SysConfigService.cs +++ b/CVDEMCS/Services/Impl/SysConfigService.cs @@ -1,14 +1,14 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Repositories; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Repositories; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common.Tools; -using PVDEMCS.Services.Repositories.Impl; +using CVDEMCS.Common.Tools; +using CVDEMCS.Services.Repositories.Impl; -namespace PVDEMCS.Services.Impl +namespace CVDEMCS.Services.Impl { /// /// 系统参数设置 服务层 实现 diff --git a/CVDEMCS/Services/Impl/SysUserService.cs b/CVDEMCS/Services/Impl/SysUserService.cs index c81c8b3..7b18d9b 100644 --- a/CVDEMCS/Services/Impl/SysUserService.cs +++ b/CVDEMCS/Services/Impl/SysUserService.cs @@ -1,14 +1,14 @@ using Masuit.Tools.Models; -using PVDEMCS.Common.DI; -using PVDEMCS.Common; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Repositories; -using PVDEMCS.Common.Tools; -using PVDEMCS.Services.Repositories.Impl; +using CVDEMCS.Common.DI; +using CVDEMCS.Common; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Repositories; +using CVDEMCS.Common.Tools; +using CVDEMCS.Services.Repositories.Impl; using AngleSharp.Dom; -namespace PVDEMCS.Services.Impl +namespace CVDEMCS.Services.Impl { /// /// 用户信息 服务层 实现 diff --git a/CVDEMCS/Services/Models/DeviceInfo.cs b/CVDEMCS/Services/Models/DeviceInfo.cs index 4b37d76..3f47607 100644 --- a/CVDEMCS/Services/Models/DeviceInfo.cs +++ b/CVDEMCS/Services/Models/DeviceInfo.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// PLC控制器 diff --git a/CVDEMCS/Services/Models/DevicePoint.cs b/CVDEMCS/Services/Models/DevicePoint.cs index 2195f98..0a913b8 100644 --- a/CVDEMCS/Services/Models/DevicePoint.cs +++ b/CVDEMCS/Services/Models/DevicePoint.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// PLC点位 diff --git a/CVDEMCS/Services/Models/EquipmentInfo.cs b/CVDEMCS/Services/Models/EquipmentInfo.cs index c01711e..79404ec 100644 --- a/CVDEMCS/Services/Models/EquipmentInfo.cs +++ b/CVDEMCS/Services/Models/EquipmentInfo.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// 设备信息 diff --git a/CVDEMCS/Services/Models/EquipmentOEEMonthTotal.cs b/CVDEMCS/Services/Models/EquipmentOEEMonthTotal.cs index a8646f2..a1f455a 100644 --- a/CVDEMCS/Services/Models/EquipmentOEEMonthTotal.cs +++ b/CVDEMCS/Services/Models/EquipmentOEEMonthTotal.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Services.Models +namespace CVDEMCS.Services.Models { /// /// 设备OEE月统计 diff --git a/CVDEMCS/Services/Models/EquipmentOEETotal.cs b/CVDEMCS/Services/Models/EquipmentOEETotal.cs index ae0234b..61dac56 100644 --- a/CVDEMCS/Services/Models/EquipmentOEETotal.cs +++ b/CVDEMCS/Services/Models/EquipmentOEETotal.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Services.Models +namespace CVDEMCS.Services.Models { /// /// 设备OEE月统计 diff --git a/CVDEMCS/Services/Models/EquipmentRecord.cs b/CVDEMCS/Services/Models/EquipmentRecord.cs index c6eead0..cad7dfe 100644 --- a/CVDEMCS/Services/Models/EquipmentRecord.cs +++ b/CVDEMCS/Services/Models/EquipmentRecord.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// 设备状态记录明显 diff --git a/CVDEMCS/Services/Models/EquipmentRecordDayTotal.cs b/CVDEMCS/Services/Models/EquipmentRecordDayTotal.cs index f35abad..a799bc7 100644 --- a/CVDEMCS/Services/Models/EquipmentRecordDayTotal.cs +++ b/CVDEMCS/Services/Models/EquipmentRecordDayTotal.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// 设备状态记录日统计 diff --git a/CVDEMCS/Services/Models/EquipmentRecordFurnaceMonthTotal.cs b/CVDEMCS/Services/Models/EquipmentRecordFurnaceMonthTotal.cs index 9775ea1..054727b 100644 --- a/CVDEMCS/Services/Models/EquipmentRecordFurnaceMonthTotal.cs +++ b/CVDEMCS/Services/Models/EquipmentRecordFurnaceMonthTotal.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Services.Models +namespace CVDEMCS.Services.Models { /// /// 设备记录开炉次数月统计 diff --git a/CVDEMCS/Services/Models/EquipmentRecordStateMonthTotal.cs b/CVDEMCS/Services/Models/EquipmentRecordStateMonthTotal.cs index 30382d4..f9392e6 100644 --- a/CVDEMCS/Services/Models/EquipmentRecordStateMonthTotal.cs +++ b/CVDEMCS/Services/Models/EquipmentRecordStateMonthTotal.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Services.Models +namespace CVDEMCS.Services.Models { /// /// 设备状态记录月统计 diff --git a/CVDEMCS/Services/Models/EquipmentRecordStateOEEMonthTotal.cs b/CVDEMCS/Services/Models/EquipmentRecordStateOEEMonthTotal.cs index f94b46b..a5c3afb 100644 --- a/CVDEMCS/Services/Models/EquipmentRecordStateOEEMonthTotal.cs +++ b/CVDEMCS/Services/Models/EquipmentRecordStateOEEMonthTotal.cs @@ -1,7 +1,7 @@ using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; -namespace PVDEMCS.Services.Models +namespace CVDEMCS.Services.Models { /// /// 设备状态记录OEE月统计 diff --git a/CVDEMCS/Services/Models/EquipmentRecordTotal.cs b/CVDEMCS/Services/Models/EquipmentRecordTotal.cs index 500ece7..9c82787 100644 --- a/CVDEMCS/Services/Models/EquipmentRecordTotal.cs +++ b/CVDEMCS/Services/Models/EquipmentRecordTotal.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// 设备状态记录统计 diff --git a/CVDEMCS/Services/Models/EquipmentRecordUpdateModel.cs b/CVDEMCS/Services/Models/EquipmentRecordUpdateModel.cs index 2fb63be..60e597a 100644 --- a/CVDEMCS/Services/Models/EquipmentRecordUpdateModel.cs +++ b/CVDEMCS/Services/Models/EquipmentRecordUpdateModel.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Services.Models +namespace CVDEMCS.Services.Models { /// /// 设备状态记录模型 diff --git a/CVDEMCS/Services/Models/EquipmentStateView.cs b/CVDEMCS/Services/Models/EquipmentStateView.cs index 242d83d..0a4bfc4 100644 --- a/CVDEMCS/Services/Models/EquipmentStateView.cs +++ b/CVDEMCS/Services/Models/EquipmentStateView.cs @@ -1,4 +1,4 @@ -namespace PVDEMCS.Services.Models +namespace CVDEMCS.Services.Models { /// /// 设备状态总览 diff --git a/CVDEMCS/Services/Models/SysConfig.cs b/CVDEMCS/Services/Models/SysConfig.cs index 34ec60d..45485f9 100644 --- a/CVDEMCS/Services/Models/SysConfig.cs +++ b/CVDEMCS/Services/Models/SysConfig.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// 参数配置表 diff --git a/CVDEMCS/Services/Models/SysUser.cs b/CVDEMCS/Services/Models/SysUser.cs index d9990c9..69a07e0 100644 --- a/CVDEMCS/Services/Models/SysUser.cs +++ b/CVDEMCS/Services/Models/SysUser.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -namespace PVDEMCS.Services.Models; +namespace CVDEMCS.Services.Models; /// /// 用户信息表 diff --git a/CVDEMCS/Services/Repositories/Entities/BaseEntity/CUDBaseEntity.cs b/CVDEMCS/Services/Repositories/Entities/BaseEntity/CUDBaseEntity.cs index 341f146..61cc171 100644 --- a/CVDEMCS/Services/Repositories/Entities/BaseEntity/CUDBaseEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/BaseEntity/CUDBaseEntity.cs @@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using Masuit.Tools.Systems; -namespace PVDEMCS.Services.Repositories.Entities.BaseEntity +namespace CVDEMCS.Services.Repositories.Entities.BaseEntity { public abstract class BaseEntity { diff --git a/CVDEMCS/Services/Repositories/Entities/DeviceInfoEntity.cs b/CVDEMCS/Services/Repositories/Entities/DeviceInfoEntity.cs index dd7ae5f..ad587de 100644 --- a/CVDEMCS/Services/Repositories/Entities/DeviceInfoEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/DeviceInfoEntity.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// /// PLC控制器 diff --git a/CVDEMCS/Services/Repositories/Entities/DevicePointEntity.cs b/CVDEMCS/Services/Repositories/Entities/DevicePointEntity.cs index 1083f74..f67547f 100644 --- a/CVDEMCS/Services/Repositories/Entities/DevicePointEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/DevicePointEntity.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// /// PLC点位 diff --git a/CVDEMCS/Services/Repositories/Entities/EFContext.cs b/CVDEMCS/Services/Repositories/Entities/EFContext.cs index 90870d3..c1c6f57 100644 --- a/CVDEMCS/Services/Repositories/Entities/EFContext.cs +++ b/CVDEMCS/Services/Repositories/Entities/EFContext.cs @@ -4,9 +4,9 @@ using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; -using PVDEMCS.Services.Models; +using CVDEMCS.Services.Models; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; public partial class EFContext : DbContext { diff --git a/CVDEMCS/Services/Repositories/Entities/EquipmentInfoEntity.cs b/CVDEMCS/Services/Repositories/Entities/EquipmentInfoEntity.cs index 5a1992c..e8ddc18 100644 --- a/CVDEMCS/Services/Repositories/Entities/EquipmentInfoEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/EquipmentInfoEntity.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// /// 设备信息 /// diff --git a/CVDEMCS/Services/Repositories/Entities/EquipmentRecordDayTotalEntity.cs b/CVDEMCS/Services/Repositories/Entities/EquipmentRecordDayTotalEntity.cs index 85a7c0c..0f3951e 100644 --- a/CVDEMCS/Services/Repositories/Entities/EquipmentRecordDayTotalEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/EquipmentRecordDayTotalEntity.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// diff --git a/CVDEMCS/Services/Repositories/Entities/EquipmentRecordEntity.cs b/CVDEMCS/Services/Repositories/Entities/EquipmentRecordEntity.cs index 25b6991..2ba304e 100644 --- a/CVDEMCS/Services/Repositories/Entities/EquipmentRecordEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/EquipmentRecordEntity.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// diff --git a/CVDEMCS/Services/Repositories/Entities/EquipmentRecordTotalEntity.cs b/CVDEMCS/Services/Repositories/Entities/EquipmentRecordTotalEntity.cs index 53d9dc9..54f2809 100644 --- a/CVDEMCS/Services/Repositories/Entities/EquipmentRecordTotalEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/EquipmentRecordTotalEntity.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// diff --git a/CVDEMCS/Services/Repositories/Entities/SysConfigEntity.cs b/CVDEMCS/Services/Repositories/Entities/SysConfigEntity.cs index 6b9dc00..ff0d3c5 100644 --- a/CVDEMCS/Services/Repositories/Entities/SysConfigEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/SysConfigEntity.cs @@ -5,16 +5,16 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// /// 参数配置表 /// [Table("sys_config")] [MySqlCollation("utf8mb4_bin")] -public partial class SysConfigEntity:CUDBaseEntity +public partial class SysConfigEntity : CUDBaseEntity { /// diff --git a/CVDEMCS/Services/Repositories/Entities/SysUserEntity.cs b/CVDEMCS/Services/Repositories/Entities/SysUserEntity.cs index 82de7bd..fad9ee9 100644 --- a/CVDEMCS/Services/Repositories/Entities/SysUserEntity.cs +++ b/CVDEMCS/Services/Repositories/Entities/SysUserEntity.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; -using PVDEMCS.Services.Repositories.Entities.BaseEntity; +using CVDEMCS.Services.Repositories.Entities.BaseEntity; -namespace PVDEMCS.Services.Repositories.Entities; +namespace CVDEMCS.Services.Repositories.Entities; /// /// 用户信息表 diff --git a/CVDEMCS/Services/Repositories/IDeviceRepository.cs b/CVDEMCS/Services/Repositories/IDeviceRepository.cs index 6d38d49..0c085bf 100644 --- a/CVDEMCS/Services/Repositories/IDeviceRepository.cs +++ b/CVDEMCS/Services/Repositories/IDeviceRepository.cs @@ -1,11 +1,11 @@ using Masuit.Tools.Models; using Masuit.Tools; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Models; -namespace PVDEMCS.Services.Repositories +namespace CVDEMCS.Services.Repositories { /// /// PLC控制器 数据层 接口 diff --git a/CVDEMCS/Services/Repositories/IEquipmentRecordRepository.cs b/CVDEMCS/Services/Repositories/IEquipmentRecordRepository.cs index 4c62f7b..d7994b9 100644 --- a/CVDEMCS/Services/Repositories/IEquipmentRecordRepository.cs +++ b/CVDEMCS/Services/Repositories/IEquipmentRecordRepository.cs @@ -1,13 +1,13 @@ using Masuit.Tools.Models; using Masuit.Tools; -using PVDEMCS.Common.Constant; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common.Constant; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; using Microsoft.EntityFrameworkCore; -namespace PVDEMCS.Services.Repositories +namespace CVDEMCS.Services.Repositories { /// /// 设备数据记录与统计 数据层 接口 diff --git a/CVDEMCS/Services/Repositories/IEquipmentRepository.cs b/CVDEMCS/Services/Repositories/IEquipmentRepository.cs index 287cb5d..5ee94cc 100644 --- a/CVDEMCS/Services/Repositories/IEquipmentRepository.cs +++ b/CVDEMCS/Services/Repositories/IEquipmentRepository.cs @@ -1,11 +1,11 @@ using Masuit.Tools.Models; using Masuit.Tools; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Models; -namespace PVDEMCS.Services.Repositories +namespace CVDEMCS.Services.Repositories { /// /// 设备管理 数据层 接口 diff --git a/CVDEMCS/Services/Repositories/ISysConfigRepository.cs b/CVDEMCS/Services/Repositories/ISysConfigRepository.cs index f09ebc0..13d7b29 100644 --- a/CVDEMCS/Services/Repositories/ISysConfigRepository.cs +++ b/CVDEMCS/Services/Repositories/ISysConfigRepository.cs @@ -1,11 +1,11 @@ using Masuit.Tools.Models; using Masuit.Tools; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Repositories.Entities; -using PVDEMCS.Services.Models; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Services.Models; -namespace PVDEMCS.Services.Repositories +namespace CVDEMCS.Services.Repositories { /// /// 系统参数设置 数据层 接口 diff --git a/CVDEMCS/Services/Repositories/ISysUserRepository.cs b/CVDEMCS/Services/Repositories/ISysUserRepository.cs index 2a9dff2..e7355bf 100644 --- a/CVDEMCS/Services/Repositories/ISysUserRepository.cs +++ b/CVDEMCS/Services/Repositories/ISysUserRepository.cs @@ -1,11 +1,11 @@ using Masuit.Tools.Models; using Masuit.Tools; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; -namespace PVDEMCS.Services.Repositories +namespace CVDEMCS.Services.Repositories { /// /// 用户信息 数据层 接口 diff --git a/CVDEMCS/Services/Repositories/Impl/DeviceRepository.cs b/CVDEMCS/Services/Repositories/Impl/DeviceRepository.cs index 31e38d8..c1b2a7f 100644 --- a/CVDEMCS/Services/Repositories/Impl/DeviceRepository.cs +++ b/CVDEMCS/Services/Repositories/Impl/DeviceRepository.cs @@ -2,16 +2,16 @@ using Masuit.Tools; using Masuit.Tools.Models; using Microsoft.AspNetCore.Mvc.RazorPages; -using PVDEMCS.Common; -using PVDEMCS.Common.Constant; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common; +using CVDEMCS.Common.Constant; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; using SharpCompress.Common; using System; using static Microsoft.EntityFrameworkCore.DbLoggerCategory; -namespace PVDEMCS.Services.Repositories.Impl +namespace CVDEMCS.Services.Repositories.Impl { /// /// PLC控制器 数据层 实现 diff --git a/CVDEMCS/Services/Repositories/Impl/EquipmentRecordRepository.cs b/CVDEMCS/Services/Repositories/Impl/EquipmentRecordRepository.cs index fc8442f..2c0566c 100644 --- a/CVDEMCS/Services/Repositories/Impl/EquipmentRecordRepository.cs +++ b/CVDEMCS/Services/Repositories/Impl/EquipmentRecordRepository.cs @@ -5,18 +5,18 @@ using Masuit.Tools.DateTimeExt; using Masuit.Tools.Models; using Microsoft.EntityFrameworkCore; using NLog.LayoutRenderers.Wrappers; -using PVDEMCS.Common; -using PVDEMCS.Common.Constant; -using PVDEMCS.Common.DI; -using PVDEMCS.Common.EF; -using PVDEMCS.Common.Tools; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common; +using CVDEMCS.Common.Constant; +using CVDEMCS.Common.DI; +using CVDEMCS.Common.EF; +using CVDEMCS.Common.Tools; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; using SixLabors.ImageSharp.Processing.Processors.Transforms; using System; using System.Text.RegularExpressions; -namespace PVDEMCS.Services.Repositories.Impl +namespace CVDEMCS.Services.Repositories.Impl { /* diff --git a/CVDEMCS/Services/Repositories/Impl/EquipmentRepository.cs b/CVDEMCS/Services/Repositories/Impl/EquipmentRepository.cs index 7bd7e3c..c69cb76 100644 --- a/CVDEMCS/Services/Repositories/Impl/EquipmentRepository.cs +++ b/CVDEMCS/Services/Repositories/Impl/EquipmentRepository.cs @@ -1,12 +1,12 @@ using Masuit.Tools; using Masuit.Tools.Models; -using PVDEMCS.Common; -using PVDEMCS.Common.Constant; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common; +using CVDEMCS.Common.Constant; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; -namespace PVDEMCS.Services.Repositories +namespace CVDEMCS.Services.Repositories { /// /// 设备信息 数据层 实现 diff --git a/CVDEMCS/Services/Repositories/Impl/SysConfigRepository.cs b/CVDEMCS/Services/Repositories/Impl/SysConfigRepository.cs index b430501..ec69365 100644 --- a/CVDEMCS/Services/Repositories/Impl/SysConfigRepository.cs +++ b/CVDEMCS/Services/Repositories/Impl/SysConfigRepository.cs @@ -1,11 +1,11 @@ using Masuit.Tools; using Masuit.Tools.Models; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; -namespace PVDEMCS.Services.Repositories.Impl +namespace CVDEMCS.Services.Repositories.Impl { /// /// 系统参数设置 数据层 实现 diff --git a/CVDEMCS/Services/Repositories/Impl/SysUserRepository.cs b/CVDEMCS/Services/Repositories/Impl/SysUserRepository.cs index 3d39c1e..1f1b7ee 100644 --- a/CVDEMCS/Services/Repositories/Impl/SysUserRepository.cs +++ b/CVDEMCS/Services/Repositories/Impl/SysUserRepository.cs @@ -2,13 +2,13 @@ using Masuit.Tools; using Masuit.Tools.Models; using Microsoft.EntityFrameworkCore.Metadata.Internal; -using PVDEMCS.Common; -using PVDEMCS.Common.DI; -using PVDEMCS.Services.Models; -using PVDEMCS.Services.Repositories.Entities; +using CVDEMCS.Common; +using CVDEMCS.Common.DI; +using CVDEMCS.Services.Models; +using CVDEMCS.Services.Repositories.Entities; using static Microsoft.EntityFrameworkCore.DbLoggerCategory; -namespace PVDEMCS.Services.Repositories +namespace CVDEMCS.Services.Repositories { /// /// 用户信息 数据层 实现 diff --git a/CVDEMCS/Test.cs b/CVDEMCS/Test.cs index 49ae49e..6c438d8 100644 --- a/CVDEMCS/Test.cs +++ b/CVDEMCS/Test.cs @@ -1,7 +1,7 @@ using Masuit.Tools; -using PVDEMCS.Common.Constant; +using CVDEMCS.Common.Constant; -namespace PVDEMCS +namespace CVDEMCS { public class Test {