|
@@ -3,7 +3,9 @@ using Hotline.Caching.Interfaces;
|
|
|
using Hotline.Orders;
|
|
|
using Hotline.Push.FWMessage;
|
|
|
using Hotline.Push.Notifies;
|
|
|
+using Hotline.Settings;
|
|
|
using Hotline.Share.Dtos.Order;
|
|
|
+using Hotline.Share.Dtos.Settings;
|
|
|
using Hotline.Share.Enums.Order;
|
|
|
using Mapster;
|
|
|
using Shouldly;
|
|
@@ -55,5 +57,9 @@ public class OrderApplicationTest
|
|
|
var m = data.Adapt<ReceiveMessageNotify>();
|
|
|
m.NotifyDto.Name.ShouldBe(data.Name);
|
|
|
m.NotifyDto.PushBusiness.ShouldBe(data.PushBusiness);
|
|
|
+
|
|
|
+ var a = new SystemDicData { Id = "123"};
|
|
|
+ var b = a.Adapt<SystemDicDataOutDto>();
|
|
|
+ b.ShouldNotBeNull();
|
|
|
}
|
|
|
}
|