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 ExpressStandardEUB_Order { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public ExpressStandardEUB_Order() { ExpressStandardEUB_OrderList = new HashSet(); } [Key] public int StandardEUBOrder_Id { get; set; } public long Order_Id { get; set; } [Required] [StringLength(50)] public string OrderCode { get; set; } [StringLength(50)] public string StoreOrderCode { get; set; } public int ExpressCorp_Id { get; set; } [Required] [StringLength(50)] public string ExpressCorpName { get; set; } [StringLength(50)] public string TrackingNumber { get; set; } public byte? InterfaceStatusID { get; set; } [StringLength(50)] public string InterfaceStatusText { get; set; } public byte? operationtype { get; set; } public byte? producttype { get; set; } [StringLength(50)] public string customercode { get; set; } [StringLength(50)] public string vipcode { get; set; } public int? clcttype { get; set; } [StringLength(50)] public string pod { get; set; } [StringLength(50)] public string untread { get; set; } [StringLength(50)] public string volweight { get; set; } public DateTime? startdate { get; set; } public DateTime? enddate { get; set; } public byte? printcode { get; set; } [StringLength(80)] public string rname { get; set; } [StringLength(50)] public string rpostcode { get; set; } [StringLength(50)] public string rphone { get; set; } [StringLength(50)] public string rmobile { get; set; } [StringLength(50)] public string rcountry { get; set; } [StringLength(50)] public string rprovince { get; set; } [StringLength(50)] public string rcity { get; set; } [StringLength(50)] public string rcounty { get; set; } public string rstreet { get; set; } [StringLength(50)] public string remail { get; set; } [StringLength(50)] public string sname { get; set; } [StringLength(50)] public string spostcode { get; set; } [StringLength(50)] public string sphone { get; set; } [StringLength(50)] public string smobile { get; set; } [StringLength(50)] public string scountry { get; set; } [StringLength(50)] public string sprovince { get; set; } [StringLength(50)] public string scity { get; set; } [StringLength(50)] public string scounty { get; set; } public string sstreet { get; set; } [StringLength(50)] public string semail { get; set; } [StringLength(50)] public string cname { get; set; } [StringLength(50)] public string cpostcode { get; set; } [StringLength(50)] public string cphone { get; set; } [StringLength(50)] public string cmobile { get; set; } [StringLength(50)] public string ccountry { get; set; } [StringLength(50)] public string cprovince { get; set; } [StringLength(50)] public string ccity { get; set; } [StringLength(50)] public string ccounty { get; set; } public string cstreet { get; set; } [StringLength(50)] public string cemail { 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; } [Column(TypeName = "money")] public decimal? DeclareValue { get; set; } public int? TotalCount { 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; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection ExpressStandardEUB_OrderList { get; set; } } }