feat: 新增模块

This commit is contained in:
橙子
2025-03-01 00:06:56 +08:00
parent a04974d905
commit 2c578cc9e4
11 changed files with 199 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using Volo.Abp.Caching;
using Volo.Abp.Domain;
using Yi.Framework.Stock.Domain.Shared;
using Yi.Framework.Mapster;
namespace Yi.Framework.Stock.Domain
{
[DependsOn(
typeof(YiFrameworkStockDomainSharedModule),
typeof(YiFrameworkMapsterModule),
typeof(AbpDddDomainModule),
typeof(AbpCachingModule)
)]
public class YiFrameworkStockDomainModule : AbpModule
{
}
}