This commit is contained in:
2023-10-27 16:24:44 +08:00
parent d54ebf3cba
commit bef9b53b4d
2 changed files with 5 additions and 7 deletions

View File

@@ -359,10 +359,9 @@ namespace Tnb.EquipMgr
repairer_id_id = c.Id,
remark = a.remark,
status = f.FullName
})
.ToListAsync();
}).ToPagedListAsync((input?.currentPage ?? 1), (input?.pageSize ?? 50));
return result;
return PageResult<PadRepairListOutput>.SqlSugarPageResult(result);
}
}
}