using FreeSql.DataAnnotations;
namespace BBWYB.Server.Model.Db
{
///
/// 订单收货信息表
///
[Table(Name = "orderconsignee", DisableSyncStructure = true)]
public partial class OrderConsignee {
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
public string OrderId { get; set; }
///
/// 收货地址
///
public string Address { get; set; }
///
/// 市
///
[Column(StringLength = 30)]
public string City { get; set; }
///
/// 联系人
///
[Column(StringLength = 50)]
public string ContactName { get; set; }
///
/// 区
///
[Column(StringLength = 30)]
public string County { get; set; }
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
///
/// 是否解码
///
public bool? IsDecode { get; set; }
///
/// 手机号
///
[Column(StringLength = 50)]
public string Mobile { get; set; }
///
/// 省
///
[Column(StringLength = 30)]
public string Province { get; set; }
///
/// 做记号
///
[Column(StringLength = 50)]
public string TelePhone { get; set; }
///
/// 镇
///
[Column(StringLength = 30)]
public string Town { get; set; }
}
}