using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 发货记录 /// public partial class OrderListSend { public uint Id { get; set; } /// /// 用户id /// public uint UserId { get; set; } /// /// 发货订单号 /// public string SendNum { get; set; } = null!; /// /// 运费 /// public decimal Freight { get; set; } /// /// 0待支付 1待发货 2待收货 3已完成 4后台取消 /// public byte Status { get; set; } /// /// 发货数量 /// public uint Count { get; set; } /// /// 收货人姓名 /// public string? Name { get; set; } /// /// 收货人电话 /// public string? Mobile { get; set; } /// /// 收货地址 /// public string? Address { get; set; } /// /// 备注 /// public string? Message { get; set; } /// /// 快递单号 /// public string? CourierNumber { get; set; } /// /// 快递名称 /// public string? CourierName { get; set; } /// /// 快递code /// public string? CourierCode { get; set; } /// /// 物流轨迹信息 /// public string? DeliveryList { get; set; } /// /// 物流状态 /// public bool? DeliveryStatus { get; set; } /// /// 物流请求时间 /// public uint DeliveryTime { get; set; } /// /// 下单时间 /// public uint Addtime { get; set; } /// /// 支付时间 /// public uint PayTime { get; set; } /// /// 发货时间 /// public uint SendTime { get; set; } /// /// 收货时间 /// public uint ShouTime { get; set; } /// /// 取消时间 /// public uint CancelTime { get; set; } /// /// 管理员id /// public uint AdminId { get; set; } }