goodsnotices/app/Models/Good.php

22 lines
436 B
PHP
Raw Normal View History

2024-05-24 07:55:55 +00:00
<?php
namespace App\Models;
2024-05-24 11:04:29 +00:00
use Illuminate\Database\Eloquent\Relations\HasOne;
2024-05-24 07:55:55 +00:00
2024-05-24 11:04:29 +00:00
/**
2024-05-27 07:53:42 +00:00
* @property GoodsItem $item
2024-05-24 11:04:29 +00:00
*/
2024-05-25 14:06:58 +00:00
class Good extends Base
2024-05-24 07:55:55 +00:00
{
2024-05-25 14:06:58 +00:00
public $fillable = [
'itemid','typeid','product_name','product_code','product_group',
'market_price','settlement','category_id', 'category_name'
];
2024-05-26 14:06:21 +00:00
2024-05-27 07:43:40 +00:00
public function item(): HasOne
2024-05-26 14:06:21 +00:00
{
return $this->hasOne(GoodsItem::class, 'item_id', 'itemid');
2024-05-24 11:04:29 +00:00
}
2024-05-24 07:55:55 +00:00
}