VideoLogic.cs 809 B

12345678910111213141516171819202122
  1. using CZFW.Framework.Logic;
  2. using CZFW.Framework.Model.ViewModel;
  3. using CZKJ.GBRS2.Entity;
  4. using CZKJ.GBRS2.Interface;
  5. using System.Linq;
  6. namespace CZKJ.GBRS2.Logic
  7. {
  8. public class VideoLogic : LogicBase<VideoEntity>, IVideo
  9. {
  10. public TableModel<VideoEntity> GetTableModel(int pageIndex = 1, int pageSize = 20)
  11. {
  12. TableModel<VideoEntity> res = new TableModel<VideoEntity>();
  13. int rowsCount;
  14. var data = GetEntities(pageSize, pageIndex, out rowsCount);
  15. res.SetData(data.OrderByDescending(x => x.SortOrder).ToList());
  16. res.TableHeads = PropertyHelper.Get(typeof(VideoEntity));
  17. res.Pager = new PagerModel { PageIndex = pageIndex, PageSize = pageSize, TotalPages = rowsCount };
  18. return res;
  19. }
  20. }
  21. }