123456789101112131415161718 |
- <?php
- /**
- * Created by PhpStorm.
- * User: tandunzhao
- * Date: 2018/3/23
- * Time: 上午11:10
- */
- namespace App\Modules\Channel\Models;
- use Illuminate\Database\Eloquent\Model;
- class ChannelActivities extends Model
- {
- protected $table = 'channel_activities';
- protected $fillable = ['distribution_channel_id','begin_time','end_time','amount'];
- }
|