You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
ymww_backend/application/admin/model/shopro/chat/CustomerService.php

57 lines
1.3 KiB

<?php
namespace app\admin\model\shopro\chat;
use app\admin\model\shopro\Common;
use app\admin\model\shopro\chat\Record;
use app\admin\model\shopro\chat\CustomerServiceUser;
use app\admin\model\shopro\chat\traits\ChatCommon;
class CustomerService extends Common
{
use ChatCommon;
protected $name = 'shopro_chat_customer_service';
protected $append = [
'auth_model',
'auth_text',
'status_text',
'room_name'
];
// 自动数据类型转换
protected $type = [
'last_time' => 'timestamp',
];
public function statusList()
{
return ['offline' => '离线', 'online' => '在线', 'busy' => '忙碌'];
}
public function getAuthModelAttr($value, $data)
{
return $this->customer_service_user['auth_model'] ?? null;
}
public function getAuthTextAttr($value, $data)
{
return $this->customer_service_user['auth_text'] ?? null;
}
public function customerService()
{
return $this->morphMany(Record::class, ['sender_identify', 'sender_id'], 'customer_service');
}
public function customerServiceUser()
{
return $this->HasOne(CustomerServiceUser::class, 'customer_service_id');
}
}