You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
813 B
813 B
LINGYUN.Abp.MessageService.Domain
消息服务领域层模块。
功能特性
- 实现消息服务的领域逻辑
- 集成对象扩展功能
- 集成缓存功能
- 集成通知功能
- 支持自动映射
- 支持多语言
依赖模块
AbpAutoMapperModuleAbpCachingModuleAbpNotificationsModule- LINGYUN.Abp.MessageService.Domain.Shared
配置使用
- 首先,需要安装 LINGYUN.Abp.MessageService.Domain 到你的项目中:
dotnet add package LINGYUN.Abp.MessageService.Domain
- 添加
AbpMessageServiceDomainModule到你的模块的依赖列表:
[DependsOn(typeof(AbpMessageServiceDomainModule))]
public class YourModule : AbpModule
{
}