|
...
|
...
|
@@ -117,21 +117,4 @@ class GeoQuestionResController extends BaseController |
|
|
|
$data = $this->logic->getSearchDate();
|
|
|
|
$this->response('success',Code::SUCCESS,$data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :获取搜索列表
|
|
|
|
* @name :getSearchList
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/7/21 16:47
|
|
|
|
*/
|
|
|
|
public function getSearchList(){
|
|
|
|
$this->request->validate([
|
|
|
|
'created_at'=>'required',
|
|
|
|
],[
|
|
|
|
'created_at.required' => 'created_at不能为空',
|
|
|
|
]);
|
|
|
|
$data = $this->logic->getSearchList($this->map,$this->page,$this->row);
|
|
|
|
$this->response('success',Code::SUCCESS,$data);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|