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