cms-manage/app/model/SubContentHistory.php

16 lines
355 B
PHP
Raw Permalink Normal View History

2025-02-13 08:21:56 +00:00
<?php
namespace app\model;
class SubContentHistory extends Model
{
public function thumbnail(): \think\model\relation\BelongsTo
{
return $this->belongsTo(Attachment::class,'thumbnail','id');
}
public function cover(): \think\model\relation\BelongsTo
{
return $this->belongsTo(Attachment::class,'cover','id');
}
}