示例#1
0
        public IHttpActionResult UpdateStateid()
        {
            string   OrderId = HttpContext.Current.Request.Form["OrderId"];
            string   Stateid = HttpContext.Current.Request.Form["Stateid"];
            LzHandle Handle  = new LzHandle();
            string   strJson = Handle.UpdateStateid(OrderId, Stateid);

            return(Ok(strJson));
        }