CmsSubjectProduct.php 512 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\SoftDeletes;
  4. class CmsSubjectProduct extends BaseModel
  5. {
  6. use SoftDeletes;
  7. protected $dates = ['deleted_at'];
  8. protected $table = 'cms_subject_product';
  9. /**
  10. * 可被批量赋值的字段
  11. * @var array
  12. */
  13. protected $fillable = ['product_id','sort','subject_id'];
  14. //相对关联到专题表
  15. public function cmsSubject()
  16. {
  17. return $this->belongsTo('App\Models\CmsSubject','subject_id');
  18. }
  19. }