2
0

WebThemeConfig.php 396 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Game;
  3. use Illuminate\Database\Eloquent\Model;
  4. class WebThemeConfig extends Model
  5. {
  6. protected $table = 'webgame.WebThemeConfig';
  7. protected $primaryKey = 'id';
  8. public $timestamps = false;
  9. protected $connection = 'mysql';
  10. protected $fillable = [
  11. 'ThemeKey', 'BindRegions'
  12. ];
  13. protected $casts = [
  14. 'BindRegions' => 'json',
  15. ];
  16. }