超管后台 - 流量池返工

This commit is contained in:
柳清爽
2025-04-22 11:03:26 +08:00
parent 34a7f6e40e
commit 3c7fd04a10
3 changed files with 140 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
<?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';
}