- config/database.php에 codebridge connection 추가 - 78개 MNG 전용 모델에 $connection = 'codebridge' 설정 - Admin (15): PM, 로드맵, API Explorer - Sales (16): 영업파트너, 수수료, 가망고객 - Finance (9): 법인카드, 자금관리, 홈택스 - Barobill (12): 은행/카드 동기화 관리 - Interview (1), ESign (6), Equipment (2) - AI (3), Audit (3), 기타 (11)
56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Interview;
|
|
|
|
use App\Models\User;
|
|
use App\Traits\BelongsToTenant;
|
|
use App\Traits\ModelTrait;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class InterviewKnowledge extends Model
|
|
{
|
|
use BelongsToTenant, ModelTrait, SoftDeletes;
|
|
|
|
protected $connection = 'codebridge';
|
|
protected $table = 'interview_knowledge';
|
|
|
|
protected $fillable = [
|
|
'tenant_id',
|
|
'interview_project_id',
|
|
'domain',
|
|
'knowledge_type',
|
|
'title',
|
|
'content',
|
|
'source_type',
|
|
'source_id',
|
|
'confidence',
|
|
'is_verified',
|
|
'verified_by',
|
|
'verified_at',
|
|
'created_by',
|
|
];
|
|
|
|
protected $casts = [
|
|
'content' => 'array',
|
|
'confidence' => 'decimal:2',
|
|
'is_verified' => 'boolean',
|
|
'verified_at' => 'datetime',
|
|
];
|
|
|
|
public function project()
|
|
{
|
|
return $this->belongsTo(InterviewProject::class, 'interview_project_id');
|
|
}
|
|
|
|
public function verifier()
|
|
{
|
|
return $this->belongsTo(User::class, 'verified_by');
|
|
}
|
|
|
|
public function creator()
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
}
|