first commit

This commit is contained in:
Anonymous
2019-10-22 23:39:48 +08:00
commit 4ddaf3eb5d
142 changed files with 19074 additions and 0 deletions

11
app/Models/ServerLog.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ServerLog extends Model
{
protected $table = 'v2_server_log';
protected $dateFormat = 'U';
}