Usermanage.php 263 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\api\controller;
  3. use think\Db;
  4. class Usermanage extends Base
  5. {
  6. /**
  7. * @title 会员管理
  8. * @controller Usercenter
  9. * @group base
  10. */
  11. public function initialize()
  12. {
  13. parent::check_login();
  14. }
  15. }