* 用户银行表 Table */ namespace app\allwin\model; use think\Model; class BankRecharge extends Model{ protected $pk = 'id'; protected $table = 'ai_allwin_bank_recharge'; //用户 public function user(){ return $this->hasOne('app\common\model\SystemUser','id','user_id'); } }