ApplyParkingFilter.php 533 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. *
  4. *
  5. * @category xxx
  6. * @package PSR
  7. * @subpackage Documentation\API
  8. * @author xxx <xxx@xxx.com>
  9. * @license GPL https://xxx.com
  10. * @link https://xxx.com
  11. * @ctime: 2020/5/13 17:27
  12. */
  13. namespace App\Filters;
  14. use App\Filters\Traits\RelationUserFilter;
  15. class ApplyParkingFilter extends Filter
  16. {
  17. use RelationUserFilter;
  18. protected $simpleFilters = [
  19. 'area_id',
  20. 'is_examine',
  21. 'merchant_id',
  22. ];
  23. protected $filters = [
  24. 'mobile_nickname',
  25. ];
  26. }