mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-02 15:50:54 +08:00
16 lines
414 B
C#
16 lines
414 B
C#
using Volo.Abp.Domain;
|
|
using Volo.Abp.Modularity;
|
|
using Yi.Framework.CodeGun.Domain.Shared;
|
|
using Yi.Framework.SqlSugarCore.Abstractions;
|
|
|
|
namespace Yi.Framework.CodeGun.Domain
|
|
{
|
|
[DependsOn(typeof(YiFrameworkCodeGunDomainSharedModule),
|
|
typeof(AbpDddDomainModule),
|
|
typeof(YiFrameworkSqlSugarCoreAbstractionsModule))]
|
|
public class YiFrameworkCodeGunDomainModule : AbpModule
|
|
{
|
|
|
|
}
|
|
}
|