Auth.php 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. class Domain_Auth {
  12. public function getAuth($uid) {
  13. $rs = array();
  14. $model = new Model_Auth();
  15. $rs = $model->getAuth($uid);
  16. return $rs;
  17. }
  18. public function setAuth($data) {
  19. $rs = array();
  20. $model = new Model_Auth();
  21. $rs = $model->setAuth($data);
  22. return $rs;
  23. }
  24. }