1234567891011121314151617 |
- <?php
- /**
- * Created by PhpStorm.
- * User: z-yang
- * Date: 2020/12/15
- * Time: 15:21
- */
- namespace App\Modules\User\Models;
- use Illuminate\Database\Eloquent\Model;
- class UserBookCombinationConfig extends Model
- {
- protected $table = 'user_book_combination_config';
- protected $fillable = ['uid','short_bid','long_bid','is_enable'];
- }
|