소스 검색

更新GroupsController和EnterExitCostRepository

Lyyyi 4 일 전
부모
커밋
9ac2baee98

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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);
         }
-
     }
 }