商城分销系统
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.

24 lines
426 B

3 weeks ago
<?php
namespace app\admin\model\shopro\chat;
use app\admin\model\shopro\Common;
use app\admin\model\shopro\chat\traits\ChatCommon;
class Question extends Common
{
use ChatCommon;
protected $name = 'shopro_chat_question';
protected $append = [
'status_text',
'room_name'
];
public function scopeRoomId($query, $room_id)
{
return $query->where('room_id', $room_id);
}
}