//调用本模块中的方法
pubilc function aaaa()
{
//$nwe = new 控制器($this->app);//当前模块使用
$new = new Order($this->app);
$test = $new->index('参数');
dump($test);
}
//调用其他模块中的方法
pubilc function bbbb()
{
$test = new \app\apitest\controller\Order($this->app);
//格式为 文件位置 模块 控制器
$all = $test->eee('sdfdsfds');
dump($all)
}