私域操盘手 - 调整微信号的权重策略计算规则,重构为适配器兼容扩展规则

This commit is contained in:
柳清爽
2025-05-14 18:30:09 +08:00
parent 22559866df
commit 764309d330
17 changed files with 770 additions and 531 deletions

View File

@@ -1,23 +0,0 @@
<?php
namespace library\s2\interfaces;
interface AccountInterface
{
/**
* 创建账号
*
* @param string $accout
* @param string $password
* @return mixed
*/
public function create(string $accout, string $password);
/**
* 删除账号
*
* @param int $id
* @return mixed
*/
public function delete(int $id);
}

View File

@@ -1,13 +0,0 @@
<?php
namespace library\s2\interfaces;
interface DeviceInterface
{
/**
* 获取设备列表
* @param array $params
* @return array
*/
public function getlist(array $params): array;
}

View File

@@ -1,15 +0,0 @@
<?php
namespace library\s2\interfaces;
interface LoginInterface
{
/**
* 创建账号
*
* @param string $accout
* @param string $password
* @return mixed
*/
public function login(string $accout, string $password): LoginInterface;
}