update: statistics

This commit is contained in:
tokumeikoi
2020-12-21 17:11:48 +08:00
parent bcea2e7a54
commit 9a465d9bb4
2 changed files with 7 additions and 2 deletions

12
app/Models/StatOrder.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class StatOrder extends Model
{
protected $table = 'v2_stat_order';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}