// +---------------------------------------------------------------------- namespace App\Http\Controllers\Api\v1; use App\Http\Controllers\Api\BaseController; use App\Services\PracticesService; /** * 修行项目管理-控制器 * @author wesmiler * @since 2020/11/11 * Class PracticesController * @package App\Http\Controllers */ class PracticesController extends BaseController { /** * 构造函数 * @author wesmiler * @since 2020/11/11 * PracticesController constructor. */ public function __construct() { parent::__construct(); $this->service = new PracticesService(); } /** * 列表 * @return array|mixed */ public function index(){ return $this->service->getDataList($this->userId); } }