public HttpResponseMessage updateComCulture(dynamic s)
        {
            if (s == null)
            {
                return(new HttpResponseMessage
                {
                    Content = new StringContent("", System.Text.Encoding.UTF8, "application/json")
                });
            }

            string companyId = s.companyId;
            string culture   = s.culture;
            Object data;

            try
            {
                BLL.handleCompany company = new BLL.handleCompany();
                bool flag = false;
                flag = company.updateComCulture(companyId, culture);


                if (flag)
                {
                    data = new
                    {
                        success = true
                    };
                }
                else
                {
                    data = new
                    {
                        success = false,
                        backMsg = "更新信息失败"
                    };
                }
            }
            catch (Exception ex)
            {
                data = new
                {
                    success = false,
                    backMsg = "服务异常"
                };
            }

            JavaScriptSerializer serializer = new JavaScriptSerializer();
            string json = serializer.Serialize(data);

            return(new HttpResponseMessage
            {
                Content = new StringContent(json, System.Text.Encoding.UTF8, "application/json")
            });
        }