User.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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_User {
  12. public function getBaseInfo($userId) {
  13. $rs = array();
  14. $model = new Model_User();
  15. $rs = $model->getBaseInfo($userId);
  16. return $rs;
  17. }
  18. public function checkName($uid,$name) {
  19. $rs = array();
  20. $model = new Model_User();
  21. $rs = $model->checkName($uid,$name);
  22. return $rs;
  23. }
  24. public function userUpdate($uid,$fields) {
  25. $rs = array();
  26. $model = new Model_User();
  27. $rs = $model->userUpdate($uid,$fields);
  28. return $rs;
  29. }
  30. public function getChargeRules() {
  31. $rs = array();
  32. $model = new Model_User();
  33. $rs = $model->getChargeRules();
  34. return $rs;
  35. }
  36. public function setAttent($uid,$touid) {
  37. $rs = array();
  38. $model = new Model_User();
  39. $rs = $model->setAttent($uid,$touid);
  40. return $rs;
  41. }
  42. public function getFollowsList($uid,$touid,$p,$key) {
  43. $rs = array();
  44. $model = new Model_User();
  45. $rs = $model->getFollowsList($uid,$touid,$p,$key);
  46. return $rs;
  47. }
  48. public function getFansList($uid,$touid,$p) {
  49. $rs = array();
  50. $model = new Model_User();
  51. $rs = $model->getFansList($uid,$touid,$p);
  52. return $rs;
  53. }
  54. public function getUserHome($uid,$touid) {
  55. $rs = array();
  56. $model = new Model_User();
  57. $rs = $model->getUserHome($uid,$touid);
  58. return $rs;
  59. }
  60. public function checkMobile($uid,$mobile) {
  61. $rs = array();
  62. $model = new Model_User();
  63. $rs = $model->checkMobile($uid,$mobile);
  64. return $rs;
  65. }
  66. public function getLikeVideos($uid,$touid,$p){
  67. $rs = array();
  68. $model = new Model_User();
  69. $rs = $model->getLikeVideos($uid,$touid,$p);
  70. return $rs;
  71. }
  72. public function getBalance($uid) {
  73. $rs = array();
  74. $model = new Model_User();
  75. $rs = $model->getBalance($uid);
  76. return $rs;
  77. }
  78. public function updateBgImg($uid,$img){
  79. $rs = array();
  80. $model = new Model_User();
  81. $rs = $model->updateBgImg($uid,$img);
  82. return $rs;
  83. }
  84. }