CpSubscribeStatisticData.php 586 B

123456789101112131415
  1. <?php
  2. namespace Modules\ContentManage\Models;
  3. class CpSubscribeStatisticData extends BaseModel
  4. {
  5. protected $table = 'cp_subscribe_statistic_data';
  6. protected $fillable = [
  7. 'id', 'cp_user_id', 'bid', 'calculate_date', 'month', 'book_name', 'available_amount', 'last_amount', 'total_amount', 'current_month_book_num', 'cp_source', 'yesterday_charge_balance', 'yesterday_available_amount', 'yesterday_last_amount', 'yesterday_total_amount', 'data_source_id', 'data_source_from', 'data_source_created_at', 'data_source_updated_at', 'created_at', 'updated_at',
  8. ];
  9. }