12345678910111213141516 |
- <?php
- namespace App\Models\Report;
- use Illuminate\Database\Eloquent\Model;
- class ReportLog extends Model
- {
- protected $table = 'dy_report_logs';
- protected $fillable = [
- 'adid', 'clickid', 'uid', 'ad_params', 'event_type',
- 'callback_result', 'callback_response', 'send_order_id',
- 'projectid', 'promotionid', 'trade_no', 'remark'
- ];
- }
|