[色子游戏]玩家钱包流水记录

This commit is contained in:
2026-03-03 14:10:07 +08:00
parent 439f01ee6c
commit d214ccc2ba
8 changed files with 707 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<?php
// +----------------------------------------------------------------------
// | saiadmin [ saiadmin快速开发框架 ]
// +----------------------------------------------------------------------
// | Author: your name
// +----------------------------------------------------------------------
namespace app\dice\model\player_wallet_record;
use app\dice\model\player\DicePlayer;
use plugin\saiadmin\basic\think\BaseModel;
/**
* 玩家钱包流水模型
*
* dice_player_wallet_record 玩家钱包流水记录
*
* @property $id ID
* @property $player_id 用户id
* @property $coin 平台币变化
* @property $type 类型
* @property $wallet_before 钱包操作前
* @property $wallet_after 钱包操作后
* @property $total_draw_count 总抽奖次数
* @property $paid_draw_count 购买抽奖次数
* @property $free_draw_count 赠送抽奖次数
* @property $create_time 创建时间
* @property $update_time 修改时间
*/
class DicePlayerWalletRecord extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 数据库表名称
* @var string
*/
protected $table = 'dice_player_wallet_record';
/**
* 关联模型 dicePlayer
*/
public function dicePlayer(): \think\model\relation\HasOne
{
return $this->hasOne(DicePlayer::class, 'id', 'player_id');
}
}