Browse Source

Merge branch 'test_feature_task363' into dev

Dun.Jason 1 month ago
parent
commit
7281986dbf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Hotline.Api/Controllers/EarlyController.cs

+ 1 - 1
src/Hotline.Api/Controllers/EarlyController.cs

@@ -185,7 +185,7 @@ namespace Hotline.Api.Controllers
         {
             var model = await _earlyWarningOrderRepository.Queryable()
                 .Includes(x=>x.EarlyWarningSetting)
-                .Includes(x=>x.EarlyWarningOrderDetails)
+                .Includes(x=>x.EarlyWarningOrderDetails,d=>d.Order)
                 .Where(x=>x.Id == id).FirstAsync(HttpContext.RequestAborted);
             if (model == null)
                 throw UserFriendlyException.SameMessage("无效信息");