Ejemplo n.º 1
0
        void UnBind()
        {
            string token = request["token"];

            BLL.manager bll = new BLL.manager();
            if (bll.UnBindWeichat(UserInfo.id, token))
            {
                res = JsonHelper2.GetCommonObj(0, "解绑成功");
            }
            else
            {
                res = JsonHelper2.GetCommonObj(1, "解绑失败");
            }
        }