1234567891011121314151617181920212223242526272829303132 |
- <?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/3 14:10
- */
- namespace App\Filters;
- use App\Filters\Traits\RelationUserFilter;
- class CouponUserBagsFilter extends Filter
- {
- use RelationUserFilter;
- protected $simpleFilters = [
- 'status',
- 'merchant_id',
- ];
- protected $filters = [
- 'mobile_nickname',
- ];
- }
|