苗总组局小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
414 B

<?php
namespace app\api\controller;
use app\api\library\buiapi\Api;
class Test extends Api{
protected $model = null;
protected $noNeedRight = '*';
protected $noNeedLogin = [];
protected $_allow_func = ['index','add','edit','view'];
use \app\api\library\buiapi\traits\Api;
public function _initialize(){
parent::_initialize();
$this->model = new \app\api\model\Test;
}
}