using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 发货订单地址物流信息
///
public partial class KkOrderSend
{
public uint Id { get; set; }
///
/// 会员id
///
public uint UserId { get; set; }
///
/// 订单ID
///
public uint OrderId { get; set; }
///
/// 收货人姓名
///
public string? ShouName { get; set; }
///
/// 收货人手机号
///
public string? ShouMobile { get; set; }
///
/// 所在地区 省/市/区(名称)
///
public string? ShouRegion { get; set; }
///
/// 详细地址
///
public string? Address { get; set; }
///
/// 物流名称
///
public string? DeliveryName { get; set; }
///
/// 物流单号
///
public string? DeliveryNo { get; set; }
public int? UpdateTime { get; set; }
}