mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 07:59:20 +00:00
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 优惠券使用日志
|
|
*
|
|
* @property int $id
|
|
* @property int $coupon_id 优惠券ID
|
|
* @property int $goods_id 商品ID
|
|
* @property int $order_id 订单ID
|
|
* @property string $description 备注
|
|
* @property \Illuminate\Support\Carbon|null $created_at 创建时间
|
|
* @property \Illuminate\Support\Carbon|null $updated_at 最后更新时间
|
|
* @method static Builder|CouponLog newModelQuery()
|
|
* @method static Builder|CouponLog newQuery()
|
|
* @method static Builder|CouponLog query()
|
|
* @method static Builder|CouponLog whereCouponId($value)
|
|
* @method static Builder|CouponLog whereCreatedAt($value)
|
|
* @method static Builder|CouponLog whereDescription($value)
|
|
* @method static Builder|CouponLog whereGoodsId($value)
|
|
* @method static Builder|CouponLog whereId($value)
|
|
* @method static Builder|CouponLog whereOrderId($value)
|
|
* @method static Builder|CouponLog whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class CouponLog extends Model {
|
|
protected $table = 'coupon_log';
|
|
|
|
}
|