VideoType.php 235 B

123456789101112131415
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class VideoType extends Model
  5. {
  6. /**
  7. * 关联分类
  8. */
  9. public function type()
  10. {
  11. return $this->hasMany(VideoType::class, 'pid')->bind(['pname'=>'name']);
  12. }
  13. }