Login.php 1.4 KB

12345678910111213141516171819202122232425
  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-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. class Domain_Login {
  12. public function userLogin($user_login,$source,$mobileid) {
  13. $rs = array();
  14. $model = new Model_Login();
  15. $rs = $model->userLogin($user_login,$source,$mobileid);
  16. return $rs;
  17. }
  18. }