123456789101112131415161718 |
- <?php
- /**
- * Created by PhpStorm.
- * User: z-yang
- * Date: 2020/12/15
- * Time: 15:09
- */
- namespace App\Modules\Book\Models;
- use Illuminate\Database\Eloquent\Model;
- class BookCombinationConfig extends Model
- {
- protected $table = 'book_combination_config';
- protected $fillable = ['bid','bid_group','is_enable'];
- }
|