2022-08-06 15:25:13 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
class BusinessOrderItem extends Model
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 不可批量赋值的属性。为空则所有熟悉都可以批量赋值
|
|
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
protected $guarded = [];
|
2022-08-06 16:38:04 +08:00
|
|
|
|
|
|
|
|
public function order()
|
|
|
|
|
{
|
|
|
|
|
return $this->hasOne(BusinessOrder::class, 'id', 'business_order_id');
|
|
|
|
|
}
|
2022-08-06 15:25:13 +08:00
|
|
|
}
|