/// <summary>
 /// 查询所有的第三方名
 /// </summary>
 /// <returns></returns>
 public IEnumerable<string> SelectShopSyncThirdPartyies()
 {
     var result = new List<string>();
     try
     {
         result = ShopSyncDAL.SelectShopSyncThirdParties();
     }
     catch (Exception ex)
     {
         Logger.Log(Tuhu.Component.Log.Level.Error, ex, nameof(SelectThirdPartyShopSyncRecord), null);
     }
     return result;
 }
 /// <summary>
 /// 分页查询门店同步记录
 /// </summary>
 /// <param name="thirdParty"></param>
 /// <param name="pageIndex"></param>
 /// <param name="pageSize"></param>
 /// <param name="syncStatus"></param>
 /// <param name="shopId"></param>
 /// <param name="simpleName"></param>
 /// <param name="fullName"></param>
 /// <returns></returns>
 public Tuple<List<ThirdPartyShopSyncRecord>, int> SelectThirdPartyShopSyncRecord(string thirdParty, int pageIndex, int pageSize, 
     string syncStatus, int shopId, string simpleName, string fullName)
 {
     Tuple<List<ThirdPartyShopSyncRecord>, int> result =null;
     try
     {
         result = ShopSyncDAL.SelectThirdPartyShopSyncRecord(thirdParty, pageIndex, pageSize, syncStatus, shopId, simpleName, fullName);
     }
     catch (Exception ex)
     {
         Logger.Log(Tuhu.Component.Log.Level.Error, ex, nameof(SelectThirdPartyShopSyncRecord), null);
     }
     return result;
 }