|
...
|
...
|
@@ -24,11 +24,6 @@ class ProjectGscController extends BaseController |
|
|
|
* @time :2023/6/19 11:25
|
|
|
|
*/
|
|
|
|
public function lists(GscLogic $gscLogic){
|
|
|
|
$this->request->validate([
|
|
|
|
'project_id'=>'required'
|
|
|
|
],[
|
|
|
|
'project_id.required' => '项目ID不能为空'
|
|
|
|
]);
|
|
|
|
$lists = $gscLogic->GscLists($this->map,$this->page,$this->row,$this->order);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
...
|
...
|
|