截流自动化的商城平台
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.

CommunityLike.php 530B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\common\model\community;
  3. use app\common\basics\Models;
  4. use app\common\model\user\User;
  5. /**
  6. * 种草社区点赞
  7. * Class CommunityLike
  8. * @package app\common\model\community
  9. */
  10. class CommunityLike extends Models
  11. {
  12. /**
  13. * @notes 关联用户
  14. * @return \think\model\relation\HasOne
  15. * @author 段誉
  16. * @date 2022/5/10 19:03
  17. */
  18. public function user()
  19. {
  20. return $this->hasOne(User::class, 'id', 'user_id')
  21. ->bind(['nickname', 'avatar', 'sn']);
  22. }
  23. }