using FreeSql.DataAnnotations;
using System;

namespace BBWY.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; }

		[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; }

		/// <summary>
		/// ÊÇ·ñ½âÂë
		/// </summary>
		public bool? IsDecode { get; set; }
	}

}