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