erp/app/Models/BusinessGoodsSku.php

66 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace App\Models;
2022-09-02 18:42:57 +08:00
use App\Models\traits\Filter;
class BusinessGoodsSku extends Model
{
2022-09-02 18:42:57 +08:00
use Filter;
//查询字段
public $fieldSearchable = [
'external_sku_id',
'goods_name',
'shop_id',
];
2022-08-16 21:02:31 +08:00
/**
* @var mixed
*/
public $goods_id;
/**
* @var mixed
*/
public $sku_id;
/**
* @var mixed
*/
public $external_sku_id;
/**
* 不可批量赋值的属性。为空则所有熟悉都可以批量赋值
*
* @var array
*/
2022-08-09 16:56:52 +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-09-02 18:42:57 +08:00
public function shop()
{
return $this->hasOne(Shop::class, 'id', 'shop_id');
}
}