From 13cf64415dc2afbc644859a495bd423fbe8a97da Mon Sep 17 00:00:00 2001 From: gpu Date: Sat, 24 Jan 2026 04:20:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=8F=91=E8=B4=A7?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=20delivery=5Fstatus=20=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E9=97=AE=E9=A2=98=EF=BC=8C=E4=BB=8E=20byte?= =?UTF-8?q?=20=E6=94=B9=E4=B8=BA=20int=20=E6=94=AF=E6=8C=81=20-1=20?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/HoneyBox/src/HoneyBox.Core/Services/WarehouseService.cs | 2 +- server/HoneyBox/src/HoneyBox.Model/Entities/OrderItemsSend.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/HoneyBox/src/HoneyBox.Core/Services/WarehouseService.cs b/server/HoneyBox/src/HoneyBox.Core/Services/WarehouseService.cs index b9a77ac2..d821f832 100644 --- a/server/HoneyBox/src/HoneyBox.Core/Services/WarehouseService.cs +++ b/server/HoneyBox/src/HoneyBox.Core/Services/WarehouseService.cs @@ -1084,7 +1084,7 @@ public class WarehouseService : IWarehouseService SendTime = 0, ShouTime = 0, CancelTime = 0, - DeliveryStatus = 0, + DeliveryStatus = -1, // -1 表示未查询物流 DeliveryTime = 0, AdminId = 0, CreatedAt = DateTime.UtcNow, diff --git a/server/HoneyBox/src/HoneyBox.Model/Entities/OrderItemsSend.cs b/server/HoneyBox/src/HoneyBox.Model/Entities/OrderItemsSend.cs index 85606a68..c0500b4d 100644 --- a/server/HoneyBox/src/HoneyBox.Model/Entities/OrderItemsSend.cs +++ b/server/HoneyBox/src/HoneyBox.Model/Entities/OrderItemsSend.cs @@ -81,7 +81,7 @@ public partial class OrderItemsSend /// /// 物流状态:-1未查询,0在途,1揽收,2疑难,3签收,4退签,5派件,6退回 /// - public byte DeliveryStatus { get; set; } + public int DeliveryStatus { get; set; } /// /// 物流更新时间戳