私域操盘手 - 重写微信号管理

This commit is contained in:
柳清爽
2025-05-10 10:17:58 +08:00
parent 50cd82f5d3
commit c09864ee89
10 changed files with 306 additions and 204 deletions

View File

@@ -1,4 +1,5 @@
<?php
namespace app\cunkebao\model;
use think\Model;
@@ -10,10 +11,10 @@ class WechatAccount extends Model
{
// 设置表名
protected $name = 'wechat_account';
/**
* 获取在线微信账号数量
*
*
* @param array $where 额外的查询条件
* @return int 微信账号数量
*/
@@ -22,20 +23,20 @@ class WechatAccount extends Model
$condition = [
'deviceAlive' => 1,
'wechatAlive' => 1,
'isDeleted' => 0
'isDeleted' => 0
];
// 合并额外条件
if (!empty($where)) {
$condition = array_merge($condition, $where);
}
return self::where($condition)->count();
}
/**
* 获取有登录微信的设备数量
*
*
* @param array $where 额外的查询条件
* @return int 设备数量
*/
@@ -43,55 +44,14 @@ class WechatAccount extends Model
{
$condition = [
'deviceAlive' => 1,
'isDeleted' => 0
'isDeleted' => 0
];
// 合并额外条件
if (!empty($where)) {
$condition = array_merge($condition, $where);
}
return self::where($condition)->count();
}
/**
* 获取在线微信账号列表
*
* @param array $where 额外的查询条件
* @param string $order 排序方式
* @param int $page 页码
* @param int $limit 每页数量
* @return \think\Paginator 分页对象
*/
public static function getOnlineWechatList($where = [], $order = 'id desc', $page = 1, $limit = 10)
{
$condition = [
'isDeleted' => 0
];
// 合并额外条件
if (!empty($where)) {
$condition = array_merge($condition, $where);
}
return self::where($condition)
->field([
'id',
'wechatId',
'accountNickname',
'nickname',
'accountUserName',
'avatar',
'wechatAlive',
'deviceAlive',
'totalFriend',
'maleFriend',
'femaleFriend',
'imei',
'deviceMemo',
'yesterdayMsgCount'
])
->order($order)
->paginate($limit, false, ['page' => $page]);
}
}