12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/5/13 17:27
- */
- namespace App\Filters;
- use App\Filters\Traits\RelationUserFilter;
- class ApplyParkingFilter extends Filter
- {
- use RelationUserFilter;
- protected $simpleFilters = [
- 'area_id',
- 'is_examine',
- 'merchant_id',
- ];
- protected $filters = [
- 'mobile_nickname',
- ];
- }
|