40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class DbipLookup
|
|
*
|
|
* @property string $addr_type
|
|
* @property string $ip_start
|
|
* @property string $ip_end
|
|
* @property string $country
|
|
* @package App\Models
|
|
* @method static \Illuminate\Database\Eloquent\Builder|DbipLookup3 newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|DbipLookup3 newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|DbipLookup3 query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|DbipLookup3 whereAddrType($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|DbipLookup3 whereCountry($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|DbipLookup3 whereIpEnd($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|DbipLookup3 whereIpStart($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class DbipLookup3 extends Model
|
|
{
|
|
protected $table = 'dbip_lookup_3';
|
|
public $incrementing = false;
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'addr_type',
|
|
'ip_start',
|
|
'ip_end',
|
|
'country'
|
|
];
|
|
}
|