19 lines
273 B
PHP
19 lines
273 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace app\common\library\scrm;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 云控蜘蛛统一接口
|
||
|
|
*/
|
||
|
|
interface ScrmSpiderInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 执行抓取并返回统一数据
|
||
|
|
*
|
||
|
|
* @throws \Exception
|
||
|
|
*/
|
||
|
|
public function run(): UnifiedScrmData;
|
||
|
|
}
|