123456789101112131415161718192021222324 |
- <?php
- namespace app\api\controller\coach;
- use app\common\controller\Apic;
- use app\common\library\Sms;
- use think\Exception;
- use think\Validate;
- use think\Db;
- /**
- * 班线
- */
- class Banxian extends Apic
- {
- protected $noNeedLogin = [];
- protected $noNeedRight = '*';
- }
|