Files
CKB-Interface/application/common/model/TrafficPool.php
2026-01-05 10:25:32 +08:00

19 lines
340 B
PHP

<?php
namespace app\common\model;
use think\Model;
/**
* 流量池模型类
*/
class TrafficPool extends Model
{
// 设置数据表名
protected $name = 'traffic_pool';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}