RechargeConfigurationFilter.php 430 B

12345678910111213141516171819202122232425262728
  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/3/24 10:33
  12. */
  13. namespace App\Filters;
  14. class RechargeConfigurationFilter extends Filter
  15. {
  16. protected $simpleFilters = [
  17. 'name' => ['like', '%?%'],
  18. 'id',
  19. 'status',
  20. 'area_id',
  21. ];
  22. }