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