AgentLinksClickLog.php 386 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Game;
  3. use Illuminate\Database\Eloquent\Model;
  4. class AgentLinksClickLog extends Model
  5. {
  6. protected $table = 'webgame.AgentLinksClickLog';
  7. protected $connection = 'mysql';
  8. protected $fillable = [
  9. 'LinkID', 'Country', 'City', 'Other'
  10. ];
  11. public $timestamps = false;
  12. // 定义时间戳字段名称
  13. const CREATED_AT = 'CreateAt';
  14. }