mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 11:09:27 +00:00
16 lines
213 B
PHP
16 lines
213 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 优惠券使用日志.
|
|
*/
|
|
class CouponLog extends Model
|
|
{
|
|
public const UPDATED_AT = null;
|
|
|
|
protected $table = 'coupon_log';
|
|
}
|