CouponUserBagsFilter.php 510 B

1234567891011121314151617181920212223242526272829303132
  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/4/3 14:10
  12. */
  13. namespace App\Filters;
  14. use App\Filters\Traits\RelationUserFilter;
  15. class CouponUserBagsFilter extends Filter
  16. {
  17. use RelationUserFilter;
  18. protected $simpleFilters = [
  19. 'status',
  20. 'merchant_id',
  21. ];
  22. protected $filters = [
  23. 'mobile_nickname',
  24. ];
  25. }