13 lines
184 B
PHP
13 lines
184 B
PHP
|
|
<?php
|
||
|
|
namespace app\superadmin\model;
|
||
|
|
|
||
|
|
use think\Model;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 流量池模型
|
||
|
|
*/
|
||
|
|
class TrafficPool extends Model
|
||
|
|
{
|
||
|
|
// 设置数据表名
|
||
|
|
protected $name = 'traffic_pool';
|
||
|
|
}
|