超管后台 - 客户池列表

This commit is contained in:
柳清爽
2025-04-11 15:04:57 +08:00
parent 04895ffd7c
commit b4b1fb6d15
6 changed files with 225 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace app\superadmin\model;
use think\Model;
/**
* 流量来源模型
*/
class TrafficSource extends Model
{
// 设置数据表名
protected $name = 'traffic_source';
}