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

CommunityCategory.php 464B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace app\common\model\community;
  3. use app\common\basics\Models;
  4. /**
  5. * 种草社区分类
  6. * Class CommunityCategory
  7. * @package app\common\model\content
  8. */
  9. class CommunityCategory extends Models
  10. {
  11. /**
  12. * @notes 关联话题
  13. * @return \think\model\relation\HasMany
  14. * @author 段誉
  15. * @date 2022/4/29 16:33
  16. */
  17. public function topic()
  18. {
  19. return $this->hasMany(CommunityTopic::class, 'cid', 'id');
  20. }
  21. }