1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using CMS.Plugin.HIAWms.Domain.Shared;
| using Volo.Abp.Caching;
| using Volo.Abp.Domain;
| using Volo.Abp.Modularity;
| using Volo.Abp.Settings;
|
| namespace CMS.Plugin.HIAWms.Domain;
|
| /// <summary>
| /// 领域模块
| /// </summary>
| [DependsOn(
| typeof(CMSPluginDomainSharedModule),
| typeof(AbpSettingsModule),
| typeof(AbpDddDomainModule),
| typeof(AbpCachingModule)
| )]
| public class CMSPluginDomainModule : AbpModule
| {
| /// <inheritdoc />
| public override void ConfigureServices(ServiceConfigurationContext context)
| {
| }
| }
|
|