123456789101112 |
- <?php
- namespace App\Modules\Subscribe\Models;
- use Illuminate\Database\Eloquent\Model;
- class CustomChapterOrder extends Model
- {
- protected $table = 'custom_chapter_orders';
- protected $fillable = ['distribution_channel_id','bid','cid','chapter_name','book_name','uid','send_order_id',
- 'fee','custom_id','flag','charge_balance','reward_balance','send_time'];
- }
|