Files
ProxyPanel/app/Models/ReferralApply.php
兔姬桑 71828a0ac5 数据库改版 +Rule 编辑相关 (Rule未实际应用)
1. 规范化数据库数据;
2. 添加Rule相关页面
为未来加入web api做准备
2020-08-05 03:20:33 +08:00

73 lines
2.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Models;
use Auth;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
/**
* 返利申请
*
* @property int $id
* @property int $user_id 用户ID
* @property int $before 操作前可提现金额,单位分
* @property int $after 操作后可提现金额,单位分
* @property int $amount 本次提现金额,单位分
* @property string $link_logs 关联返利日志ID例如1,3,4
* @property int $status 状态:-1-驳回、0-待审核、1-审核通过待打款、2-已打款
* @property \Illuminate\Support\Carbon|null $created_at 创建时间
* @property \Illuminate\Support\Carbon|null $updated_at 最后更新时间
* @property-read \App\Models\User|null $User
* @method static Builder|ReferralApply newModelQuery()
* @method static Builder|ReferralApply newQuery()
* @method static Builder|ReferralApply query()
* @method static Builder|ReferralApply uid()
* @method static Builder|ReferralApply whereAfter($value)
* @method static Builder|ReferralApply whereAmount($value)
* @method static Builder|ReferralApply whereBefore($value)
* @method static Builder|ReferralApply whereCreatedAt($value)
* @method static Builder|ReferralApply whereId($value)
* @method static Builder|ReferralApply whereLinkLogs($value)
* @method static Builder|ReferralApply whereStatus($value)
* @method static Builder|ReferralApply whereUpdatedAt($value)
* @method static Builder|ReferralApply whereUserId($value)
* @mixin \Eloquent
*/
class ReferralApply extends Model {
protected $table = 'referral_apply';
protected $primaryKey = 'id';
function scopeUid($query) {
return $query->whereUserId(Auth::id());
}
function User() {
return $this->hasOne(User::class, 'id', 'user_id');
}
function getBeforeAttribute($value) {
return $value / 100;
}
function setBeforeAttribute($value) {
$this->attributes['before'] = $value * 100;
}
function getAfterAttribute($value) {
return $value / 100;
}
function setAfterAttribute($value) {
$this->attributes['after'] = $value * 100;
}
function getAmountAttribute($value) {
return $value / 100;
}
function setAmountAttribute($value) {
$this->attributes['amount'] = $value * 100;
}
}