mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 14:40:44 +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);
|
|
}
|
|
}
|