Browse Source

fix bug: Failed to map message tenant and creation time

pull/148/head
cKey 5 years ago
parent
commit
fc1d57d6f7
  1. 4
      aspnet-core/modules/message/LINGYUN.Abp.MessageService.Domain/LINGYUN/Abp/MessageService/Mapper/NotificationTypeConverter.cs

4
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, Name = source.NotificationName,
Type = source.Type, Type = source.Type,
Severity = source.Severity Severity = source.Severity,
CreationTime = source.CreationTime,
TenantId = source.TenantId
}; };
destination.SetId(source.NotificationId); destination.SetId(source.NotificationId);

Loading…
Cancel
Save