2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace app\model\work;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use crmeb\basic\BaseModel;
|
|
|
|
|
use crmeb\traits\ModelTrait;
|
|
|
|
|
use think\model\relation\HasOne;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* Class WorkGroupMsgSendResult
|
|
|
|
|
* @package app\model\work
|
|
|
|
|
*/
|
|
|
|
|
class WorkGroupMsgSendResult extends BaseModel
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
use ModelTrait;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $name = 'work_group_msg_send_result';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $key = 'id';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $autoWriteTimestamp = 'int';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return HasOne
|
|
|
|
|
*/
|
|
|
|
|
public function client(): HasOne
|
|
|
|
|
{
|
|
|
|
|
return $this->hasOne(WorkClient::class, 'external_userid', 'external_userid')
|
|
|
|
|
->field(['external_userid', 'name'])
|
|
|
|
|
->bind(['name' => 'name']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function chat(): HasOne
|
|
|
|
|
{
|
|
|
|
|
return $this->hasOne(WorkGroupChat::class,'chat_id','chat_id');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $query
|
|
|
|
|
* @param $value
|
|
|
|
|
*/
|
|
|
|
|
public function searchMsgIdAttr($query, $value)
|
|
|
|
|
{
|
|
|
|
|
if (is_array($value)) {
|
|
|
|
|
$query->whereIn('msg_id', $value);
|
|
|
|
|
} else {
|
|
|
|
|
$query->where('msg_id', $value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $query
|
|
|
|
|
* @param $value
|
|
|
|
|
*/
|
|
|
|
|
public function searchStatusAttr($query, $value)
|
|
|
|
|
{
|
|
|
|
|
if ('' !== $value) {
|
|
|
|
|
if (is_array($value)) {
|
|
|
|
|
$query->whereIn('status', $value);
|
|
|
|
|
} else {
|
|
|
|
|
$query->where('status', $value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $value
|
|
|
|
|
* @return false|string
|
|
|
|
|
*/
|
|
|
|
|
public function getSendTimeAttr($value)
|
|
|
|
|
{
|
|
|
|
|
return $value ? date('Y-m-d H:i:s', $value) : '';
|
|
|
|
|
}
|
|
|
|
|
}
|