- SystemSetting: 系统设置模型,支持配置管理 - Terminal: 终端模型,支持终端管理 - TerminalKnowledgeBase: 终端知识库关联模型 - TerminalPrompt: 终端提示词模型 - TerminalSyncLog: 终端同步日志模型 - SopTemplate: SOP模板模型 - SopStep: SOP步骤模型 - SopInteractiveTask: SOP交互任务模型 - SopTemplateVersion: SOP模板版本模型 所有模型集成 LogsActivity trait 用于操作日志记录
91 lines
2.0 KiB
PHP
91 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Spatie\Activitylog\Traits\LogsActivity;
|
|
use Spatie\Activitylog\LogOptions;
|
|
|
|
class SopTemplate extends Model
|
|
{
|
|
use HasFactory, SoftDeletes, LogsActivity;
|
|
|
|
/**
|
|
* 可批量赋值的属性
|
|
*
|
|
* @var array<string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
'category',
|
|
'tags',
|
|
'version',
|
|
'status',
|
|
'applicable_departments',
|
|
'applicable_positions',
|
|
'published_at',
|
|
'created_by',
|
|
];
|
|
|
|
/**
|
|
* 属性类型转换
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'tags' => 'array',
|
|
'applicable_departments' => 'array',
|
|
'applicable_positions' => 'array',
|
|
'published_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* 获取模板的步骤列表
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function steps()
|
|
{
|
|
return $this->hasMany(SopStep::class)->orderBy('sort_order');
|
|
}
|
|
|
|
/**
|
|
* 获取模板的版本历史
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function versions()
|
|
{
|
|
return $this->hasMany(SopTemplateVersion::class);
|
|
}
|
|
|
|
/**
|
|
* 获取模板的创建者
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function creator()
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
|
|
/**
|
|
* 配置活动日志选项
|
|
*
|
|
* @return \Spatie\Activitylog\LogOptions
|
|
*/
|
|
public function getActivitylogOptions(): LogOptions
|
|
{
|
|
return LogOptions::defaults()
|
|
->logOnly(['name', 'description', 'category', 'status', 'version'])
|
|
->logOnlyDirty()
|
|
->setDescriptionForEvent(fn(string $eventName) => "SOP模板已{$eventName}");
|
|
}
|
|
}
|