VideoIntro.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 视频模型
  5. class VideoIntro extends Model
  6. {
  7. public function videoArr()
  8. {
  9. return $this->hasMany('VideoUrl','video_id')->where('status',1)
  10. ->where('is_deleted',0)->where('release_time','< time',date("Y-m-d H:i:s"))
  11. ->order('sort desc');
  12. }
  13. public function videoArr2()
  14. {
  15. return $this->hasMany('VideoUrl','video_id')->where('is_deleted',0)->where('release_time','< time',date("Y-m-d H:i:s"))->order('sort asc');
  16. }
  17. public function cateDetail()
  18. {
  19. return $this->belongsTo('VideoCate','first_classify')->where('status',1)->field('id,title');
  20. //return $this->hasOne('VideoCate','id','first_classify')->field('id,title');
  21. /* switch ($type)
  22. {
  23. case 1:
  24. return $this->belongsTo('VideoCate','first_classify');
  25. break;
  26. case 2:
  27. return $this->belongsTo('SeriesVideoCate','first_classify');
  28. break;
  29. }*/
  30. }
  31. }