ChannelAdvert.php 460 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: tandunzhao
  5. * Date: 2018/3/22
  6. * Time: 下午5:58
  7. */
  8. namespace App\Modules\Channel\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class ChannelAdvert extends Model
  11. {
  12. protected $table = 'channel_advert';
  13. protected $fillable = ['id','distribution_id', 'advert_name', 'release_type','type','frequency','person',
  14. 'activity_id','position','photo','content','status','created_at','updated_at'];
  15. }