diff --git a/src/Model.php b/src/Model.php index 9206a039158d7ce84639a1a0e4c646f132ce306b..647c40b3025bae9323779eb76c6678b45e6afdee 100644 --- a/src/Model.php +++ b/src/Model.php @@ -36,11 +36,11 @@ use think\Container; * @method void onAdminInsert(string $ids) 记录新增数据日志 * @method void onAdminDelete(string $ids) 记录删除数据日志 * - * @method bool mSave(array $data = [], string $field = '', mixed $where = []) static 快捷更新逻辑器 - * @method bool|null mDelete(string $field = '', mixed $where = []) static 快捷删除逻辑器 - * @method bool|array mForm(string $template = '', string $field = '', mixed $where = [], array $data = []) static 快捷表单逻辑器 - * @method QueryHelper mQuery($input = null, callable $callable = null) static 快捷查询逻辑器 - * @method bool|integer mUpdate(array $data = [], string $field = '', mixed $where = []) static 快捷保存逻辑器 + * @method bool static mSave(array $data = [], string $field = '', mixed $where = []) static 快捷更新逻辑器 + * @method bool|null static mDelete(string $field = '', mixed $where = []) static 快捷删除逻辑器 + * @method bool|array static mForm(string $template = '', string $field = '', mixed $where = [], array $data = []) static 快捷表单逻辑器 + * @method QueryHelper static mQuery($input = null, callable $callable = null) static 快捷查询逻辑器 + * @method bool|integer static mUpdate(array $data = [], string $field = '', mixed $where = []) static 快捷保存逻辑器 */ abstract class Model extends \think\Model { @@ -121,4 +121,4 @@ abstract class Model extends \think\Model return parent::__callStatic($method, $args); } } -} \ No newline at end of file +}