lyzflash
2025-11-17 91a56a9b83ec23a1580aa586a24b34aba6990ffa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
 
namespace app\api\model\plus\chat;
use app\common\model\plus\chat\ChatRelation as ChatRelationModel;
 
 
/**
 * 客服消息关系模型类
 */
class ChatRelation extends ChatRelationModel
{
 
    /**
     * 隐藏字段
     */
    protected $hidden = [
        'app_id',
        'create_time',
        'update_time'
    ];
 
    
}