mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
16 lines
213 B
PHP
16 lines
213 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ShopSender extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
//查询字段
|
|
public $fieldSearchable = [
|
|
'shop_id',
|
|
];
|
|
}
|