mirror of
https://github.com/kuaifan/dootask.git
synced 2026-06-25 08:42:14 +00:00
- ide-helper:models --write:13 个模型补 125 行 @property(纯增量,无删除) - ide-helper:generate:重新生成 _ide_helper.php(Laravel 13 facade 签名) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
43 lines
2.3 KiB
PHP
43 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* AI 助手会话
|
|
*
|
|
* @property int $id
|
|
* @property int $userid
|
|
* @property string $session_key
|
|
* @property string $session_id
|
|
* @property string $scene_key
|
|
* @property string $title
|
|
* @property string|null $data
|
|
* @property string|null $images
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession cancelAppend()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession cancelHidden()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession change($array)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession getKeyValue()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession remove()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession saveOrIgnore()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereData($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereImages($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereSceneKey($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereSessionId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereSessionKey($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereTitle($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|AiAssistantSession whereUserid($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class AiAssistantSession extends AbstractModel
|
|
{
|
|
protected $table = 'ai_assistant_sessions';
|
|
}
|