mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
76 lines
1.6 KiB
PHP
76 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\traits\Filter;
|
|
|
|
class BusinessGoodsSku extends Model
|
|
{
|
|
use Filter;
|
|
|
|
//查询字段
|
|
public $fieldSearchable = [
|
|
'external_sku_id',
|
|
'goods_name',
|
|
'shop_id',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'self_sku_id',
|
|
'activity_no',
|
|
'goods_desc',
|
|
'goods_image_list',
|
|
'is_activity_delete',
|
|
'limit_buy',
|
|
'market_price',
|
|
'update_time',
|
|
'goods_purchase_price',
|
|
'price_in_fen',
|
|
'quantity',
|
|
'goods_purchase_price',
|
|
'price_in_fen',
|
|
'quantity',
|
|
'quantity_type',
|
|
'reserve_quantity',
|
|
'sold_quantity',
|
|
'spec_list',
|
|
'spec_name',
|
|
'thumb_url',
|
|
'total_quantity',
|
|
'updated_at',
|
|
'create_time'
|
|
];
|
|
|
|
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',
|
|
'quantity_type'
|
|
];
|
|
|
|
public function shop()
|
|
{
|
|
return $this->hasOne(Shop::class, 'id', 'shop_id');
|
|
}
|
|
}
|