123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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');
- }
-
- }
|