1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\api\controller\doctor;
- use app\common\controller\Apic;
- use app\common\library\Sms;
- use think\Exception;
- use think\Validate;
- use think\Db;
- /**
- * 首页
- */
- class Index extends Apic
- {
- protected $noNeedLogin = [];
- protected $noNeedRight = '*';
- }
|