其余文件

This commit is contained in:
2026-04-14 17:46:22 +08:00
parent 294b68fe37
commit 3691f4db22
1343 changed files with 189847 additions and 0 deletions

View File

@ -0,0 +1,32 @@
<?php
namespace app\common\model;
use app\common\basics\Models;
use app\common\model\user\User;
/**
* Class WithdrawApply
* @package app\common\model
*/
class WithdrawApply extends Models
{
//提现状态
const STATUS_WAIT = 1; // 待提现
const STATUS_ING = 2; // 提现中
const STATUS_SUCCESS = 3; // 提现成功
const STATUS_FAIL = 4; //提现失败
/**
* @notes 管理User模型
* @return \think\model\relation\HasOne
* @author suny
* @date 2021/7/13 6:45 下午
*/
public function user()
{
return $this->hasOne(User::class, 'id', 'user_id')
->field('id,sn,nickname,avatar');
}
}