> 用惯了 Phpstorm 的话,敲代码没方法提示令人不适,TP6模型类没方法提示因为缺少文档注释,可以将 tp5.1 的注释拿到tp6.0中,使其有方法提示 #### 1. 找到tp5.1的框架模型类源码文件 --- **源码文件:thinkphp\library\think\Model.php** **复制 `\think\Model` 文档注释中的 `@method`** ![](https://img.itqaq.com/art/content/4d62d04c7c8f4fc295a30ad0e52c7ff6.png) **没有 `select()` 的方法提示** ![](https://img.itqaq.com/art/content/62dbbb505b02fdc0003dea91b8c9f827.png) #### 2. 刚复制的 `@method` 粘贴到 TP6.0 的 `\think\Model` 中 --- **源码文件:vendor\topthink\think-orm\src\Model.php** **粘贴到此处** ![](https://img.itqaq.com/art/content/0050f3b9023d19535539dd35170cd5c7.png) ![](https://img.itqaq.com/art/content/c1e76aab1cf5d2fefd06a290bb61bb96.png) **有 `select()` 方法提示了** ![](https://img.itqaq.com/art/content/0309e10cb3e3ccc3263733d4f4a29c0b.png)