goodsnotices/app/Models/GoodsItem.php
zhouchangcheng 186e05311e 完善
2024-05-27 15:53:42 +08:00

22 lines
475 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property Good $good
*/
class GoodsItem extends Base
{
public $fillable = [
'item_id', 'brand', 'color_name', 'sell_point', 'specifications', 'shop_url', 'product_images', 'images',
'product_infos', 'app_introduce', 'applet_introduce'
];
public function good(): BelongsTo
{
return $this->belongsTo(Good::class, 'item_id', 'itemid');
}
}