InviteNewUsersGiveGiftLogFilter.php 494 B

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