mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
17 lines
293 B
PHP
17 lines
293 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filters;
|
||
|
|
|
||
|
|
class GoodsSkuFilter extends Filters
|
||
|
|
{
|
||
|
|
protected function title($value)
|
||
|
|
{
|
||
|
|
return $this->builder->where('title', '=', $value);
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function status($value)
|
||
|
|
{
|
||
|
|
return $this->builder->where('status', '=', $value);
|
||
|
|
}
|
||
|
|
}
|