erp/app/Models/BusinessOrderItem.php

56 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace App\Models;
class BusinessOrderItem extends Model
{
2022-08-16 21:02:31 +08:00
/**
* @var mixed
*/
public $shop_id;
/**
* @var mixed
*/
public $external_sku_id;
/**
* 不可批量赋值的属性。为空则所有熟悉都可以批量赋值
*
* @var array
*/
2022-08-10 23:45:03 +08:00
protected $fillable = [
'shop_id',
'business_order_id',
'already_cancel_number',
'cancel_status',
'category_name',
'external_sku_id',
'goods_amount',
'goods_cost_price',
'goods_id',
'goods_name',
'goods_number',
'goods_price',
'goods_purchase_price',
'goods_specification',
'help_sell_amount',
'is_supplier',
'need_verification_number',
'shipping_status',
'sku_id',
'sub_order_sn',
'theoretically_refund_amount',
'thumb_url',
'verification_number',
];
2022-08-06 16:38:04 +08:00
public function order()
{
return $this->hasOne(BusinessOrder::class, 'id', 'business_order_id');
}
public function shop()
{
return $this->hasOne(Shop::class, 'id', 'shop_id');
}
}