XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEExtension.NetCore.ServerInteractive

[DLL] Server interaction extension, including user identity verification and querying in conjunction with AutoConfig

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFEExtension.NetCore.ServerInteractive

统一ID相关命名为驼峰式,提升一致性

本次提交将项目中所有与ID、IP相关的接口、属性、方法等命名统一为驼峰式(如ID→Id,IIDModel→IIdModel,ClientIP→ClientIp,IPAddress→IpAddress),并同步调整了泛型约束、序列化字段及相关逻辑。该更改提升了代码风格一致性和可维护性,避免了命名混用带来的歧义和潜在问题。

607b1ee
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

30 个文件 +68 -68
Modified XFEExtension.NetCore.ServerInteractive.TServer/Models/Order.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive.TServer/Models/Person.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive.Test/Program.cs +5 -5
Modified XFEExtension.NetCore.ServerInteractive/Implements/CoreService/XFEServerCoreServiceBase.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Implements/ServerService/ServerCoreServiceBase.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Interfaces/CoreService/IXFEServerCoreServiceBase.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Interfaces/IUserFaceInfo.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive/Interfaces/ServerService/IServerCoreService.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Models/IIDModel.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive/Models/IPAddressInfo.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive/Models/RequesterModels/TableRequestResult.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Models/ServerModels/ServerCoreReturnArgs.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Models/UserFaceInfo.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Models/UserModels/User.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Models/UserModels/UserLoginModel.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Options/XFEServerCoreOptions.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Profiles/ServerBaseProfile.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Utilities/DataTable/XFEDataTable.cs +9 -9
Modified XFEExtension.NetCore.ServerInteractive/Utilities/DataTable/XFEDataTableManagerBuilder.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Extensions/XFEClientRequesterBuilderExtensions.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Helpers/IDModelHelper.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Helpers/UserHelper.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Requester/TableRequester.cs +9 -9
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/IpBannerService.cs +2 -2
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/UserLoginService.cs +5 -5
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/CoreService/UserReloginService.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/ServerService/ServerIpInitializer.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Server/Services/ServerService/XFECoreServerProcessService.cs +1 -1
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Server/XFEServerCore.cs +5 -5
Modified XFEExtension.NetCore.ServerInteractive/Utilities/Server/XFEServerCoreBuilder.cs +2 -2