ソースを参照

更新GroupsController和EnterExitCostRepository

Lyyyi 4 日 前
コミット
9ac2baee98
共有2 個のファイルを変更した1238 個の追加9 個の削除を含む
  1. 1238 6
      OASystem/OASystem.Api/Controllers/GroupsController.cs
  2. 0 3
      OASystem/OASystem.Infrastructure/Repositories/Groups/EnterExitCostRepository.cs

File diff suppressed because it is too large
+ 1238 - 6
OASystem/OASystem.Api/Controllers/GroupsController.cs


+ 0 - 3
OASystem/OASystem.Infrastructure/Repositories/Groups/EnterExitCostRepository.cs

@@ -811,10 +811,8 @@ namespace OASystem.Infrastructure.Repositories.Groups
             var datas = await _sqlSugar
                 .Queryable<Sys_SetData>()
                 .Where(x => x.IsDel == 0 && (x.STid == 72 || x.STid == 73))
-
                 .ToListAsync();
 
-
             var wordTypeData = datas.Where(x => x.STid == 72 && x.Remark.Contains(provinceId.ToString()))
                                 .Select(x => new SetDataInfoView()
                                 {
@@ -834,6 +832,5 @@ namespace OASystem.Infrastructure.Repositories.Groups
 
             return (wordTypeData, excelTypeData);
         }
-
     }
 }