Ejemplo n.º 1
0
 /// <summary>
 /// 查看当前卖家的物流状态
 /// </summary>
 /// <param name="tid"></param>
 /// <param name="seller_nick"></param>
 /// <returns></returns>
 public LogisticsTraceSearchResponse GetLogisticsInfo(long tid, string seller_nick)
 {
     try
     {
         ITopClient client = TBManager.GetClient();
         LogisticsTraceSearchRequest req = new LogisticsTraceSearchRequest();
         req.Tid        = tid;
         req.SellerNick = seller_nick;
         LogisticsTraceSearchResponse response = client.Execute(req);
         return(response);
     }
     catch (Exception ex)
     {
         ExceptionReporter.WriteLog(ex, ExceptionPostion.TBApply_Data);
     }
     return(null);
 }