12345678910111213141516171819202122232425262728 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/3/24 10:33
- */
- namespace App\Filters;
- class RechargeConfigurationFilter extends Filter
- {
- protected $simpleFilters = [
- 'name' => ['like', '%?%'],
- 'id',
- 'status',
- 'area_id',
- ];
- }
|