|
...
|
...
|
@@ -68,4 +68,17 @@ class GeoController extends BaseController |
|
|
|
$data = $this->logic->saveConfig($this->param);
|
|
|
|
$this->response('success', Code::SUCCESS, $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :统计数据
|
|
|
|
* @name :getCount
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/10/30 10:37
|
|
|
|
*/
|
|
|
|
public function getCount()
|
|
|
|
{
|
|
|
|
$data = $this->logic->getCount();
|
|
|
|
$this->response('success', Code::SUCCESS, $data);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|