webman_ad/app/model/CampaignBudget.php
2024-12-11 18:30:32 +08:00

18 lines
323 B
PHP

<?php
namespace app\model;
use think\Model;
class CampaignBudget extends Model
{
protected $table = 'ad_ga_campaign_budgets';
protected $primaryKey = 'id';
protected $autoWriteTimestamp = true;
public function campaigns()
{
return $this->hasMany(Campaign::class, 'budget_id', 'id');
}
}