1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/4/2 15:45
- */
- namespace App\Filters;
- class CouponFilter extends Filter
- {
- protected $simpleFilters = [
- 'area_id',
- 'is_quota',
- 'valid_type',
- 'status',
- 'title'=>['like','%?%'],
- 'merchant_id',
- ];
- }
|