public HttpResponseMessage saveAPService(dynamic s)
        {
            string id              = s.id;
            string companyId       = s.companyId;
            string service_type    = s.service_type;
            string service_title   = s.service_title;
            string service_content = s.service_content;
            Object data;

            try
            {
                BLL.handleCompany company = new BLL.handleCompany();
                bool flag = false;
                if (string.IsNullOrEmpty(id))
                {
                    flag = company.AddService(companyId, service_type, service_title, service_content);
                }
                else
                {
                    flag = company.EditService(id, companyId, service_type, service_title, service_content);
                }


                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")
            });
        }