<?php namespace app\api\controller\v1; use app\api\controller\Base; use app\hander\HelpHander; use think\Db; class Company extends Base { // 列表 public function list(){ $ret = model('Company')->lists($this->orgId); HelpHander::success($ret); } }