1234567891011121314151617181920212223242526 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/4/1 9:33
- */
- namespace App\Filters;
- class GroupSendSmsFilter extends Filter
- {
- protected $simpleFilters = [
- 'area_id',
- 'template_id',
- 'merchant_id'
- ];
- }
|