55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
|
|
namespace App\Model\Chat;
|
|
|
|
use App\Model\BaseModel;
|
|
|
|
/**
|
|
* 聊天记录(代码块消息)数据表模型
|
|
*
|
|
* @property int $id 代码块ID
|
|
* @property int $record_id 聊天记录ID
|
|
* @property int $user_id 用户ID
|
|
* @property string $code_lang 代码语言
|
|
* @property string $code 代码详情
|
|
* @property string $created_at 创建时间
|
|
*
|
|
* @package App\Model\Chat
|
|
*/
|
|
class ChatRecordsCode extends BaseModel
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'chat_records_code';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'record_id',
|
|
'user_id',
|
|
'code_lang',
|
|
'code',
|
|
'created_at'
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'record_id' => 'integer',
|
|
'user_id' => 'integer',
|
|
'created_at' => 'datetime'
|
|
];
|
|
}
|