tangjiang 10 月之前
父节点
当前提交
c162ccab82
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/DataSharing.Host/Controllers/HotlineWebController.cs

+ 1 - 1
src/DataSharing.Host/Controllers/HotlineWebController.cs

@@ -575,7 +575,7 @@ namespace DataSharing.Host.Controllers
         {
             RefAsync<int> total = 0;
             var items = await _dsUserTokenInfoRepository.Queryable()
-                .WhereIF(!string.IsNullOrEmpty(dto.Keyword), p => p.Remark.Contains(dto.Keyword))
+                .WhereIF(!string.IsNullOrEmpty(dto.Keyword), p => p.PlatformSourceName.Contains(dto.Keyword))
                   .ToPageListAsync(dto.PageIndex, dto.PageSize, total, HttpContext.RequestAborted);
 
             return new PagedDto<DsUserTokenInfo>(total, items);