You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
369 B
PHP

<?php
namespace App\Http\Controllers\API\mH5;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
class IndustryController extends Controller
{
//获取行业列表
public function GetIndustry()
{
$list=DB::table('industry')->get();
return \Yz::Return(true,'查询成功',$list);
}
}