| 1234567891011121314151617181920212223242526 |
- <?php
- namespace UCore\DcatAdmin\Grid;
- interface SelectTable
- {
- /**
- * 显示模型
- * @return string
- */
- public function getModel(): string;
- /**
- * 选择模型的ID(关联)
- * @return string
- */
- public function getModelSelectId(): string;
- /**
- * 展示的字段名字
- * @return string
- */
- public function getModelViewName(): string;
- }
|