UploadingFilesLogic.cs 963 B

123456789101112131415161718192021222324252627282930
  1. using CZFW.Framework.Logic;
  2. using CZFW.Framework.Model.ViewModel;
  3. using CZKJ.GBRS2.Entity;
  4. using CZKJ.GBRS2.Interface;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. namespace CZKJ.GBRS2.Logic
  10. {
  11. public class FilesLogic : LogicBase<FilesEntity>, IFiles
  12. {
  13. public TableModel<FilesEntity> GetTableList(int pageIndex = 1, int pageSize = 20, string name = "")
  14. {
  15. TableModel<FilesEntity> res = new TableModel<FilesEntity>();
  16. var query = Queryable;
  17. if (!string.IsNullOrWhiteSpace(name))
  18. {
  19. query = query.Where(x => x.Name.Contains(name));
  20. }
  21. res.SetData(query.ToList());
  22. res.Pager = new PagerModel { PageIndex = pageIndex, PageSize = pageSize, TotalItems = query.Count() };
  23. res.TableHeads = PropertyHelper.Get(typeof(FilesEntity));
  24. return res;
  25. }
  26. }
  27. }