61 lines
2.1 KiB
PHP
61 lines
2.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\dao\work;
|
||
|
||
|
||
use app\dao\BaseDao;
|
||
use app\model\wechat\WechatUser;
|
||
use app\model\work\WorkGroupChat;
|
||
use app\model\work\WorkGroupMsgSendResult;
|
||
|
||
class WorkGroupMsgSendResultGroupChatDao extends BaseDao
|
||
{
|
||
|
||
protected function setModel(): string
|
||
{
|
||
return WorkGroupMsgSendResult::class;
|
||
}
|
||
|
||
protected function setJoinModel(): string
|
||
{
|
||
return WorkGroupChat::class;
|
||
}
|
||
|
||
/**
|
||
* @param string $alias
|
||
* @param string $joinAlias
|
||
* @param string $join
|
||
* @return \crmeb\basic\BaseModel
|
||
*/
|
||
protected function getModel(string $alias = 'm', string $joinAlias = 'g', string $join = 'left')
|
||
{
|
||
/** @var WechatUser $wechcatUser */
|
||
$wechcatUser = app()->make($this->setJoinModel());
|
||
$table = $wechcatUser->getName();
|
||
return parent::getModel()->alias($alias)->join($table . ' ' . $joinAlias, $alias . '.chat_id = ' . $joinAlias . '.chat_id', $join);
|
||
}
|
||
|
||
/**
|
||
* @param array $where
|
||
* @return \crmeb\basic\BaseModel
|
||
*/
|
||
public function groupChat(array $where)
|
||
{
|
||
return $this->getModel()->when(!empty($where['chat_id']), function ($query) use ($where) {
|
||
$query->whereIn('m.chat_id', $where['chat_id']);
|
||
})->when(isset($where['status']) && $where['status'] !== '', function ($query) use ($where) {
|
||
$query->where('m.status', $where['status']);
|
||
})->field(['m.*', 'g.name', 'g.member_num']);
|
||
}
|
||
|
||
}
|