ChannelActivities.php 356 B

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