示例#1
0
        void Bind()
        {
            string token = request["token"];

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