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; } /// /// 物流更新时间戳