DataListInterface.php 437 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace common\libs\dataList;
  3. interface DataListInterface
  4. {
  5. /**
  6. * 获取列表名称
  7. * @return mixed
  8. */
  9. public function getListName();
  10. /**
  11. * 处理列表数据
  12. */
  13. public function dataHandle();
  14. /**
  15. * 获取列
  16. * @return mixed
  17. */
  18. public function getColumn();
  19. /**
  20. * 获取筛选类型
  21. * @return mixed
  22. */
  23. public function getFilterTypes();
  24. }