NewBookTest.php 748 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Modules\Book\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class NewBookTest extends Model
  5. {
  6. protected $connection = 'api_mysql';
  7. protected $table = 'new_book_tests';
  8. protected $fillable = [
  9. 'bid',
  10. 'book_name',
  11. 'sex',
  12. 'category',
  13. 'status',
  14. 'test_weight',
  15. 'test_begin_time',
  16. 'test_end_time',
  17. 'sub_amount_in_three_day',
  18. 'uv_in_three_day',
  19. 'uv_in_one_day',
  20. 'sub_amount_in_one_day',
  21. 'plan_push_user_num',
  22. 'created_at',
  23. 'updated_at',
  24. 'is_detail_recorded',
  25. 'uv_in_seven_day',
  26. 'sub_amount_in_seven_day',
  27. 'uv_in_six_day',
  28. 'sub_amount_in_six_day',
  29. ];
  30. }