RefundBalanceOrderFilter.php 570 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/6/22 17:31
  12. */
  13. namespace App\Filters;
  14. use App\Filters\Traits\RelationUserFilter;
  15. class RefundBalanceOrderFilter extends Filter
  16. {
  17. use RelationUserFilter;
  18. protected $simpleFilters = [
  19. 'area_id',
  20. 'pay_status',
  21. 'no' => ['like', '%?%'],
  22. 'merchant_id'
  23. ];
  24. protected $filters = [
  25. 'mobile_nickname',
  26. ];
  27. }