|
...
|
...
|
@@ -29,6 +29,27 @@ class GeoConfirmController extends BaseController |
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :确认信息详情
|
|
|
|
* @name :getInfo
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/10/30 09:08
|
|
|
|
*/
|
|
|
|
public function getInfo()
|
|
|
|
{
|
|
|
|
$this->request->validate([
|
|
|
|
'project_id' => 'required',
|
|
|
|
'type' => 'required|integer',
|
|
|
|
], [
|
|
|
|
'project_id.required' => '项目ID不能为空',
|
|
|
|
'type.required' => '确定数据类型不能为空',
|
|
|
|
'type.integer' => '确定数据类型不正确',
|
|
|
|
]);
|
|
|
|
$data = $this->logic->getConfirmInfo();
|
|
|
|
$this->response('success', Code::SUCCESS, $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 保存确认数据, 并推送微信群
|
|
|
|
* @param Request $request
|
|
|
|
* @throws \App\Exceptions\AsideGlobalException
|
...
|
...
|
|