ChannelRecommendBooks.php 424 B

123456789101112131415161718
  1. <?php
  2. namespace App\Modules\Channel\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. class ChannelRecommendBooks extends Model
  6. {
  7. use SoftDeletes;
  8. protected $table = 'channel_recommend_books';
  9. protected $fillable = ['id', 'channel_id', 'bid', 'priority', 'recommend_num', 'check_num',
  10. 'created_at', 'updated_at'];
  11. protected $dates = ['deleted_at'];
  12. }