mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
18 lines
259 B
PHP
18 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\traits\Filter;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ShopSender extends Model
|
|
{
|
|
use Filter;
|
|
protected $guarded = [];
|
|
|
|
//查询字段
|
|
public $fieldSearchable = [
|
|
'shop_id',
|
|
];
|
|
}
|