User.php 389 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. /**
  5. * 会员管理
  6. *
  7. * @icon fa fa-circle-o
  8. * @internal
  9. */
  10. class User extends Backend
  11. {
  12. /**
  13. * User模型对象
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = model('User');
  20. }
  21. }