public JsonResult AddInPartialView(AddInViewModel addIn)
        {
            Response _res = new Helper.Response();

            if (ModelState.IsValid)
            {
                Interaction interaction = new Interaction();
                interaction.FWalletID     = WalletID;
                interaction.Amount        = addIn.Amount;
                interaction.WalletAddress = addIn.WalletAddrress;
                interaction.Status        = 0;
                interaction.InOrOut       = 1;
                interaction.OperatingTime = DateTime.Now;
                _res = _interaction.Add(interaction);
            }
            if (_res.Code == 1)
            {
                _res.Message = "已提交申请";
            }
            return(Json(_res));
        }