完整版V1 加入爬虫功能

This commit is contained in:
root
2026-06-09 03:36:30 +08:00
parent 34d76cce74
commit a68b83fcbd
69 changed files with 5058 additions and 56 deletions
@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace app\common\library\scrm;
/**
* 云控蜘蛛统一接口
*/
interface ScrmSpiderInterface
{
/**
* 执行抓取并返回统一数据
*
* @throws \Exception
*/
public function run(): UnifiedScrmData;
}