- 将网关服务相关实体Id类型由long改为string,统一使用Guid V7格式Id - 新增ConsoleDbContext,配置数据库表命名规范,适配PostgreSQL约定 - 引入IRouteStore和IInstanceStore接口,替代直接使用DbContext访问数据库 - 修改GatewayService实现,调用存储接口进行数据操作以支持解耦扩展 - 调整GatewayController中实例Id参数类型为string,保证一致性 - 更新GatewayDto中各实体的Id类型为string,确保与数据库模型匹配 - 在项目配置中添加EntityFrameworkCore.Design依赖及版本更新 - 新增DesignTimeDbContextFactory方便迁移和设计时上下文创建 - 删除appsettings.json中的GatewayConnection配置,简化连接字符串配置
31 lines
1.7 KiB
XML
31 lines
1.7 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!-- Microsoft Packages -->
|
|
<PackageVersion Include="Fengling.Platform.Infrastructure" Version="1.0.11" />
|
|
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.3" />
|
|
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.3" />
|
|
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="10.0.2" />
|
|
<!-- NetCorePal Packages (from Gitea) -->
|
|
<PackageVersion Include="Microsoft.OpenApi" Version="3.3.1" />
|
|
<PackageVersion Include="NetCorePal.Extensions.AspNetCore" Version="3.2.1" />
|
|
<PackageVersion Include="NetCorePal.Extensions.DistributedLocks.Redis" Version="3.2.1" />
|
|
<!-- Database -->
|
|
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0" />
|
|
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
|
|
<!-- OpenIddict (version must match Fengling.Platform) -->
|
|
<PackageVersion Include="OpenIddict.Abstractions" Version="7.2.0" />
|
|
<PackageVersion Include="OpenIddict.AspNetCore" Version="7.2.0" />
|
|
<PackageVersion Include="OpenIddict.EntityFrameworkCore" Version="7.2.0" />
|
|
<PackageVersion Include="OpenIddict.Server" Version="7.2.0" />
|
|
<PackageVersion Include="OpenIddict.Server.AspNetCore" Version="7.2.0" />
|
|
<!-- Swashbuckle -->
|
|
<PackageVersion Include="Swashbuckle.AspNetCore" Version="10.1.4" />
|
|
<!-- Graphics -->
|
|
<PackageVersion Include="SkiaSharp" Version="3.119.2" />
|
|
<PackageVersion Include="QRCoder" Version="1.7.0" />
|
|
</ItemGroup>
|
|
</Project>
|