فهرست منبع

格式化代码

tangjiang 4 روز پیش
والد
کامیت
712b1eecb5
1فایلهای تغییر یافته به همراه10 افزوده شده و 17 حذف شده
  1. 10 17
      src/Hotline.Api/Controllers/SchedulingController.cs

+ 10 - 17
src/Hotline.Api/Controllers/SchedulingController.cs

@@ -1,26 +1,19 @@
 using Hotline.Repository.SqlSugar.Extensions;
 using Hotline.Schedulings;
-using Hotline.Share.Dtos.File;
 using Hotline.Share.Dtos;
-using Microsoft.AspNetCore.Mvc;
-using XF.Domain.Authentications;
-using XF.Domain.Exceptions;
-using XF.Domain.Repository;
+using Hotline.Share.Dtos.Order;
 using Hotline.Share.Dtos.Schedulings;
-using MapsterMapper;
+using Hotline.Share.Dtos.Settings;
+using Hotline.Share.Requests;
+using Hotline.Tools;
 using Hotline.Users;
+using MapsterMapper;
+using Microsoft.AspNetCore.Mvc;
+using SqlSugar;
 using System.Data;
-using Hotline.Repository.SqlSugar.TextSearch;
-using Microsoft.AspNetCore.Components;
 using System.Dynamic;
-using Microsoft.EntityFrameworkCore.Query.Internal;
-using NetTaste;
-using SqlSugar;
-using Hotline.Share.Requests;
-using Hotline.Settings;
-using Hotline.Share.Dtos.Order;
-using Hotline.Share.Dtos.Settings;
-using Hotline.Tools;
+using XF.Domain.Exceptions;
+using XF.Domain.Repository;
 
 namespace Hotline.Api.Controllers
 {
@@ -486,7 +479,7 @@ namespace Hotline.Api.Controllers
                         Count = SqlFunc.AggregateCount(p.SchedulingUserName)
                     })
                     .OrderBy(p => p.Date);
-        } 
+        }
         #endregion
     }
 }