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.

20 lines
342 B

<?php
namespace app\base\controller\car\api;
use think\App;
class CarData extends Base
{
/**
* 车型数据抓取
* @date 2022-08-29
*/
public function getCarData(){
$param = input('post.');
$car_data_logic = new \app\base\logic\car\CarData();
$car_data_logic -> getCarData($param);
}
}