From 4c3169436bd427a17c3c8bc1de414b5b982d2bcd Mon Sep 17 00:00:00 2001 From: shanji <18996038927@163.com> Date: Wed, 31 Jan 2024 07:14:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=8F=E6=9C=BA=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BBWYB.PurchaserCapture/MainWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BBWYB.PurchaserCapture/MainWindow.xaml.cs b/BBWYB.PurchaserCapture/MainWindow.xaml.cs index 5ae174f..3d259d3 100644 --- a/BBWYB.PurchaserCapture/MainWindow.xaml.cs +++ b/BBWYB.PurchaserCapture/MainWindow.xaml.cs @@ -130,7 +130,7 @@ namespace BBWYB.PurchaserCapture .WithTempQuery(g => new { MaxId = g.Max(g.Value.Item1.Id), PurchaserId = g.Key.Id, MemberId = g.Key.MemberId }) .From() .InnerJoin((psp2, psp1) => psp2.MaxId == psp1.Id) - .OrderByDescending((psp2, psp1) => psp1.Id) + .OrderByDescending((psp2, psp1) => Guid.NewGuid()) .ToList((psp2, psp1) => new { psp1.PurchaserId, @@ -145,7 +145,7 @@ namespace BBWYB.PurchaserCapture purchaserMemberId = pspList[i].MemberId; var url = $"https://detail.1688.com/offer/{pspList[i].PurchaseProductId}.html?clickid={Guid.NewGuid().ToString().Md5Encrypt()}&sessionid={Guid.NewGuid().ToString().Md5Encrypt()}&sk={sk}"; Navigate(url); - + Thread.Sleep(10000); } });