From fc1d57d6f77cdfc96b020c6de3b50b6b1aaba100 Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Sat, 28 Nov 2020 16:28:45 +0800 Subject: [PATCH] fix bug: Failed to map message tenant and creation time --- .../Abp/MessageService/Mapper/NotificationTypeConverter.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aspnet-core/modules/message/LINGYUN.Abp.MessageService.Domain/LINGYUN/Abp/MessageService/Mapper/NotificationTypeConverter.cs b/aspnet-core/modules/message/LINGYUN.Abp.MessageService.Domain/LINGYUN/Abp/MessageService/Mapper/NotificationTypeConverter.cs index 5c7936b31..5492bffc1 100644 --- a/aspnet-core/modules/message/LINGYUN.Abp.MessageService.Domain/LINGYUN/Abp/MessageService/Mapper/NotificationTypeConverter.cs +++ b/aspnet-core/modules/message/LINGYUN.Abp.MessageService.Domain/LINGYUN/Abp/MessageService/Mapper/NotificationTypeConverter.cs @@ -16,7 +16,9 @@ namespace LINGYUN.Abp.MessageService.Mapper { Name = source.NotificationName, Type = source.Type, - Severity = source.Severity + Severity = source.Severity, + CreationTime = source.CreationTime, + TenantId = source.TenantId }; destination.SetId(source.NotificationId);