给积累增加工具方法

This commit is contained in:
augushong
2024-10-15 18:42:20 +08:00
parent 58ea77bca1
commit f5a0f82efd

View File

@@ -96,4 +96,14 @@ abstract class BaseControllerBase
return $v->failException(true)->check($data);
}
public function getRequest()
{
return $this->request;
}
public function getApp()
{
return $this->app;
}
}