InquiryIP.php
425 字节
<?php
namespace App\Models\Inquiry;
use App\Models\Base;
/**
* @remark :
* @class :InquiryIP.php
* @author :lyh
* @time :2023/7/13 11:45
*/
class InquiryIP extends Base
{
protected $table = 'gl_xunpan_ipdata';
/**
* @return mixed
* @author zbj
* @date 2024/3/29
*/
public static function getIpAreas(){
return self::groupBy('ip_area')->pluck('ip_area')->toArray();
}
}