81 lines
2.6 KiB
PHP
81 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace addons\webman\model;
|
|
|
|
use addons\webman\traits\HasDateTimeFormatter;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
/**
|
|
* 分润结算记录
|
|
* Class PromoterProfitSettlementRecord
|
|
* @property int id 主键
|
|
* @property int department_id 部门/渠道id
|
|
* @property int promoter_player_id 部门/渠道id
|
|
* @property float total_withdraw_amount 总提现金额
|
|
* @property float total_recharge_amount 总充值金额
|
|
* @property float total_bonus_amount 活动奖励金额
|
|
* @property float total_admin_deduct_amount 管理员扣点金额
|
|
* @property float total_admin_add_amount 管理员加点金额
|
|
* @property float total_present_amount 赠送金额
|
|
* @property float total_machine_up_amount 机台上点
|
|
* @property float total_machine_down_amount 机台下点
|
|
* @property float total_lottery_amount 派彩总金额
|
|
* @property float total_profit_amount 结算分润
|
|
* @property float total_player_profit_amount 直系玩家提供分润
|
|
* @property float last_profit_amount 上次结算分润
|
|
* @property float adjust_amount 分润调整金额
|
|
* @property float actual_amount 实际到账金额
|
|
* @property int type 类型
|
|
* @property float tradeno 结算单号
|
|
* @property int user_id 管理员id
|
|
* @property string user_name 管理员名称
|
|
* @property string created_at 创建时间
|
|
* @property string updated_at 最后一次修改时间
|
|
*
|
|
* @property Player player_promoter
|
|
* @property PlayerPromoter promoter
|
|
* @property AdminUser user
|
|
* @package addons\webman\model
|
|
*/
|
|
class PromoterProfitSettlementRecord extends Model
|
|
{
|
|
use HasDateTimeFormatter;
|
|
|
|
const TYPE_SETTLEMENT = 1; // 结算
|
|
const TYPE_CLEAR = 2; // 清算
|
|
|
|
public function __construct(array $attributes = [])
|
|
{
|
|
parent::__construct($attributes);
|
|
|
|
$this->setTable(plugin()->webman->config('database.promoter_profit_settlement_record_table'));
|
|
}
|
|
|
|
/**
|
|
* 推广员信息
|
|
* @return BelongsTo
|
|
*/
|
|
public function promoter(): BelongsTo
|
|
{
|
|
return $this->belongsTo(plugin()->webman->config('database.player_promoter_model'), 'promoter_player_id', 'player_id');
|
|
}
|
|
|
|
/**
|
|
* 推广员玩家信息
|
|
* @return BelongsTo
|
|
*/
|
|
public function player_promoter(): BelongsTo
|
|
{
|
|
return $this->belongsTo(plugin()->webman->config('database.player_model'), 'promoter_player_id');
|
|
}
|
|
|
|
/**
|
|
* 管理员用户
|
|
* @return BelongsTo
|
|
*/
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(plugin()->webman->config('database.user_model'), 'user_id')->withTrashed();
|
|
}
|
|
} |