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 ExpressBpost_OrderList { [Key] public int BpostOrderList_Id { get; set; } public int BpostOrder_Id { get; set; } public int OrderList_Id { get; set; } [StringLength(50)] public string SKU { get; set; } public string ChineseContentDescription { get; set; } [Required] [StringLength(50)] public string ItemContent { get; set; } public int ItemCount { get; set; } public decimal Value { get; set; } [Required] [StringLength(10)] public string Currency { get; set; } public int? Weight { get; set; } [StringLength(50)] public string SkuInInvoice { 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 string ExpandFields { get; set; } public virtual ExpressBpost_Order ExpressBpost_Order { get; set; } } }