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