mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
1. 修复原版本中节点/用户每日流量日志记录错误; 原版:在30号看到的29号的总流量,其实是28号当天产生的流量;依次类推全部流量都错位1天; 现:日流量表精确到当天,天流量表精确到当前; 2. 修复原流量折线图的日期-流量配对错误; 原版:并不是按照记录日期,而是按照有的记录; 现:按照记录日期排序; ----- 以上皆为SSRPanel中遗留的问题代码----- 3. 简化,规范化日期转换 4. 清理多余代码;
86 lines
3.2 KiB
PHP
86 lines
3.2 KiB
PHP
<?php
|
||
|
||
namespace App\Models;
|
||
|
||
use Illuminate\Database\Eloquent\Builder;
|
||
use Illuminate\Database\Eloquent\Model;
|
||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
||
/**
|
||
* 优惠券
|
||
*
|
||
* @property int $id
|
||
* @property string $name 优惠券名称
|
||
* @property string $logo 优惠券LOGO
|
||
* @property string $sn 优惠券码
|
||
* @property int $type 类型:1-抵用券、2-折扣券、3-充值券
|
||
* @property int $usage_count 可使用次数
|
||
* @property int $amount 金额,单位分
|
||
* @property float $discount 折扣
|
||
* @property int $rule 使用限制,单位分
|
||
* @property int $available_start 有效期开始
|
||
* @property int $available_end 有效期结束
|
||
* @property int $status 状态:0-未使用、1-已使用、2-已失效
|
||
* @property \Illuminate\Support\Carbon $created_at 创建时间
|
||
* @property \Illuminate\Support\Carbon $updated_at 最后更新时间
|
||
* @property \Illuminate\Support\Carbon|null $deleted_at 删除时间
|
||
* @method static Builder|Coupon newModelQuery()
|
||
* @method static Builder|Coupon newQuery()
|
||
* @method static Builder|Coupon onlyTrashed()
|
||
* @method static Builder|Coupon query()
|
||
* @method static Builder|Coupon type($type)
|
||
* @method static Builder|Coupon whereAmount($value)
|
||
* @method static Builder|Coupon whereAvailableEnd($value)
|
||
* @method static Builder|Coupon whereAvailableStart($value)
|
||
* @method static Builder|Coupon whereCreatedAt($value)
|
||
* @method static Builder|Coupon whereDeletedAt($value)
|
||
* @method static Builder|Coupon whereDiscount($value)
|
||
* @method static Builder|Coupon whereId($value)
|
||
* @method static Builder|Coupon whereLogo($value)
|
||
* @method static Builder|Coupon whereName($value)
|
||
* @method static Builder|Coupon whereRule($value)
|
||
* @method static Builder|Coupon whereSn($value)
|
||
* @method static Builder|Coupon whereStatus($value)
|
||
* @method static Builder|Coupon whereType($value)
|
||
* @method static Builder|Coupon whereUpdatedAt($value)
|
||
* @method static Builder|Coupon whereUsageCount($value)
|
||
* @method static Builder|Coupon withTrashed()
|
||
* @method static Builder|Coupon withoutTrashed()
|
||
* @mixin \Eloquent
|
||
*/
|
||
class Coupon extends Model {
|
||
use SoftDeletes;
|
||
|
||
protected $table = 'coupon';
|
||
protected $dates = ['deleted_at'];
|
||
|
||
// 筛选类型
|
||
public function scopeType($query, $type) {
|
||
return $query->whereType($type);
|
||
}
|
||
|
||
public function getAmountAttribute($value) {
|
||
return $value / 100;
|
||
}
|
||
|
||
public function setAmountAttribute($value): void {
|
||
$this->attributes['amount'] = $value * 100;
|
||
}
|
||
|
||
public function getDiscountAttribute($value) {
|
||
return $value * 10;
|
||
}
|
||
|
||
public function setDiscountAttribute($value): void {
|
||
$this->attributes['discount'] = $value / 10;
|
||
}
|
||
|
||
public function getRuleAttribute($value) {
|
||
return $value / 100;
|
||
}
|
||
|
||
public function setRuleAttribute($value): void {
|
||
$this->attributes['rule'] = $value * 100;
|
||
}
|
||
}
|