SelectTable.php 406 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace UCore\DcatAdmin\Grid;
  3. interface SelectTable
  4. {
  5. /**
  6. * 显示模型
  7. * @return string
  8. */
  9. public function getModel(): string;
  10. /**
  11. * 选择模型的ID(关联)
  12. * @return string
  13. */
  14. public function getModelSelectId(): string;
  15. /**
  16. * 展示的字段名字
  17. * @return string
  18. */
  19. public function getModelViewName(): string;
  20. }