NewBookTest.php 706 B

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