| 12345678910111213141516171819 |
- <?php
- namespace App\Game;
- use Illuminate\Database\Eloquent\Model;
- class AgentLinksClickLog extends Model
- {
- protected $table = 'webgame.AgentLinksClickLog';
- protected $connection = 'mysql';
- protected $fillable = [
- 'LinkID', 'Country', 'City', 'Other'
- ];
- public $timestamps = false;
- // 定义时间戳字段名称
- const CREATED_AT = 'CreateAt';
- }
|