Files

24 lines
515 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models\business;
use App\BaseApp\BaseBusinessModel;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* 工厂产品图cc_factory_image
*
* 外键列名就叫 factory不是 factory_id沿用老表不改。
*/
class FactoryImageModel extends BaseBusinessModel
{
protected $table = 'factory_image';
protected $guarded = [];
public function factoryInfo(): BelongsTo
{
return $this->belongsTo(FactoryInfoModel::class, 'factory', 'id');
}
}