namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class ExpressEbayEUB_Order { [Key] public int EbayEUBOrder_Id { get; set; } public int? StoreInfo_Id { get; set; } [StringLength(250)] public string StoreName { get; set; } public long Order_Id { get; set; } [Required] [StringLength(50)] public string OrderCode { get; set; } [Required] [StringLength(50)] public string StoreOrderCode { get; set; } public byte? InterfaceStatusID { get; set; } [StringLength(50)] public string InterfaceStatusText { get; set; } public DateTime? PushDate { get; set; } [StringLength(50)] public string TrackCode { get; set; } public int? EMSPickUpType { get; set; } [StringLength(50)] public string ShipToAddressContact { get; set; } [StringLength(128)] public string ShipToAddressCompany { get; set; } [StringLength(200)] public string ShipToAddressStreet { get; set; } [StringLength(50)] public string ShipToAddressCity { get; set; } [StringLength(50)] public string ShipToAddressProvince { get; set; } [StringLength(50)] public string ShipToAddressCountry { get; set; } [StringLength(2)] public string ShipToAddressCountryCode { get; set; } [StringLength(32)] public string ShipToAddressPostcode { get; set; } [StringLength(32)] public string ShipToAddressPhone { get; set; } [StringLength(128)] public string ShipToAddressEmail { get; set; } [StringLength(50)] public string ShipFromAddressContact { get; set; } [StringLength(128)] public string ShipFromAddressCompany { get; set; } [StringLength(200)] public string ShipFromAddressStreet { get; set; } [StringLength(50)] public string ShipFromAddressDistrict { get; set; } [StringLength(50)] public string ShipFromAddressCity { get; set; } [StringLength(50)] public string ShipFromAddressProvince { get; set; } [StringLength(50)] public string ShipFromAddressPostcode { get; set; } [StringLength(64)] public string ShipFromAddressCountry { get; set; } [StringLength(128)] public string ShipFromAddressEmail { get; set; } [StringLength(32)] public string ShipFromAddressMobile { get; set; } [StringLength(50)] public string PickUpAddressContact { get; set; } [StringLength(128)] public string PickUpAddressCompany { get; set; } [StringLength(200)] public string PickUpAddressStreet { get; set; } [StringLength(50)] public string PickUpAddressDistrict { get; set; } [StringLength(50)] public string PickUpAddressCity { get; set; } [StringLength(50)] public string PickUpAddressProvince { get; set; } [StringLength(50)] public string PickUpAddressPostcode { get; set; } [StringLength(64)] public string PickUpAddressCountry { get; set; } [StringLength(128)] public string PickUpAddressEmail { get; set; } [StringLength(32)] public string PickUpAddressMobile { get; set; } [StringLength(32)] public string PickUpAddressPhone { get; set; } [StringLength(50)] public string ReturnAddressContact { get; set; } [StringLength(128)] public string ReturnAddressCompany { get; set; } [StringLength(200)] public string ReturnAddressStreet { get; set; } [StringLength(50)] public string ReturnAddressDistrict { get; set; } [StringLength(50)] public string ReturnAddressCity { get; set; } [StringLength(50)] public string ReturnAddressProvince { get; set; } [StringLength(50)] public string ReturnAddressPostcode { get; set; } [StringLength(64)] public string ReturnAddressCountry { get; set; } public string Remark { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public int? PlatUser_Id { get; set; } [StringLength(50)] public string PlatUserCode { get; set; } [StringLength(50)] public string PlatUserName { get; set; } [StringLength(50)] public string PlatCorpName { get; set; } public int? UserProduct_Id { get; set; } [StringLength(50)] public string UserProductCode { get; set; } [StringLength(100)] public string UserProductAlias { get; set; } public string ExpandFields { get; set; } } }