mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
1. 框架更新至5.8,并且其涉及代码进行修改; 2. 对支付的alipay组件针对php7.2/3进行修改; 3. 重构了节点信息获取逻辑;现在为实时请求; 4. 代码小细节和命名规范
76 lines
2.0 KiB
PHP
76 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Models;
|
|
|
|
use Eloquent;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 账号余额操作日志
|
|
* Class UserBalanceLog
|
|
*
|
|
* @package App\Http\Models
|
|
* @mixin Eloquent
|
|
* @property int $id
|
|
* @property int $user_id 账号ID
|
|
* @property int $order_id 订单ID
|
|
* @property int $before 发生前余额,单位分
|
|
* @property int $after 发生后金额,单位分
|
|
* @property int $amount 发生金额,单位分
|
|
* @property string|null $desc 操作描述
|
|
* @property string|null $created_at 创建时间
|
|
* @property-read User $user
|
|
* @method static Builder|UserBalanceLog newModelQuery()
|
|
* @method static Builder|UserBalanceLog newQuery()
|
|
* @method static Builder|UserBalanceLog query()
|
|
* @method static Builder|UserBalanceLog whereAfter($value)
|
|
* @method static Builder|UserBalanceLog whereAmount($value)
|
|
* @method static Builder|UserBalanceLog whereBefore($value)
|
|
* @method static Builder|UserBalanceLog whereCreatedAt($value)
|
|
* @method static Builder|UserBalanceLog whereDesc($value)
|
|
* @method static Builder|UserBalanceLog whereId($value)
|
|
* @method static Builder|UserBalanceLog whereOrderId($value)
|
|
* @method static Builder|UserBalanceLog whereUserId($value)
|
|
*/
|
|
class UserBalanceLog extends Model
|
|
{
|
|
public $timestamps = FALSE;
|
|
protected $table = 'user_balance_log';
|
|
protected $primaryKey = 'id';
|
|
|
|
function user()
|
|
{
|
|
return $this->hasOne(User::class, 'id', 'user_id');
|
|
}
|
|
|
|
function getBeforeAttribute($value)
|
|
{
|
|
return $value/100;
|
|
}
|
|
|
|
function setBeforeAttribute($value)
|
|
{
|
|
return $this->attributes['before'] = $value*100;
|
|
}
|
|
|
|
function getAfterAttribute($value)
|
|
{
|
|
return $value/100;
|
|
}
|
|
|
|
function setAfterAttribute($value)
|
|
{
|
|
return $this->attributes['after'] = $value*100;
|
|
}
|
|
|
|
function getAmountAttribute($value)
|
|
{
|
|
return $value/100;
|
|
}
|
|
|
|
function setAmountAttribute($value)
|
|
{
|
|
return $this->attributes['amount'] = $value*100;
|
|
}
|
|
} |