fix: 修复发货功能 delivery_status 字段类型问题,从 byte 改为 int 支持 -1 默认值
This commit is contained in:
parent
8836017696
commit
13cf64415d
|
|
@ -1084,7 +1084,7 @@ public class WarehouseService : IWarehouseService
|
||||||
SendTime = 0,
|
SendTime = 0,
|
||||||
ShouTime = 0,
|
ShouTime = 0,
|
||||||
CancelTime = 0,
|
CancelTime = 0,
|
||||||
DeliveryStatus = 0,
|
DeliveryStatus = -1, // -1 表示未查询物流
|
||||||
DeliveryTime = 0,
|
DeliveryTime = 0,
|
||||||
AdminId = 0,
|
AdminId = 0,
|
||||||
CreatedAt = DateTime.UtcNow,
|
CreatedAt = DateTime.UtcNow,
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@ public partial class OrderItemsSend
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 物流状态:-1未查询,0在途,1揽收,2疑难,3签收,4退签,5派件,6退回
|
/// 物流状态:-1未查询,0在途,1揽收,2疑难,3签收,4退签,5派件,6退回
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public byte DeliveryStatus { get; set; }
|
public int DeliveryStatus { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 物流更新时间戳
|
/// 物流更新时间戳
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user