mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 22:50:44 +00:00
25 lines
369 B
PHP
25 lines
369 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\traits\Filter;
|
|
|
|
class DailyStockRecord extends Model
|
|
{
|
|
use Filter;
|
|
|
|
protected $hidden = ['created_at', 'updated_at'];
|
|
|
|
protected $guarded = [];
|
|
|
|
public $fieldSearchable = [
|
|
'day',
|
|
];
|
|
|
|
public function goodsSku()
|
|
{
|
|
return $this->belongsTo(GoodsSku::class, 'sku_id', 'id');
|
|
}
|
|
|
|
}
|