mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
18 lines
329 B
PHP
18 lines
329 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));
|
|
}
|
|
}
|