WebRegionConfig.php 487 B

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