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/5/27 15:40
- */
- namespace App\Filters;
- class WarningLogsFilter extends Filter
- {
- protected $simpleFilters = [
- 'created_time_between'=> 'created_time_between',
- 'type',
- 'bike_no' => ['like','%?%'],
- 'box_no' => ['like','%?%'],
- 'merchant_id',
- ];
- }
|