<?php declare (strict_types = 1); namespace app\Admin\model; use think\Model; /** * @mixin \think\Model */ class Action extends Model { public function all(){ $this->saveAll(); } }