[WebMethod]//25.新增注册链接
        public bool AddAccountRegInfoSet(string Guid, AccountRegInfoSet info)
        {
            var accId = GetLoginId(Guid);

            if (accId == 0)
            {
                return(false);
            }
            info.AccountId = accId;
            return(AccountDAL.AddAccountRegInfoSet(info));
        }