This commit is contained in:
root
2020-01-01 23:48:23 +08:00
parent 2a693e4911
commit 7639f07b83
2 changed files with 28 additions and 2 deletions

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

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