| 123456789101112131415161718192021 |
- <?php
- namespace App\Game;
- use Illuminate\Database\Eloquent\Model;
- class WebRegionConfig extends Model
- {
- protected $table = 'webgame.WebRegionConfig';
- protected $primaryKey = 'id';
- public $timestamps = false;
- protected $connection = 'mysql';
- protected $fillable = [
- 'RegionID', 'DomainUrl', 'LogoUrl', 'IconUrl', 'BindChannels', 'GroupID','GameDesc'
- ];
- protected $casts = [
- 'BindChannels' => 'json',
- ];
- }
|