CustomChapterOrder.php 372 B

123456789101112
  1. <?php
  2. namespace App\Modules\Subscribe\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CustomChapterOrder extends Model
  5. {
  6. protected $table = 'custom_chapter_orders';
  7. protected $fillable = ['distribution_channel_id','bid','cid','chapter_name','book_name','uid','send_order_id',
  8. 'fee','custom_id','flag','charge_balance','reward_balance','send_time'];
  9. }