修改大小写问题

This commit is contained in:
陈淳
2023-01-30 14:44:24 +08:00
parent 12881db9ef
commit 32b9611eb5
64 changed files with 1352 additions and 9 deletions

View File

@@ -11,6 +11,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\framework\Yi.Framework.Core.Sqlsugar\Yi.Framework.Core.Sqlsugar.csproj" />
<ProjectReference Include="..\..\rbac\Yi.RBAC.Sqlsugar\Yi.RBAC.Sqlsugar.csproj" />
<ProjectReference Include="..\Yi.BBS.Domain\Yi.BBS.Domain.csproj" />
</ItemGroup>

View File

@@ -9,11 +9,13 @@ using System.Threading.Tasks;
using Yi.Framework.Core.Attributes;
using Yi.Framework.Core.Sqlsugar;
using Yi.BBS.Domain;
using Yi.RBAC.Sqlsugar;
namespace Yi.BBS.Sqlsugar
{
[DependsOn(typeof(YiFrameworkCoreSqlsugarModule),
typeof(YiBBSDomainModule))]
typeof(YiBBSDomainModule),
typeof(YiRBACSqlsugarModule))]
public class YiBBSSqlsugarModule : IStartupModule
{
public void Configure(IApplicationBuilder app, ConfigureMiddlewareContext context)