This commit is contained in:
hgc 2024-12-23 16:19:41 +08:00
parent 23208e3eac
commit 8361f6b9ae
6 changed files with 11 additions and 112 deletions

View File

@ -1,27 +0,0 @@
<?php
namespace app\model;
use think\Model;
class MetaAd extends Model
{
// 数据表名称
protected $table = 'ad_meta_ads';
// 主键字段
protected $pk = 'id';
// 定义时间戳字段
protected $createTime = 'created_at';
protected $updateTime = 'updated_at';
// 不自动写入更新时间字段
protected $autoWriteTimestamp = true;
// 关联广告组
public function adGroup()
{
return $this->belongsTo('MetaAdGroup', 'ad_group_id');
}
}

View File

@ -1,27 +0,0 @@
<?php
namespace app\model;
use think\Model;
class MetaAdGroup extends Model
{
// 数据表名称
protected $table = 'ad_meta_ad_groups';
// 主键字段
protected $pk = 'id';
// 定义时间戳字段
protected $createTime = 'created_at';
protected $updateTime = 'updated_at';
// 不自动写入更新时间字段
protected $autoWriteTimestamp = true;
// 关联广告系列
public function campaign()
{
return $this->belongsTo('MetaCampaign', 'campaign_id');
}
}

View File

@ -1,21 +0,0 @@
<?php
namespace app\model;
use think\Model;
class MetaBusinessAccount extends Model
{
// 数据表名称
protected $table = 'ad_meta_business_accounts';
// 主键字段
protected $pk = 'id';
// 定义时间戳字段
protected $createTime = 'created_at';
protected $updateTime = 'updated_at';
// 不自动写入更新时间字段
protected $autoWriteTimestamp = true;
}

View File

@ -1,27 +0,0 @@
<?php
namespace app\model;
use think\Model;
class MetaCampaign extends Model
{
// 数据表名称
protected $table = 'ad_meta_campaigns';
// 主键字段
protected $pk = 'id';
// 定义时间戳字段
protected $createTime = 'created_at';
protected $updateTime = 'updated_at';
// 不自动写入更新时间字段
protected $autoWriteTimestamp = true;
// 关联广告账户
public function businessAccount()
{
return $this->belongsTo('MetaBusinessAccount', 'business_account_id');
}
}

12
composer.lock generated
View File

@ -3711,16 +3711,16 @@
},
{
"name": "topthink/think-orm",
"version": "v3.0.32",
"version": "v3.0.33",
"source": {
"type": "git",
"url": "https://github.com/top-think/think-orm.git",
"reference": "8d305da35664a64e4ab2a7faaaf6ed301c482651"
"reference": "6e0ea679f7448ff9c8906606462505597681e22e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/top-think/think-orm/zipball/8d305da35664a64e4ab2a7faaaf6ed301c482651",
"reference": "8d305da35664a64e4ab2a7faaaf6ed301c482651",
"url": "https://api.github.com/repos/top-think/think-orm/zipball/6e0ea679f7448ff9c8906606462505597681e22e",
"reference": "6e0ea679f7448ff9c8906606462505597681e22e",
"shasum": ""
},
"require": {
@ -3763,9 +3763,9 @@
],
"support": {
"issues": "https://github.com/top-think/think-orm/issues",
"source": "https://github.com/top-think/think-orm/tree/v3.0.32"
"source": "https://github.com/top-think/think-orm/tree/v3.0.33"
},
"time": "2024-12-18T01:30:21+00:00"
"time": "2024-12-19T01:52:44+00:00"
},
{
"name": "vlucas/phpdotenv",

View File

@ -9,13 +9,13 @@ return [
// 服务器地址
'hostname' => '127.0.0.1',
// 数据库名
'database' => 'test',
'database' => 'adlibs',
// 数据库用户名
'username' => 'root',
// 数据库密码
'password' => '123456',
'password' => 'hope8848',
// 数据库连接端口
'hostport' => '3306',
'hostport' => '3309',
// 数据库连接参数
'params' => [
// 连接超时3秒
@ -57,7 +57,8 @@ return [
// 自定义分页类
'bootstrap' => '',
// 'schema' => 'public'// 设置默认 schema
'debug' => true,
'debug' => false,
// 'fields_strict' => false,
],
],
];