public Dictionary <string, Object> GetOrder(string orderCode)
        {
            try
            {
                Dictionary <string, Object> dic = CommonRequest.ApiGetOrder(orderCode);

                return(dic);
            }
            catch (Exception e)
            {
                logger.Error("获取订单详情接口异常:" + e.Message);
                return(null);
            }
        }