InviteNewUsersConfigFilter.php 512 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/14 13:55
  12. */
  13. namespace App\Filters;
  14. class InviteNewUsersConfigFilter extends Filter
  15. {
  16. protected $simpleFilters = [
  17. 'name' => ['like', '%?%'],
  18. 'is_repeat',
  19. 'status',
  20. // 'is_give_coupon',
  21. // 'is_give_card',
  22. 'area_id',
  23. 'merchant_id'
  24. ];
  25. }