截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommunityUser.php 658B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\common\model\community;
  3. use app\common\basics\Models;
  4. /**
  5. * 种草社区用户信息
  6. * Class CommunityUser
  7. * @package app\common\model\community
  8. */
  9. class CommunityUser extends Models
  10. {
  11. /**
  12. * @notes 获取用户信息
  13. * @param $user_id
  14. * @return array|\think\Model
  15. * @author 段誉
  16. * @date 2022/5/5 18:00
  17. */
  18. public static function getUserInfo($user_id)
  19. {
  20. $user = self::where(['user_id' => $user_id])->findOrEmpty();
  21. if ($user->isEmpty()) {
  22. $user = self::create([
  23. 'user_id' => $user_id
  24. ]);
  25. }
  26. return $user;
  27. }
  28. }