1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Modules\Book\Models;
- use Illuminate\Database\Eloquent\Model;
- class NewBookTest extends Model
- {
- protected $connection = 'api_mysql';
- protected $table = 'new_book_tests';
- protected $fillable = [
- 'bid',
- 'book_name',
- 'sex',
- 'category',
- 'status',
- 'test_weight',
- 'test_begin_time',
- 'test_end_time',
- 'sub_amount_in_three_day',
- 'uv_in_three_day',
- 'uv_in_one_day',
- 'sub_amount_in_one_day',
- 'plan_push_user_num',
- 'created_at',
- 'updated_at',
- 'is_detail_recorded',
- 'uv_in_seven_day',
- 'sub_amount_in_seven_day',
- 'uv_in_six_day',
- 'sub_amount_in_six_day',
- ];
- }
|